/* ==========================================================================
   DECLARAÇÃO DE FONTES LOCAIS (DINPro)
   ========================================================================== */
@font-face {
    font-family: 'DINPro';
    src: url('../fonts/DINPro-Regular_13937.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'DINPro';
    src: url('../fonts/DINPro-Medium_13936.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'DINPro';
    src: url('../fonts/DINPro-Bold_13934.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'DINPro';
    src: url('../fonts/DINPro-Black_13933.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'DINPro';
    src: url('../fonts/DINPro-Light_13935.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLES
   ========================================================================== */
:root {
    /* Cores Principais */
    --primary-color: #3b30b4;       /* Roxo/Azul Violeta Institucional */
    --primary-light: #eef2ff;
    --primary-hover: #29208c;
    --secondary-color: #00c08b;     /* Verde Menta/Turquesa Ativo */
    --secondary-light: #e6fcf5;
    --secondary-hover: #00a073;
    
    /* Tons Neutros */
    --dark-color: #1a1b2f;          /* Fundo Escuro/Rodapé */
    --light-bg: #f8f9fc;            /* Fundo Claro Secundário */
    --white: #ffffff;
    --text-dark: #2d3142;           /* Texto Principal */
    --text-muted: #64748b;          /* Texto Secundário */
    --border-color: #e2e8f0;
    
    /* Sombras & Efeitos */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 15px -3px rgba(59, 48, 180, 0.06), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(59, 48, 180, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Fontes */
    --font-headings: 'DINPro', 'Outfit', sans-serif;
    --font-body: 'DINPro', 'Inter', sans-serif;
    
    /* Limites de Layout */
    --max-width: 1200px;
    --header-height: 80px;
}

/* ==========================================================================
   RESET & ESTILOS BASE
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Títulos */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 48, 180, 0.2);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 192, 139, 0.2);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Wrapper da Página */
.page-wrapper {
    min-height: calc(100vh - var(--header-height) - 400px);
    padding-top: var(--header-height); /* Evitar sobreposição com o menu fixo */
}

/* ==========================================================================
   CABEÇALHO & MENU DE NAVEGAÇÃO
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: block;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition-smooth);
}

.logo-img:hover {
    transform: scale(1.03);
}

/* Navegação */
.nav-menu {
    height: 100%;
}

.nav-list {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 5px;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 4px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-color);
}

/* Barra Ativa no Topo (Identidade Visual da Imagem de Referência) */
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 4px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    border-radius: 0 0 4px 4px;
}

.nav-link.active::before {
    transform: scaleX(1);
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: var(--transition-smooth);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: var(--header-height);
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 250px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition-smooth);
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-left-color: var(--secondary-color);
}

/* Ativação do Dropdown via Hover (Desktop) */
@media (min-width: 992px) {
    .nav-item.has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }
    
    .nav-item.has-dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* ==========================================================================
   MENU MOBILE (SANDUÍCHE)
   ========================================================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   PÁGINAS - ESTRUTURA GERAL DE CONTEÚDO (DESIGN PREMIUM)
   ========================================================================== */

/* Seção Hero Geral */
.hero-section {
    background: linear-gradient(135deg, #2d268d 0%, #3b30b4 40%, #00c08b 100%);
    color: var(--white);
    padding: 120px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--white);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-section p {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease-out;
}

/* Seções de Texto Comuns */
.section-padding {
    padding: 80px 20px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Homepage Específicos */
.hero-home {
    height: calc(100vh - var(--header-height));
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--white);
    background-color: var(--white);
    padding: 0 8%;
    overflow: hidden;
}

.hero-home-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

.hero-home-content {
    position: relative;
    z-index: 3;
    max-width: 580px;
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    color: var(--white);
}

.hero-title .highlight {
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 500px;
    margin: 0 0 35px 0;
    opacity: 0.9;
    color: var(--white);
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

/* Pilares Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Grid de Soluções e Cards */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.solution-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.solution-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.solution-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Clientes & Logos */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.client-logo-wrapper {
    width: 100%;
    max-width: 140px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.client-logo-wrapper:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.client-logo {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
}

/* ==========================================================================
   RODAPÉ DO SITE
   ========================================================================== */
.main-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 70px 20px 0;
    border-top: 5px solid var(--primary-color);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-top: 8px;
}

.footer-logo {
    height: 55px;
    width: auto;
    margin-bottom: 20px;
    background-color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
}

.footer-tagline {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

.footer-contacts .contact-item {
    margin-bottom: 20px;
}

.footer-contacts strong {
    display: block;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-contacts p {
    font-size: 0.88rem;
    color: #94a3b8;
}

.footer-contacts a:hover {
    color: var(--secondary-color);
}

.dgert-logo {
    max-width: 140px;
    height: auto;
    background-color: var(--white);
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.cert-text {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Barra Inferior */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-bottom-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.by-antigravity i {
    color: #ef4444;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVIDADE COMPLETA)
   ========================================================================== */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 300px;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.05);
        padding: 40px 20px;
        transition: var(--transition-smooth);
        overflow-y: auto;
        border-left: 1px solid var(--border-color);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 15px;
    }
    
    .nav-item {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-link {
        width: 100%;
        padding: 12px 15px;
        font-size: 1.05rem;
        border-radius: 6px;
    }
    
    .nav-link::before {
        display: none; /* Oculta sublinhado superior no mobile */
    }
    
    /* Mostrar Dropdown no Mobile via classe open */
    .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--primary-light);
        padding: 5px 0 5px 15px;
        margin-top: 5px;
        display: none; /* Controlado via JS */
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .nav-item.open-dropdown .dropdown-menu {
        display: block;
    }
    
    .nav-item.open-dropdown .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    :root {
        --header-height: 70px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section p {
        font-size: 1.05rem;
    }
    
    .section-padding {
        padding: 50px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ==========================================================================
   ANIMAÇÕES
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}\n\n

/* ==========================================================================
   ESTILOS ADICIONAIS GERADOS PARA LAYOUTS DE CONTEÚDO
   ========================================================================== */

/* Homepage Específicos */
.hero-home {
    height: 540px;
    position: relative;
    color: var(--white);
    background-color: var(--white);
    overflow: hidden;
}

.hero-home-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 1920px 100%; /* Largura fixa de 1920px para alinhar o JPG sem distorções widescreen */
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

.hero-home-content {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    max-width: 480px;
    text-align: center;
    margin-left: -355px; /* Alinhamento horizontal exato sobre a mancha do JPG */
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin: 0;
}

.hero-title .title-main {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1px;
}

.hero-title .title-sub {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.9;
    margin: 8px 0;
}

/* Seção 2: Carrossel Verde-Menta */
.carrossel-verde-section {
    background-color: #00c08b;
    padding: 0;
    color: #103d2b;
    position: relative;
    overflow: hidden;
}

.carrossel-container {
    max-width: 100%;
    margin: 0;
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.carrossel-slide {
    display: none;
    width: 100%;
    height: 480px;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carrossel-slide.active {
    display: flex;
    opacity: 1;
}

.carrossel-content-left {
    flex: 1.2;
    text-align: left;
    z-index: 2;
}

.carrossel-tag {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Cores específicas de texto por slide para garantir legibilidade */
.carrossel-slide:nth-child(1) .carrossel-tag,
.carrossel-slide:nth-child(1) .carrossel-text {
    color: #103d2b;
}
.carrossel-slide:nth-child(1) .carrossel-line {
    background-color: #103d2b;
}

.carrossel-slide:nth-child(2) .carrossel-tag,
.carrossel-slide:nth-child(2) .carrossel-text {
    color: #ffffff;
}
.carrossel-slide:nth-child(2) .carrossel-line {
    background-color: #ffffff;
}

.carrossel-slide:nth-child(3) .carrossel-tag,
.carrossel-slide:nth-child(3) .carrossel-text {
    color: #1e1b4b;
}
.carrossel-slide:nth-child(3) .carrossel-line {
    background-color: #1e1b4b;
}

.carrossel-line {
    display: block;
    width: 45px;
    height: 3px;
    margin: 12px 0 25px 0;
}

.carrossel-text {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
}

.carrossel-content-right {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.carrossel-img-circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--white);
    border: 8px solid rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-md);
}

.carrossel-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Setas do Carrossel */
.carrossel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #103d2b;
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-smooth);
}

.carrossel-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.05);
}

.carrossel-arrow.prev {
    left: 20px;
}

.carrossel-arrow.next {
    right: 20px;
}

/* Indicadores / Dots */
.carrossel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carrossel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #103d2b;
    background-color: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carrossel-dots .dot.active {
    background-color: #103d2b;
}

/* Seção 3: Por Isso / Queremos Split Grid */
.homepage-split-section {
    background-color: var(--white);
    padding: 100px 10%;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.split-column {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.split-column.right-column {
    margin-top: 50px;
}

.split-tag {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.left-column .split-tag {
    color: #00c08b;
}

.right-column .split-tag {
    color: #2d268d;
}

.split-text {
    font-size: 1.8rem;
    line-height: 1.35;
    color: #2a3142;
    font-weight: 500;
}

.split-text strong {
    font-weight: 700;
}

.left-column .split-text strong {
    color: #2d268d;
}

.right-column .split-text strong {
    color: #00c08b;
}

/* Seção 4: Criamos experiências para... (Fundo Roxo com Círculos) */
.experiences-section {
    background-color: #6B83FF;
    padding: 100px 10%;
    color: var(--white);
}

.experiences-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00c08b;
    margin-bottom: 70px;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.experience-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.experience-img-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.experience-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-item:hover .experience-img-circle {
    transform: scale(1.05);
}

.experience-item h3 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--white);
    max-width: 240px;
    margin: 0 auto;
}

/* Seção 5: Para tirar coelhos da cartola... (Contactos) */
.contacts-section {
    background-color: var(--white);
    padding: 100px 10%;
}

.contacts-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00c08b;
    margin-bottom: 60px;
    text-align: center;
}

.contacts-grid-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-box-home {
    background-color: #f8fafc;
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.contact-box-home:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-box-home h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1e1b4b;
}

.contact-box-home p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-box-home a {
    color: #4b5563;
    transition: var(--transition-smooth);
}

.contact-box-home a:hover {
    color: var(--primary-color);
}

.contact-box-home i {
    font-size: 1.1rem;
}

.contact-box-home .icon-blue {
    color: #3b30b4;
}

.contact-box-home .icon-green {
    color: #00c08b;
}

.certifications-box-home {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.certifications-box-home h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 25px;
}

.dgert-logo-wrapper {
    margin: 25px auto;
    display: flex;
    justify-content: center;
}

.dgert-logo-home {
    max-width: 240px;
    height: auto;
}

.jump-mail {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 30px;
}

.jump-mail a {
    color: #4b5563;
}

.jump-mail a:hover {
    color: #00c08b;
}

/* Redes Sociais no Topo Direito (Estilo) */
.header-socials-top {
    display: flex;
    gap: 10px;
    margin-left: 20px;
    align-items: center;
}

.header-socials-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.header-socials-top a:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ==========================================================================
   ESTILOS DE OUTRAS PÁGINAS DO WEBSITE (SERVIÇOS, EQUIPA, CLIENTES, ETC.)
   ========================================================================== */

/* Layout de Serviços */
.service-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.content-block h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--secondary-color);
}

.text-block p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.method-box {
    background-color: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    padding: 30px;
    border-radius: 0 8px 8px 0;
    margin: 30px 0;
}

.method-box p {
    font-style: italic;
    color: #475569;
    margin-bottom: 0;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.sidebar-card h3 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.sidebar-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.card-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card {
    border-top: 4px solid var(--secondary-color);
}

.info-card .card-icon {
    color: var(--secondary-color);
}

.warning-card {
    border-top: 4px solid #f59e0b;
}

.warning-card .card-icon {
    color: #f59e0b;
}

.cta-sidebar {
    background-color: var(--primary-light);
    border: 1px solid rgba(59, 48, 180, 0.15);
}

.cta-sidebar h3 {
    color: var(--primary-color);
}

.btn-full {
    width: 100%;
}

/* Equipa (Layout Horizontal Premium e Alinhado) */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin-top: 40px;
}

.team-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 40px;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.team-img-wrapper {
    flex-shrink: 0;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-info {
    flex-grow: 1;
    text-align: left;
}

.team-info h3 {
    font-size: 1.65rem;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-weight: 700;
}

.team-role {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
}

.team-info p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.65;
}

/* Clientes (Grelha Formatada) */
.clients-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 45px;
}

.client-logo-card {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.client-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.client-logo-img {
    max-width: 100%;
    max-height: 75px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

/* Manifesto Grid Layout */
.manifesto-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 50px;
    border: 1px solid var(--border-color);
    margin-top: 20px;
}

@media (max-width: 768px) {
    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
}

.manifesto-left {
    text-align: left;
}

.manifesto-text p {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

.manifesto-slogan {
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 30px;
    font-family: var(--font-headings);
    color: var(--primary-color);
}

/* Lovers Layout */
.lovers-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.lover-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-smooth);
}

.lover-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.lover-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Blog & Freebies */
.blog-grid, .freebies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.blog-post-card, .freebie-card {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover, .freebie-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-post-img-wrapper, .freebie-img-wrapper {
    height: 220px;
    overflow: hidden;
    background-color: var(--light-bg);
}

.blog-post-img, .freebie-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-post-card:hover .blog-post-img, .freebie-card:hover .freebie-img {
    transform: scale(1.04);
}

.blog-post-info, .freebie-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.blog-post-info h3, .freebie-info h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.blog-post-info p, .freebie-info p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.5;
}

.read-more-link {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.read-more-link:hover {
    color: var(--secondary-color);
    gap: 10px;
}

/* Privacidade */
.privacy-content-box {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 50px 40px;
    box-shadow: var(--shadow-sm);
    max-width: 850px;
    margin: 0 auto;
}

/* Responsividade Geral */
@media (max-width: 991px) {
    .header-socials-top {
        display: none;
    }
    .hero-home {
        justify-content: center;
        padding: 0 20px;
        text-align: center;
        height: 480px;
    }
    .hero-home-content {
        margin: 0 auto;
        max-width: 360px;
        padding: 40px 30px;
    }
    .hero-title .title-main {
        font-size: 2.5rem;
    }
    .hero-title .title-sub {
        font-size: 1.1rem;
        margin: 4px 0;
    }
    .carrossel-slide {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        height: auto;
        padding: 40px 20px;
    }
    .carrossel-content-left {
        text-align: center;
    }
    .carrossel-line {
        margin: 12px auto 25px auto;
    }
    .carrossel-arrow {
        display: none;
    }
    .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .split-column.right-column {
        margin-top: 0;
    }
    .experiences-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }
    .contacts-grid-home {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .service-layout {
        grid-template-columns: 1fr;
    }
    .lovers-layout {
        grid-template-columns: 1fr;
    }
    .team-card {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 25px;
    }
    .team-info {
        text-align: center;
    }
    .team-img-wrapper {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 767px) {
    .hero-home {
        height: auto;
        padding: 50px 15px;
    }
    .hero-home-content {
        max-width: 320px;
        padding: 30px 20px;
        margin: 0 auto;
    }
    .hero-title .title-main {
        font-size: 2.1rem;
    }
    .hero-title .title-sub {
        font-size: 1rem;
        margin: 4px 0;
    }
    .carrossel-text {
        font-size: 2rem;
    }
    .carrossel-img-circle {
        width: 220px;
        height: 220px;
    }
    .split-text {
        font-size: 1.4rem;
    }
    .experiences-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .experiences-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    .contacts-title {
        font-size: 1.8rem;
    }
    .clients-grid-container {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 20px;
    }
}