/* Variáveis Globais */
:root {
    --primary-blue: #3d85c6;
    --text-dark: #4a4a4a;
    --bg-white: #ffffff;
    
    --bg-color: var(--bg-white);
    --text-main: var(--text-dark);
    --text-secondary: #333333;
    --brand-color: var(--primary-blue);
    --font-family: 'Outfit', sans-serif;
    --header-height: 80px;
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Animação de Carregamento Sequencial */
.hidden-load {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

.visible-load {
    opacity: 1;
    pointer-events: auto;
}

/* Animação Inicial Imediata para o Header */
.header-load {
    animation: fadeInHeader 0.5s ease-out forwards;
}

@keyframes fadeInHeader {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Cursor Piscando (Typewriter) */
.blinking-cursor {
    display: inline-block;
    font-weight: 300;
    color: var(--brand-color);
    animation: blink 1s step-end infinite;
    transition: opacity 0.3s ease;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

body {
    background-color: var(--bg-color);
    font-family: var(--font-family);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reset letter-spacing para evitar heranças indevidas em fontes de pesos leves */
p, span, label, input, select, textarea {
    letter-spacing: normal;
}


.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh; /* Garante no mínimo 100vh na viewport */
    padding-top: var(--header-height); /* Evita sobreposição com o header fixed */
    position: relative;
    z-index: 10;
}

#data-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    opacity: 1; /* Transparência é controlada individualmente via RGBA no JS */
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: #ffffff;
    z-index: 100;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-main);
    cursor: pointer;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 28px;
    height: 28px;
    background-color: var(--brand-color);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-icon::after {
    content: '';
    width: 12px;
    height: 12px;
    background-color: var(--bg-color);
    border-radius: 50%;
    position: absolute;
    transform: translateX(-3px);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--brand-color);
}

/* =========================================
   Mega Menu (Dropdown Estilo Google)
   ========================================= */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 24px; /* Aumenta a área de contato para o hover não falhar */
    margin-bottom: -24px;
}

.dropdown-trigger .chevron {
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-trigger .chevron {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 800px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 32px;
}

.mega-menu.simple-dropdown {
    width: 360px; /* Alargado para acomodar os textos descritivos */
    padding: 16px;
}

.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: flex;
    gap: 40px;
}

/* Coluna Esquerda */
.mega-left {
    flex: 1;
    border-right: 1px solid #f1f5f9;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.mega-title {
    font-family: var(--font-family);
    font-size: 1.4rem;
    font-weight: 600;
    color: #12132f;
    margin-bottom: 12px;
    line-height: 1.3;
}

.mega-desc {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.5;
}

.mega-btn {
    border-color: #e2e8f0;
    color: #12132f;
    padding: 10px 20px;
    font-size: 0.85rem;
    background: transparent;
}
.mega-btn:hover {
    background-color: #F5FAFD;
    border-color: var(--brand-color);
}

/* Coluna Direita */
.mega-right {
    flex: 1.5;
}

.mega-category {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 16px;
}

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-list li a {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    text-decoration: none;
    color: #334155;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mega-list li a svg {
    color: var(--brand-color);
    opacity: 0.8;
    margin-top: 2px;
    flex-shrink: 0;
}

.mega-list li a:hover {
    background-color: #F5FAFD;
    color: var(--brand-color);
    transform: translateX(4px);
}

.mega-list-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-list-title {
    font-weight: 600;
    color: #12132f;
    font-size: 1.05rem;
}

.mega-list-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
}

/* Trusted By Track (Trilha do Carrossel) */
.trusted-track {
    display: flex;
    align-items: center; /* Alinhamento vertical centralizado perfeito interno */
    height: 100%;
    width: max-content; /* IMPORTANTE para animação infinita do flexbox */
    gap: 5rem; /* Espaçamento confortável entre marcas (80px) */
    animation: scroll-x 60s linear infinite;
    padding-right: 5rem; /* Deve igualar o gap para o loop sem pulos */
}

@keyframes scroll-x {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.trusted-track img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.trusted-track img:hover {
    opacity: 0.8;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.nav-btn {
    text-decoration: none;
    color: var(--text-main);
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px; /* Formato pílula */
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    width: 100%;
}

.typewriter-container {
    min-height: 180px; /* Ajuste rigoroso para 2 linhas fixas evitando padding invisível exagerado */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: opacity 0.5s ease;
}

.headline {
    font-size: clamp(2.3rem, 4.8vw, 4.5rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-main);
    margin: 0 auto;
    max-width: 950px; /* Força quebra centralizada perfeitamente balanceada */
    letter-spacing: -0.03em;
}

.highlight-brand {
    color: var(--brand-color);
    font-weight: 600;
}

.headline .interactive-word {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transform-origin: center;
}

.headline .interactive-word:hover {
    transform: scale(1.35);
}

.mobile-menu-overlay {
    display: none;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 400;
    color: #2b2b2b;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* Buttons (CTAs) */
.cta-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    text-decoration: none;
    padding: 0.875rem 2rem;
    border-radius: 9999px; /* Formato pílula */
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--brand-color);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(61, 133, 198, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 133, 198, 0.35);
    background-color: #3371a8;
}

.btn-outline {
    background-color: transparent;
    color: var(--brand-color);
    border: 1px solid var(--brand-color);
}

.btn-outline:hover {
    background-color: rgba(61, 133, 198, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(61, 133, 198, 0.1);
}


/* Carrossel de Clientes (Base da Dobra) */
.logo-carousel-section {
    height: 90px;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    position: relative;
    z-index: 99;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.logo-carousel-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Sombras laterais para mesclar o carrossel suavemente (Premium Touch) */
.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.logo-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #FFFFFF 0%, rgba(255,255,255,0) 100%);
}
.logo-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #FFFFFF 0%, rgba(255,255,255,0) 100%);
}

/* =========================================
   Dobra 02: Scroll Animation 
   ========================================= */
.dobra-02-section {
    width: 100%;
    background-color: var(--bg-white);
    position: relative;
    z-index: 10;
}

.expand-container {
    width: 100%;
    height: auto;
    min-height: 80vh;
    border-radius: 0;
    background: linear-gradient(135deg, #12142D 0%, #3B99CD 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
}

/* Fundo de transição (Solid para Gradiente) */
.expand-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #12142D 0%, #3B99CD 100%);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

/* Logo Estática */
.anim-logo {
    position: relative;
    width: 240px;
    max-width: 60%;
    opacity: 1;
    z-index: 3;
    pointer-events: none;
    margin-bottom: 48px;
}

/* Padrão de Branding Discreto */
.brand-bg-wrapper {
    position: absolute;
    bottom: -2%;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    gap: 0; 
    pointer-events: none;
    z-index: 2;
    opacity: 0.05;
}

.brand-bg-marquee {
    display: flex;
    width: max-content;
    white-space: nowrap;
}

/* Primeira linha move para a direita (descobrimento) */
.brand-bg-marquee:nth-child(1) {
    animation: marquee-scroll-right 180s linear infinite;
}

/* Segunda linha move para a esquerda */
.brand-bg-marquee:nth-child(2) {
    animation: marquee-scroll-left 180s linear infinite;
}

.brand-bg-marquee span {
    font-size: clamp(8rem, 15vw, 16rem);
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    padding-right: 2rem;
    letter-spacing: 0.02em;
    line-height: 0.9;
}

@keyframes marquee-scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.expand-content {
    text-align: center;
    opacity: 1;
    color: #ffffff;
    max-width: 1000px; /* Expandido para respirar melhor */
    z-index: 4;
    position: relative;
    width: 100%;
}

.expand-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 3.6rem;
    margin-bottom: 2rem;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.expand-text {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* =========================================
   Dobra 03: Split Feature List
   ========================================= */
.dobra-03-section {
    background-color: #F5FAFD; /* Azulado clarinho (Extra Light) */
    padding: 120px 5%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.split-layout-container {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.split-left-col {
    width: 40%;
    position: sticky;
    top: 140px;
    align-self: flex-start; /* Essencial para o sticky funcionar corretamente num flex container */
}

.split-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 2.8rem;
    color: #12132f;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.split-subtitle {
    font-family: var(--font-family);
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 400;
    line-height: 1.6;
}

.split-right-col {
    width: 60%;
    display: flex;
    flex-direction: column;
}

.feature-item {
    display: flex;
    gap: 24px; /* Espaço entre o número e o texto */
    margin-bottom: 40px;
}

.feature-item:last-child {
    margin-bottom: 0; /* Remove a margem do último item */
}

.feature-number {
    font-family: var(--font-family);
    color: #3d85c6;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.4; /* Alinhamento com o topo do H3 */
    padding-top: 2px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1.4rem;
    color: #12132f;
    margin-bottom: 8px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.feature-desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}


/* =========================================
   Dobra 04: Colunas Tipográficas (Benefícios)
   ========================================= */
/* Dobra 04a: Perdas Operacionais (O Problema - Split Layout) */
.dobra-d4-losses {
    background-color: transparent !important;
    padding: 120px 5% 80px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

/* Layout da Dobra de Perdas Operacionais (2 Colunas Simétricas) */
.d4-losses-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}

.losses-grid-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.loss-grid-card {
    display: flex;
    gap: 24px;
    background-color: rgba(255, 255, 255, 0.85); /* Fundo translúcido premium */
    border: 1px solid rgba(61, 133, 198, 0.08); /* Borda azul sutil de marca */
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.015), inset 0 2px 4px rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.loss-grid-card:hover {
    background-color: #ffffff; /* Fundo branco opaco no hover para excelente contraste e isolar canvas */
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(61, 133, 198, 0.06), inset 0 2px 4px rgba(255, 255, 255, 0.9);
    border-color: rgba(61, 133, 198, 0.2);
}

.loss-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-color);
    background-color: rgba(61, 133, 198, 0.08);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.loss-grid-card:hover .loss-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.loss-card-content {
    flex: 1;
}

.loss-card-title {
    font-family: var(--font-family);
    font-size: 1.3rem;
    font-weight: 600;
    color: #12132f;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.loss-grid-card:hover .loss-card-title {
    color: #3d85c6;
}

.loss-card-desc {
    font-family: var(--font-family);
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Dobra 04b: Ganhos com Lupa (A Solução) */
.dobra-d4-gains {
    background-color: transparent !important;
    padding: 80px 5% 120px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.container-d4 {
    max-width: 1200px;
    width: 100%;
}

.d4-col-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 1.25;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    text-align: center;
}

.d4-col-subtitle {
    font-family: var(--font-family);
    font-size: 1.25rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.6;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 56px;
}

.d4-loss-title,
.d4-gain-title {
    color: #12132f !important;
}

.text-highlight-blue {
    color: var(--primary-blue, #3d85c6) !important;
}

/* Benefit Bento Grid (Solutions) */
.d4-benefit-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 48px;
    row-gap: 64px;
}

.d4-benefit-card {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 36px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.85); /* Fundo branco translúcido premium */
    border: 1px solid rgba(61, 133, 198, 0.06); /* Borda sutil de marca */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03), inset 0 2px 4px rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
    z-index: 1;
}

.d4-benefit-card:hover {
    background: #ffffff; /* Opaco no hover para excelente legibilidade e contraste */
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(61, 133, 198, 0.08), inset 0 2px 4px rgba(255, 255, 255, 0.9);
    border-color: rgba(61, 133, 198, 0.25);
}

.d4-benefit-card.b4-center {
    grid-column: 2 / span 2;
}

.d4-benefit-card.b5-center {
    grid-column: 4 / span 2;
}

.d4-benefit-card .benefit-icon {
    color: var(--brand-color);
    background-color: rgba(59, 153, 205, 0.08);
    padding: 12px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.d4-benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(-5deg);
}

.d4-benefit-card .benefit-icon svg {
    width: 24px;
    height: 24px;
}

.d4-benefit-card .benefit-content {
    position: relative;
    z-index: 1;
}

.d4-benefit-card .benefit-title {
    font-family: var(--font-family);
    font-size: 1.3rem;
    font-weight: 600;
    color: #12132f;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.d4-benefit-card:hover .benefit-title {
    color: #3d85c6;
}

.d4-benefit-card .benefit-desc {
    font-family: var(--font-family);
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    font-weight: 400;
}

/* Responsividade Geral */
@media (max-width: 992px) {
    .d4-losses-grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .d4-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 30px;
        row-gap: 40px;
    }
    
    .d4-benefit-card {
        grid-column: span 1;
    }
    
    .d4-benefit-card.b4-center, .d4-benefit-card.b5-center {
        grid-column: span 1;
    }
    

}

@media (max-width: 768px) {
    .dobra-d4-losses {
        padding: 80px 24px 40px;
    }
    
    .dobra-d4-gains {
        padding: 40px 24px 80px;
    }
    
    .loss-grid-card {
        padding: 24px;
        gap: 16px;
    }
    
    .loss-card-title {
        font-size: 1.15rem;
    }
    
    .loss-card-desc {
        font-size: 0.95rem;
    }
    
    .d4-benefit-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .d4-benefit-card {
        padding: 24px;
    }
    
}

/* =========================================
   Dobra 05: Integrações (Logos Marquee)
   ========================================= */
.dobra-05-section {
    background-color: #F5FAFD; /* Alternância de cor para separar da Dobra 04 */
    padding: 100px 0; /* padding lateral zero para o marquee vazar a tela */
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.container-d5 {
    width: 100%;
}

.section-title-d5 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 2.4rem;
    color: #12132f;
    margin-bottom: 16px;
    text-align: center;
    padding: 0 5%;
    letter-spacing: -0.03em;
}

.section-subtitle-d5 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1.1rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 64px;
    padding: 0 5%;
}

.d5-tabs-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
    padding: 0 5%;
}

.d5-tabs {
    display: flex;
    gap: 16px;
    background-color: #ffffff;
    padding: 8px;
    border-radius: 100px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.03);
    flex-wrap: wrap;
    justify-content: center;
}

.d5-tab {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1rem;
    color: #64748b;
    background: transparent;
    border: none;
    padding: 12px 24px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.d5-tab:hover {
    color: #12132f;
    background-color: #f1f5f9;
}

.d5-tab.active {
    background-color: #3d85c6;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(61, 133, 198, 0.2);
}

.d5-panels {
    position: relative;
    width: 100%;
    min-height: 120px;
}

.d5-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.d5-panel.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

/* =========================================
   Dobra 06: Formulário de Captação
   ========================================= */
.dobra-06-section {
    background-color: #ffffff;
    padding: 120px 0;
    font-family: var(--font-family);
}

.container-d6 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    gap: 80px;
    align-items: center;
}

.d6-left {
    flex: 1;
    max-width: 500px;
}

.d6-title {
    font-weight: 600;
    font-size: 2.8rem;
    color: #12132f;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.d6-subtitle {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 40px;
}

.d6-trust-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #1e293b;
    font-size: 1.05rem;
}

.trust-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.d6-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.d6-form-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 600px;
}

.d6-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

.d6-form label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
}

.d6-form input,
.d6-form select {
    width: 100%;
    height: 48px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0 16px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    color: #1e293b;
    background-color: #F5FAFD;
    transition: all 0.2s ease;
    outline: none;
}

.d6-form input::placeholder {
    color: #94a3b8;
}

.d6-form input:focus,
.d6-form select:focus {
    background-color: #ffffff;
    border-color: #3d85c6;
    box-shadow: 0 0 0 3px rgba(61, 133, 198, 0.15);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 40px; /* Space for arrow */
}

.select-wrapper::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.btn-submit-d6 {
    background-color: #3d85c6;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    height: 52px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 12px;
}

.btn-submit-d6:hover {
    background-color: #2a659b;
    transform: translateY(-2px);
}


.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    /* Sombras laterais para dar efeito de fade (opcional, mas elegante) */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: inline-flex;
    gap: 48px;
    padding-left: 48px;
}

.marquee-track img {
    height: 48px; /* Altura padrão para equilibrar diferentes formatos */
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6); /* Deixa sutil */
    transition: filter 0.3s ease, transform 0.3s ease;
}

.marquee-track img:hover {
    filter: grayscale(0%) opacity(1); /* Ganha cor no hover */
    transform: scale(1.05);
}

/* Animações Keyframes */
@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* translada 50% porque duplicamos os itens */
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.track-left {
    animation: scrollLeft 40s linear infinite;
}

.track-right {
    animation: scrollRight 40s linear infinite;
}

/* Pausar animação no hover da linha */
.marquee-track:hover {
    animation-play-state: paused;
}
/* Responsividade Básica */
@media (max-width: 768px) {
    #data-bg {
        display: none !important; /* Oculta totalmente o fundo canvas no mobile */
    }
    
    .headline .interactive-word {
        pointer-events: none; /* Desativa o hover massivo no touch do celular */
        transform: none !important;
        display: inline !important;
    }
    
    .nav {
        display: flex; /* Sobrescreve o display: none para o menu hamburger funcionar */
    }
    
    .cta-group {
        flex-direction: column;
        width: 100%;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%; /* Botões ocupam 100% da largura para clique com o dedão */
    }
    
    .typewriter-container {
        min-height: 180px; /* Reduzido e fixado */
        align-items: flex-start; /* Alinha o texto pelo topo para evitar layout shifts */
    }
    
    .headline {
        font-size: clamp(1.8rem, 6.5vw, 2.2rem); /* Ligeira redução para quebrar em no máximo 3 linhas */
        margin-bottom: 0;
        line-height: 1.3;
    }
    
    .subtitle {
        margin-bottom: 32px;
    }
    
    .hero-container {
        min-height: auto;
        padding-top: 0;
    }
    
    .hero {
        padding: calc(var(--header-height) + 2rem) 1.5rem 2rem 1.5rem;
    }
    
    /* Responsividade Dobra 02 */
    .expand-container {
        padding: 80px 1.5rem;
        min-height: auto;
    }
    
    .anim-logo {
        width: 180px;
        margin-bottom: 32px;
    }
    
    .expand-title {
        font-size: 2.4rem; /* Proporção mobile aumentada */
    }
    
    .expand-text {
        font-size: 1.15rem; /* Proporção mobile aumentada */
    }
    
    /* Responsividade Dobra 03 */
    .dobra-03-section {
        padding: 80px 1.5rem;
    }
    
    .split-layout-container {
        flex-direction: column;
        gap: 48px;
    }

    .split-left-col {
        width: 100%;
        position: static; /* Desativa o sticky no mobile */
    }
    
    .split-title {
        font-size: 2.2rem;
    }

    .split-right-col {
        width: 100%;
    }
    
    .feature-item {
        gap: 16px;
        margin-bottom: 32px;
    }


    /* Responsividade Dobra 04 */
    .dobra-04-section {
        padding: 80px 1.5rem;
    }
    
    .section-title-d4 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .benefit-item, .benefit-item.b4-center, .benefit-item.b5-center {
        grid-column: span 1;
    }

    /* Responsividade Dobra 05 */
    .dobra-05-section {
        padding: 64px 0;
    }
    
    .section-title-d5 {
        font-size: 2rem;
    }
    
    .category-label {
        font-size: 0.85rem;
    }

    .d5-tabs-container {
        justify-content: flex-start !important; /* Alinha à esquerda para rolagem */
        padding: 0 1.5rem !important;
        overflow-x: auto !important;
        scrollbar-width: none !important; /* Firefox */
        -webkit-overflow-scrolling: touch !important;
    }

    .d5-tabs-container::-webkit-scrollbar {
        display: none !important; /* Safari e Chrome */
    }

    .d5-tabs {
        flex-wrap: nowrap !important; /* Impede a quebra de linha */
        justify-content: flex-start !important;
        width: max-content !important; /* Permite estender além do viewport */
        padding: 6px !important;
        gap: 8px !important;
        border-radius: 100px !important;
    }

    .d5-tab {
        padding: 10px 18px !important; /* Mais compacto no mobile */
        font-size: 0.9rem !important;
        white-space: nowrap !important; /* Evita quebra de palavra */
    }

    /* Responsividade Dobra 06 */
    .container-d6 {
        flex-direction: column;
        gap: 48px;
    }

    .d6-title {
        font-size: 2.2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .d6-form-card {
        padding: 32px 24px;
    }

    .marquee-track img {
        height: 36px; /* Menor no mobile */
        max-width: 120px;
    }

    /* Hero Carousel no mobile */
    .logo-carousel-section {
        height: 75px !important;
    }
    .trusted-track img {
        max-height: 32px !important;
    }
}

/* =========================================
   Página de Planos (Pricing)
   ========================================= */
.page-planos {
    background-color: #ffffff;
}

.page-planos .header {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.planos-page-wrapper {
    padding-top: 110px;
    padding-bottom: 0;
    min-height: 100vh;
}

.planos-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 5% 80px;
}



.planos-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.planos-header h1, .planos-header h2 {
    font-size: 3.2rem;
    color: #12132f;
    font-weight: 700;
    margin-bottom: 16px;
}

.planos-header p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.plano-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    border: 2px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.plano-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: var(--brand-color);
}

.card-icon {
    color: var(--brand-color);
    background-color: rgba(59, 153, 205, 0.1);
    padding: 12px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 24px;
    box-sizing: border-box;
}

.plano-card-header h3 {
    font-size: 1.8rem;
    color: #12132f;
    font-weight: 800;
    margin-bottom: 12px;
}

.plano-card-header p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    min-height: 70px;
}

.plano-divider {
    border: 0;
    height: 1px;
    background-color: #e2e8f0;
    margin: 24px 0;
}

.plano-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.plano-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.5;
}

.plano-features li svg {
    color: var(--brand-color);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.plano-features li.feature-plus {
    color: #0f172a;
    font-weight: 600;
}

.plano-features li.feature-plus strong {
    color: var(--brand-color);
    font-size: 1.2rem;
    line-height: 1;
    width: 20px;
    text-align: center;
}

.plano-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Responsivo para Planos */
@media (max-width: 992px) {
    .planos-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 50px;
    }
    .plano-card.destaque {
        transform: scale(1);
    }
    .plano-card.destaque:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .planos-section {
        padding: 20px 1.5rem 60px;
    }
    
    .planos-header {
        margin-bottom: 40px;
    }
    
    .planos-header h1, .planos-header h2 {
        font-size: clamp(2rem, 7vw, 2.5rem);
        margin-bottom: 12px;
    }
    
    .planos-header p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .plano-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .plano-card-header h3 {
        font-size: 1.6rem;
    }
    
    .compare-table-container {
        padding: 24px 12px;
        margin: 20px auto 40px;
        border-radius: 16px;
    }
    
    .compare-table th {
        padding: 14px 8px;
        font-size: 0.92rem;
    }
    
    .compare-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    .compare-table .group-row td {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
}

/* =========================================
   Feature Comparison Table
   ========================================= */
.compare-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 5%;
}

.compare-header {
    text-align: center;
    margin-bottom: 40px;
}

.compare-header h2 {
    font-size: 2.4rem;
    color: #12132f;
    font-weight: 600;
    margin-bottom: 12px;
}

.compare-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.compare-section {
    padding: 20px 5% 100px;
    background-color: transparent;
}

.compare-table-container {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
    overflow-x: auto;
    margin: 40px auto 60px;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 750px; /* Garante scroll horizontal elegante no mobile */
}

.compare-table th {
    background: #ffffff;
    padding: 20px;
    text-align: center;
    color: #12132f;
    font-weight: 800;
    font-size: 1.1rem;
    border-bottom: 2px solid #e2e8f0;
}

.compare-table th:first-child {
    text-align: left;
    width: 40%;
}

.compare-table .group-row td {
    background: #F8FAFC;
    color: var(--brand-color);
    font-weight: 700;
    padding: 20px;
    font-size: 1.05rem;
    border-bottom: 1px solid #e2e8f0;
}

.compare-table td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    font-size: 0.95rem;
    transition: background 0.2s ease;
}

.compare-table tr:not(.group-row):hover td {
    background: #f8fafc;
}

.compare-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #0f172a;
}

/* Icon Styles */
.compare-table .icon-check {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%233B99CD' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.compare-table .icon-cross {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
    width: 100%;
    padding: 90px 5%;
    background: linear-gradient(135deg, #12142D, #1A4D7C);
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta-container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.cta-content {
    flex: 1;
    max-width: 55%;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.4rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

.cta-content p {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 280px;
    z-index: 2;
}

.btn-primary-cta {
    background: var(--brand-color);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 20px rgba(59, 153, 205, 0.3);
}

.btn-primary-cta:hover {
    background: #328ab8;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(59, 153, 205, 0.4);
}

.btn-outline-cta {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-outline-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-glow {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 153, 205, 0.2) 0%, rgba(18, 20, 45, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* Ensure the footer margin isn't broken since we removed it from cta-section */
.page-planos footer {
    margin-top: 0;
}

/* Page Planos CTA Premium Card Style Override (Matches screenshot layout with floating canvas background) */
.page-planos .cta-section {
    width: 100%;
    padding: 80px 5% 120px;
    background: transparent;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.page-planos .cta-container {
    background: linear-gradient(135deg, #12142D 0%, #1A4D7C 100%);
    border-radius: 32px; /* Cantos arredondados premium */
    padding: 60px 80px;
    width: 100%;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 50px rgba(18, 20, 45, 0.15);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-planos .cta-content {
    max-width: 65%;
    flex: 1;
    position: relative;
    z-index: 2;
    text-align: left;
}

.page-planos .cta-content h2 {
    font-size: 2.2rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.page-planos .cta-content p {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.6;
    font-weight: 300;
}

.page-planos .cta-actions {
    position: relative;
    z-index: 2;
    text-align: right;
    min-width: 280px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.page-planos .btn-primary-cta {
    background: var(--brand-color);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 9999px; /* Formato pílula de acordo com o design system */
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    box-shadow: 0 8px 24px rgba(61, 133, 198, 0.35);
    display: inline-block;
}

.page-planos .btn-primary-cta:hover {
    background: #3371a8;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(61, 133, 198, 0.45);
}

.page-planos .cta-glow {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 153, 205, 0.25) 0%, rgba(18, 20, 45, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .page-planos .cta-container {
        padding: 50px 40px;
    }
    
    .page-planos .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-planos .cta-section {
        padding: 60px 24px 80px;
    }

    .page-planos .cta-container {
        flex-direction: column;
        padding: 40px 24px;
        text-align: center;
        gap: 32px;
    }
    
    .page-planos .cta-content {
        max-width: 100%;
        text-align: center;
    }
    
    .page-planos .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .page-planos .cta-actions {
        width: 100%;
        min-width: unset;
        justify-content: center;
    }
    
    .page-planos .btn-primary-cta {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        padding: 0;
        text-align: center;
    }
    
    .cta-content {
        max-width: 100%;
        margin-bottom: 32px;
    }
    
    .cta-actions {
        max-width: 100%;
    }
    
    .cta-glow {
        display: none;
    }
}

/* =========================================
   Página de Contato
   ========================================= */
.page-contato {
    background-color: var(--bg-white);
}

.contato-page-wrapper {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 60px);
    display: flex;
    justify-content: center;
}

.contato-section {
    width: 100%;
    max-width: 1300px;
    padding: 0 5% 80px 5%;
}

.contato-header {
    text-align: center;
    margin-bottom: 40px;
}

.contato-header h1, .contato-header h2 {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    color: #12132f;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.contato-header p {
    font-size: 1.15rem;
    color: #64748b;
    font-weight: 400;
}

.contato-tabs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contato-tabs {
    display: flex;
    gap: 8px;
    background-color: #f1f5f9;
    padding: 6px;
    border-radius: 9999px;
    margin-bottom: 48px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.contato-tab-btn {
    background: transparent;
    border: none;
    padding: 14px 36px;
    border-radius: 9999px;
    font-family: var(--font-family);
    font-size: 1.05rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contato-tab-btn.active {
    background-color: #ffffff;
    color: var(--brand-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contato-tab-content-container {
    width: 100%;
    max-width: 1200px;
}

.contato-tab-content {
    display: none;
    animation: fadeInTab 0.4s ease;
}

.contato-tab-content.active {
    display: block;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.contato-card-inner {
    padding: 56px 48px;
    border-radius: 24px;
    display: block;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    color: #12132f;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contato-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: var(--brand-color);
}

.contato-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
}

.contato-card-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
}

@media (min-width: 992px) {
    .contato-card-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
    
    .contato-card-grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 32px;
    }
    
    .contato-card-grid-3 .contato-card-inner {
        padding: 48px 24px;
    }
    
    .contato-card-grid-3 .email-link {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .contato-card-grid-3 .contact-item {
        gap: 8px;
    }
    
    .border-side {
        /* removido: as cartas independentes não precisam mais de borda divisória */
    }
}

.contato-column {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contato-col-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 24px;
}

.contato-col-header .card-icon {
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
}

.contato-col-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #12132f;
}

.mt-auto {
    margin-top: auto;
    padding-top: 32px;
}

.contato-card-left, .contato-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.contato-card-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    color: #12132f;
}

.contato-card-subtitle {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: #64748b;
}

.contato-features {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 0;
}

.contato-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #475569;
}

.contato-features li svg {
    width: 20px;
    height: 20px;
    color: var(--brand-color);
    flex-shrink: 0;
}

.contato-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    width: 100%;
    background-color: transparent;
    padding: 0;
    border: none;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item svg {
    color: var(--brand-color);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contato-card-phone {
    font-size: 1.4rem;
    font-weight: 700;
    color: #12132f;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.contato-card-grid-3 .contato-card-phone {
    font-size: 1.35rem;
}

.contato-card-grid-3 .btn-whatsapp {
    padding: 12px 24px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
    margin-bottom: 0;
}

.btn-whatsapp {
    background-color: var(--brand-color);
    color: #ffffff;
    border: none;
    width: auto;
    padding: 14px 32px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(59, 153, 205, 0.3);
    background-color: #3388b8;
}

.btn-whatsapp-outline {
    background-color: transparent;
    color: #12132f;
    border: 1px solid #e2e8f0;
    width: auto;
    padding: 14px 32px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.btn-whatsapp-outline:hover {
    background-color: #F8FAFC;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

/* Adjust WhatsApp icon color based on button */
.btn-whatsapp svg {
    color: #ffffff;
}
.btn-whatsapp-outline svg {
    color: #25D366; /* Verde do whatsapp original */
}

.contato-card-footer {
    font-size: 0.95rem;
    opacity: 0.8;
}

.email-link {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s;
    word-break: normal;
}

.email-link:hover {
    color: var(--brand-color);
}

.contato-card-extra {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #475569;
}

.inline-link {
    color: var(--brand-color);
    text-decoration: none;
    font-weight: 600;
}

.inline-link:hover {
    text-decoration: underline;
}

.contato-card-address {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.contato-card-address span {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #12132f;
}

@media (max-width: 768px) {
    .contato-page-wrapper {
        padding-top: calc(var(--header-height) + 20px);
    }
    .contato-section {
        padding: 0 16px 48px 16px;
    }
    .contato-header {
        margin-bottom: 24px;
    }
    .contato-header h1, .contato-header h2 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
    .contato-tabs {
        flex-direction: column;
        width: 100%;
        border-radius: 18px;
        gap: 6px;
        margin-bottom: 32px;
    }
    .contato-tab-btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 1rem;
        border-radius: 14px;
    }
    .contato-card-inner {
        padding: 32px 24px;
        text-align: left;
    }
    .contato-card-subtitle {
        margin-bottom: 24px;
    }
    .contato-card-phone,
    .contato-card-grid-3 .contato-card-phone {
        font-size: clamp(1.2rem, 4vw, 1.45rem) !important;
    }
}

/* ==========================================
   Mobile Menu Styles
   ========================================== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #12132f;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

@media (max-width: 991px) {
    .mobile-menu-btn {
        display: block;
        margin-left: auto;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        padding: 96px 32px 40px;
        box-shadow: -20px 0 45px rgba(18, 20, 45, 0.08); /* Premium soft drop shadow */
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Faster and smoother native transition */
        overflow-y: auto;
        z-index: 1000;
        align-items: stretch; /* Stretch items vertically to align content */
        gap: 0;
        display: flex;
    }
    
    .nav.nav-open {
        right: 0;
    }
    
    .nav-item-dropdown {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        padding: 16px 0 !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #12132f !important;
        font-size: 1.15rem !important;
        font-weight: 500 !important;
        border-bottom: 1px solid #f1f5f9;
        transition: color 0.25s ease;
        letter-spacing: -0.01em;
    }

    .nav-link:hover, .nav-link:active {
        color: var(--brand-color) !important;
    }

    .nav-link .chevron {
        color: #94a3b8 !important;
        transition: transform 0.3s ease !important;
    }
    
    .mega-menu, .mega-menu.simple-dropdown {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        box-shadow: none !important;
        padding: 4px 0 8px 16px !important;
        margin: 0 !important;
        border-left: 2px solid #e2e8f0 !important;
        border-right: none !important;
        border-top: none !important;
        border-bottom: none !important;
        transform: none !important;
        border-radius: 0 !important;
        background: transparent !important;
        flex-direction: column !important;
        transition: none !important;
    }

    .mega-menu-content {
        display: block !important;
        padding: 0 !important;
        gap: 0 !important;
    }

    .mega-left {
        display: none !important;
    }

    .mega-right {
        padding: 0 !important;
        width: 100% !important;
    }

    .mega-category {
        display: none !important;
    }

    .mega-list {
        padding: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
    }

    .mega-list li a {
        display: block !important;
        padding: 8px 0 !important;
        color: #475569 !important;
        font-size: 0.98rem !important;
        background: transparent !important;
        border-radius: 0 !important;
        transform: none !important;
        transition: all 0.2s ease !important;
    }

    .mega-list li a:hover {
        color: var(--brand-color) !important;
        background: transparent !important;
        padding-left: 4px !important;
    }

    .mega-list li a svg {
        display: none !important;
    }

    .mega-list-desc {
        display: none !important;
    }

    .mega-list-title {
        font-weight: 400 !important;
        font-size: inherit !important;
        color: inherit !important;
    }

    /* Disable hover-based menu display on mobile to avoid layout shifts */
    .nav-item-dropdown:hover .mega-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none !important;
    }
    
    .nav-item-dropdown.active .mega-menu,
    .nav-item-dropdown.active:hover .mega-menu {
        display: flex !important;
    }
    
    .nav-item-dropdown.active .dropdown-trigger .chevron {
        transform: rotate(180deg) !important;
        color: var(--brand-color) !important;
    }

    /* Premium Full-width mobile action button */
    .nav-btn {
        display: block !important;
        width: 100% !important;
        margin-top: 32px !important;
        padding: 14px 24px !important;
        background-color: var(--brand-color) !important;
        color: #ffffff !important;
        border: none !important;
        border-radius: 9999px !important;
        text-align: center !important;
        font-size: 1.05rem !important;
        font-weight: 600 !important;
        box-shadow: 0 4px 14px rgba(61, 133, 198, 0.25) !important;
        transition: all 0.3s ease !important;
    }
    
    .nav-btn:hover, .nav-btn:active {
        background-color: #3388b8 !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 6px 20px rgba(61, 133, 198, 0.35) !important;
    }
    
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* ==========================================
   Modal de Vídeo Global (YouTube)
   ========================================== */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(18, 20, 45, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-container {
    width: 90%;
    max-width: 960px;
    background: #000000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.video-modal-overlay.active .video-modal-container {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: rotate(90deg);
}

.video-modal-content {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000000;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.video-modal-footer {
    background: #0c0d1e;
    padding: 16px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.video-modal-external-btn {
    background: rgba(61, 133, 198, 0.15);
    border: 1px solid rgba(61, 133, 198, 0.35);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.video-modal-external-btn:hover {
    background: var(--brand-color);
    border-color: var(--brand-color);
    box-shadow: 0 4px 14px rgba(61, 133, 198, 0.3);
}

@media (max-width: 768px) {
    .video-modal-container {
        overflow: visible; /* Permite posicionar o botão X para fora */
        margin-top: 40px;
    }
    .video-modal-close {
        top: -56px;
        right: 0;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
}

/* ==========================================
   Rodapé Premium (Footer)
   ========================================== */
.site-footer {
    width: 100%;
    font-family: var(--font-family);
    position: relative;
    z-index: 10;
    clear: both;
    background: linear-gradient(135deg, #12142D 0%, #1A284F 100%);
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Dobra 1: Redes Sociais */
.footer-social-bar {
    background-color: #f0f7fd;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(61, 133, 198, 0.15);
    border-bottom: 1px solid rgba(61, 133, 198, 0.15);
}

.footer-social-bar .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-bar-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
    letter-spacing: -0.01em;
}

.social-icons {
    display: flex;
    gap: 1.25rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #ffffff;
    border-radius: 50%;
    color: var(--primary-blue);
    border: 1px solid rgba(61, 133, 198, 0.15);
    box-shadow: 0 2px 8px rgba(61, 133, 198, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
}

.social-icons a svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(61, 133, 198, 0.25);
    border-color: var(--primary-blue);
}

.social-icons a:hover svg {
    transform: scale(1.1);
}

/* Dobra 2: Colunas e Branding */
.footer-main-bar {
    padding: 5rem 0;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-grid.has-news {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}

@media (max-width: 1100px) {
    .footer-grid.has-news {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 2.5rem;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.branding-col {
    gap: 1.5rem;
}

.footer-logo {
    height: 42px;
    width: auto;
    align-self: flex-start;
    object-fit: contain;
}

.footer-brand-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.footer-brand-contact {
    font-size: 0.9rem;
    font-weight: 500;
    color: #a5d1f3;
    display: block;
    margin-bottom: 8px;
}

.footer-brand-address {
    font-style: normal;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-top: 4px;
}

.footer-col-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    color: #ffffff;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 8px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-links li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #a5d1f3;
    transform: translateX(4px);
}

.highlight-client-link {
    color: #a5d1f3 !important;
    font-weight: 500 !important;
}

.highlight-client-link:hover {
    color: #ffffff !important;
}

/* Dobra 3: Copyright e Rodapé Legal */
.footer-bottom-bar {
    padding: 1.75rem 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bottom-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-text {
    line-height: 1.5;
    font-weight: 300;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.legal-links a:hover {
    color: #ffffff;
}

/* Responsividade do Rodapé */
@media (max-width: 992px) {
    .footer-grid,
    .footer-grid.has-news {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-social-bar .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-grid,
    .footer-grid.has-news {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .branding-col {
        grid-column: span 2;
    }
    
    .bottom-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .footer-grid,
    .footer-grid.has-news {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .branding-col {
        grid-column: span 1;
    }
    
    .footer-main-bar {
        padding: 4rem 0;
    }
    
    .legal-links {
        justify-content: center;
        width: 100%;
    }
}

/* Botão Flutuante do WhatsApp Premium */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(61, 133, 198, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(61, 133, 198, 0.08);
    z-index: 9999;
    color: var(--primary-blue, #3d85c6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float:hover {
    background-color: var(--primary-blue, #3d85c6);
    border-color: var(--primary-blue, #3d85c6);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(61, 133, 198, 0.25);
}

.whatsapp-float:hover svg {
    transform: scale(1.1) rotate(5deg);
}


/* ==========================================
   Página do Blog & Notícias (Premium CSS)
   ========================================== */
.page-blog {
    background-color: var(--bg-white);
}

.blog-page-wrapper {
    padding-top: 130px;
    padding-bottom: 80px;
    min-height: 100vh;
    position: relative;
    z-index: 10;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px;
}

.blog-badge {
    display: inline-block;
    background-color: rgba(61, 133, 198, 0.08);
    color: var(--primary-blue);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.blog-main-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: #12132f;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    font-weight: 300;
}

/* Filtros de Categoria (Bento Style) */
.blog-categories-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 64px;
}

.blog-categories {
    display: flex;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 8px;
    border-radius: 100px;
    border: 1px solid rgba(61, 133, 198, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: none; /* Firefox */
}

.blog-categories::-webkit-scrollbar {
    display: none; /* Safari e Chrome */
}

.blog-cat-btn {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 0.95rem;
    color: #64748b;
    background: transparent;
    border: none;
    padding: 10px 20px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.blog-cat-btn:hover {
    color: #12132f;
    background-color: #f1f5f9;
}

.blog-cat-btn.active {
    background-color: #3d85c6;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(61, 133, 198, 0.2);
}

/* Post em Destaque (Destaque Hero) */
.blog-featured-card {
    display: flex;
    background-color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(61, 133, 198, 0.08);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 64px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog-featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(61, 133, 198, 0.06);
    border-color: rgba(61, 133, 198, 0.2);
}

.blog-featured-image {
    flex: 1.2;
    overflow: hidden;
    position: relative;
    min-height: 380px;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog-featured-card:hover .blog-featured-image img {
    transform: scale(1.04);
}

.blog-featured-content {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.featured-cat {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.featured-date {
    color: #94a3b8;
    font-size: 0.85rem;
}

.featured-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: #12132f;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.featured-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-title a:hover {
    color: var(--primary-blue);
}

.featured-desc {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 300;
}

.btn-read-more {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: transform 0.25s ease, color 0.25s ease;
    align-self: flex-start;
}

.btn-read-more:hover {
    color: #2a659b;
    transform: translateX(4px);
}

/* Grid de Artigos */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(61, 133, 198, 0.06);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(61, 133, 198, 0.05);
    border-color: rgba(61, 133, 198, 0.18);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.card-cat {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.card-date {
    color: #94a3b8;
    font-size: 0.8rem;
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #12132f;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary-blue);
}

.blog-card-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 24px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: transform 0.25s ease;
    margin-top: auto;
}

.btn-card-link:hover {
    transform: translateX(4px);
}

/* Leitura de Artigo Completo */
.blog-article-container {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-navigation {
    margin-bottom: 40px;
}

.btn-back-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.btn-back-blog:hover {
    color: var(--primary-blue);
    transform: translateX(-4px);
}

.premium-article {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 56px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.02);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.article-badge-cat {
    background-color: rgba(61, 133, 198, 0.08);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.article-date {
    color: #64748b;
    font-size: 0.85rem;
}

.article-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #12132f;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.article-lead {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 20px 0;
    margin-bottom: 40px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.author-role {
    font-size: 0.8rem;
    color: #64748b;
}

.article-banner {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 48px;
    aspect-ratio: 16/9;
}

.article-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
}

.article-body p {
    margin-bottom: 24px;
}

.article-body h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #12132f;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.article-body ul {
    margin-bottom: 32px;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 12px;
}

/* Vídeo Incorporado */
.article-video-wrapper {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid #f1f5f9;
}

.video-section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #12132f;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.article-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.article-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Rodapé do Artigo */
.article-footer {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid #f1f5f9;
}

.share-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.share-box span {
    font-weight: 600;
    color: #475569;
    font-size: 0.95rem;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
}

.wa-btn {
    background-color: rgba(37, 211, 102, 0.08);
    color: #25d366;
}

.wa-btn:hover {
    background-color: #25d366;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.in-btn {
    background-color: rgba(10, 102, 194, 0.08);
    color: #0a66c2;
}

.in-btn:hover {
    background-color: #0a66c2;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.2);
}

.blog-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px dashed rgba(61, 133, 198, 0.2);
    border-radius: 20px;
}

.blog-empty-state h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-top: 20px;
    margin-bottom: 8px;
}

.blog-empty-state p {
    color: #64748b;
    font-size: 1rem;
    max-width: 320px;
}

/* Responsividade do Blog */
@media (max-width: 992px) {
    .blog-featured-card {
        flex-direction: column;
    }
    
    .blog-featured-image {
        min-height: 280px;
    }
    
    .blog-featured-content {
        padding: 32px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .premium-article {
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .blog-page-wrapper {
        padding-top: 90px !important;
        padding-bottom: 60px;
    }

    .blog-container,
    .blog-article-container {
        padding: 0 1rem;
    }

    .blog-header {
        margin-bottom: 32px;
    }

    /* Filtros horizontais com scroll e fade indicator (Premium Look) */
    .blog-categories-wrapper {
        position: relative;
        width: auto;
        margin: 0 -1rem 24px;
        overflow: hidden;
        justify-content: flex-start;
    }

    .blog-categories-wrapper::before,
    .blog-categories-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        width: 48px;
        height: 100%;
        pointer-events: none;
        z-index: 12;
        transition: opacity 0.3s ease;
        opacity: 0;
    }

    .blog-categories-wrapper::before {
        left: 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
    }

    .blog-categories-wrapper::after {
        right: 0;
        background: linear-gradient(to left, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
    }

    .blog-categories-wrapper.show-left::before {
        opacity: 1;
    }

    .blog-categories-wrapper.show-right::after {
        opacity: 1;
    }

    .blog-categories {
        justify-content: flex-start;
        padding: 8px 1rem 12px;
        margin: 0;
        border-radius: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .blog-cat-btn {
        flex-shrink: 0;
        padding: 8px 18px;
        font-size: 0.88rem;
        background-color: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.015);
    }

    .blog-featured-card {
        margin-bottom: 40px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-main-title {
        font-size: 2.2rem;
    }
    
    .blog-subtitle {
        font-size: 1.05rem;
    }
    
    .blog-featured-image {
        min-height: 220px;
    }
    
    .premium-article {
        padding: 24px 16px;
        border-radius: 16px;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-lead {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }
    
    .article-banner {
        margin-bottom: 32px;
    }

    .article-body img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        margin: 1.5rem 0;
    }
    
    .share-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================
   Páginas Legais (Termos e Privacidade)
   ========================================= */
.legal-page-wrapper {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 60px);
    display: flex;
    justify-content: center;
}

.legal-section {
    width: 100%;
    max-width: 1000px;
    padding: 0 5% 80px 5%;
}

.legal-container {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-title {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    color: #12132f;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    text-align: center;
}

.legal-content {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.8;
}

.legal-content h2 {
    color: #12132f;
    font-size: 1.45rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.legal-content p {
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .legal-page-wrapper {
        padding-top: calc(var(--header-height) + 20px);
    }
    .legal-section {
        padding: 0 16px 48px 16px;
    }
    .legal-container {
        padding: 32px 20px;
        border-radius: 16px;
    }
}

/* =========================================
   Dobra de Depoimentos (Home Page)
   ========================================= */
.dobra-depoimentos-section {
    padding: 120px 5%;
    background-color: transparent;
    position: relative;
    z-index: 10;
    width: 100%;
}

.container-depoimentos {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.depoimentos-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.depoimentos-tag {
    display: inline-block;
    color: var(--brand-color);
    background: rgba(61, 133, 198, 0.08);
    padding: 6px 18px;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.depoimentos-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #12132f;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.depoimentos-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 300;
    line-height: 1.6;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 50px;
    align-items: center;
}

/* Coluna de Texto (Card) */
.testimonial-card-wrapper {
    position: relative;
    width: 100%;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(61, 133, 198, 0.15);
    box-shadow: 0 20px 40px rgba(61, 133, 198, 0.04);
}

.quote-icon {
    color: rgba(61, 133, 198, 0.15);
    margin-bottom: 24px;
}

.testimonial-body {
    font-size: 1.25rem;
    color: #334155;
    line-height: 1.65;
    font-weight: 400;
    font-style: italic;
    margin: 0 0 30px 0;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid #f1f5f9;
    padding-top: 24px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #12132f;
    font-style: normal;
}

.author-meta {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 400;
    margin-top: 4px;
}

/* Indicadores de Navegação */
.testimonial-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot.active {
    background-color: var(--brand-color);
    transform: scale(1.1);
    width: 24px;
    border-radius: 6px;
}

/* Coluna de Vídeo (Preview) */
.video-preview-card {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, #12142D, #1c234a);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-preview-card:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(61, 133, 198, 0.12);
    border-color: rgba(61, 133, 198, 0.3);
}

.video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(18, 20, 45, 0.3) 0%, rgba(18, 20, 45, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    color: #ffffff;
}

.video-play-button {
    width: 68px;
    height: 68px;
    background: var(--brand-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 0 0 0 rgba(61, 133, 198, 0.5);
    animation: pulse-play 2s infinite;
    transition: all 0.3s ease;
    color: #ffffff;
    padding-left: 4px; /* Centraliza triângulo de play */
}

.video-preview-card:hover .video-play-button {
    transform: scale(1.1);
    background: #4fa3e3;
}

.video-tag {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    opacity: 0.9;
}

.video-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg, rgba(61, 133, 198, 0.15) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 2;
    pointer-events: none;
}

@keyframes pulse-play {
    0% {
        box-shadow: 0 0 0 0 rgba(61, 133, 198, 0.6);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(61, 133, 198, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(61, 133, 198, 0);
    }
}

/* Responsividade Mobile */
@media (max-width: 991px) {
    .dobra-depoimentos-section {
        padding: 80px 24px;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonial-card {
        padding: 36px 24px;
    }
    
    .testimonial-body {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .dobra-depoimentos-section {
        padding: 60px 16px;
    }
    
    .depoimentos-header {
        margin-bottom: 40px;
    }
    
    .depoimentos-title {
        font-size: 1.8rem;
    }
    
    .depoimentos-subtitle {
        font-size: 1.05rem;
    }
    
    .video-preview-card {
        border-radius: 16px;
    }
    
    .video-play-button {
        width: 56px;
        height: 56px;
    }
    
    .video-play-button svg {
        width: 22px;
        height: 22px;
    }
}

/* =========================================
   Dobra 05c: Logos de Clientes (Home Page)
   ========================================= */
.dobra-clientes-section {
    background-color: #F5FAFD; /* Azul bem clarinho no padrão de Com quem Conciliamos */
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    width: 100%;
    border-top: 1px solid rgba(61, 133, 198, 0.05);
}

.container-clientes {
    width: 100%;
    margin: 0 auto;
}

.clientes-title {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0 5%;
}

/* Responsividade Mobile para Dobra Clientes */
@media (max-width: 768px) {
    .dobra-clientes-section {
        padding: 40px 0;
    }
    
    .clientes-title {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
}






