/* Configurações Globais e Variáveis de Cores */
:root {
    --bg-color: #06121e;
    /* Cor de fundo principal informada */
    --gold: #d4a548;
    /* Cor dos botões e detalhes informada */
    --btn-dark: #0f243b;
    /* Cor azul escura para botão "Área do Cliente" */
    --text-light: #ffffff;
    /* Texto principal branco */
    --text-gray: #c9d1d9;
    /* Texto secundário cinza claro */
}

.white-text {
    color: var(--text-light) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    /* Evita rolagem horizontal */
    position: relative;
}



/* Configuração do Vídeo de Fundo */
.video-container {
    position: absolute;
    top: 4.8%; /* Ajustado para 4.8% */
    right: -10%;
    transform: translateY(-50%);
    width: 70%; /* Ajustado para 70% conforme solicitado */
    height: 100%;
    z-index: -1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    mix-blend-mode: screen;
    /* Aplicando a mistura na caixa ao invés do vídeo para o iOS */
}

.video-container video,
.video-container img {
    max-width: 100%;
    max-height: 100%; /* Aumentado de 90% para 100% para suportar imagem maior */
    object-fit: contain;
    opacity: 0.99;
    /* Hack para renderização no iOS */
    pointer-events: none;
    /* Impede que o usuário toque no vídeo e mostre controles no celular */
    border: none;
    outline: none;
    background: transparent;
    -webkit-appearance: none;
    /* Remove estilos padrão do iOS */
    -webkit-tap-highlight-color: transparent;
    transform: translate3d(0, 0, 0);
    /* Força a aceleração de hardware no iOS para aplicar o mix-blend-mode corretamente */
}

/* Força os navegadores de celular a esconderem o ícone de Play */
video::-webkit-media-controls,
video::-webkit-media-controls-enclosure,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}

/* Navbar (Cabeçalho) com efeito de Vidro (Glassmorphism) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8%;
    /* Padding reduzido para afinar a barra */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.03);
    /* Fundo muito sutil transparente */
    backdrop-filter: blur(12px);
    /* Desfoque do vidro */
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    /* Borda inferior sutil */
}

.logo img {
    height: 45px; /* Tamanho ajustado para 45px conforme solicitado */
}

.nav-links {
    display: flex;
    gap: 40px;
    margin-left: -50px;
    /* Ajuste sutil para centralizar com o layout */
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-light);
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

/* Estilos gerais de Botões (Área do Cliente e Contato) */
.btn {
    /* PARA ALTERAR O TAMANHO DOS BOTÕES DA BARRA SUPERIOR:
       - O primeiro valor (8px) é o espaço em cima e embaixo (altura).
       - O segundo valor (20px) é o espaço nas laterais (largura).
       Aumente ou diminua esses números para mudar o tamanho. */
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    /* PARA ALTERAR O TAMANHO DO TEXTO DOS BOTÕES: mude o valor abaixo */
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-dark {
    background-color: var(--btn-dark);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-dark:hover {
    background-color: #163252;
}

.btn-gold {
    background-color: var(--gold);
    color: #1a1a1a;
    font-weight: 600;
}

.btn-gold:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Seção Principal (Hero) */
.hero {
    padding: 160px 8% 100px;
    /* Padding top aumentado para compensar a navbar fixa */
    position: relative;
    z-index: 10;
    background: radial-gradient(circle at 50% 40%, rgba(212, 165, 72, 0.15) 0%, transparent 70%);
}

.hero-content {
    max-width: 850px;
    /* Limita a largura do texto para o vídeo caber à direita */
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h1 .highlight {
    color: var(--gold);
}

.hero p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 95%;
}

/* Botão de Chamada (CTA) */
.btn-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #e6b25a 0%, var(--gold) 100%);
    color: #1a1a1a;
    text-decoration: none;
    padding: 14px 24px 14px 32px;
    border-radius: 50px;
    /* Formato de pílula arredondada */
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 70px;
    white-space: nowrap;
    /* Impede a quebra de linha do texto */
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 165, 72, 0.25);
}

.btn-cta .arrow {
    margin-left: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #1a1a1a;
}

/* Container dos Cards */
.cards-container {
    display: flex;
    gap: 30px;
}

.card {
    background-color: transparent;
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 30px 25px;
    width: 100%;
    max-width: 320px; /* Limita a largura para não esticar */
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: default;
}

.card:hover {
    transform: translateY(-5px);
    background-color: rgba(212, 165, 72, 0.05);
    /* Fundo muito sutil ao passar o mouse */
}

.card-icon {
    height: 40px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.card p {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Responsividade (Telas Menores) */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }

    .video-container {
        width: 50%;
        right: -10%;
    }
}

@media (max-width: 992px) {
    .video-container {
        opacity: 0.2;
        /* Deixa o vídeo como marca d'água em telas menores */
        width: 100%;
        right: 0;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        /* Volta a centralizar no tablet/notebook pequeno */
    }

    .hero p {
        margin: 0 auto 40px;
        /* Restaura o margin auto */
    }

    .cards-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .nav-links {
        display: none;
    }

    /* Oculta links do menu no mobile (ideal seria um menu hambúrguer) */
}

@media (max-width: 768px) {
    .video-container {
        top: 2%; /* Ajustado finamente para 2% na versão mobile */
    }
    .video-container img {
        transform: scale(1.3); /* Aumentado o tamanho no celular */
    }

    .navbar {
        flex-direction: row;
        /* Mantém tudo na mesma linha (reto) */
        justify-content: space-between;
        padding: 10px 5%;
    }

    .logo img {
        height: 30px;
        /* Reduz a logo para caber com os botões */
    }

    .nav-buttons {
        gap: 8px;
        /* Menor espaço entre botões */
    }

    .btn {
        padding: 6px 12px;
        /* Botões menores no celular para não quebrar a linha */
        font-size: 0.75rem;
    }

    .hero {
        padding: 120px 5% 30px;
        /* Reduz o padding inferior para diminuir espaço vazio */
    }

    .hero-content {
        text-align: left;
        /* No celular, fica alinhado à esquerda */
    }

    .hero p {
        margin: 0 0 40px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .btn-cta {
        padding: 12px 20px;
        font-size: 0.8rem;
        margin-bottom: 30px;
        /* Reduz a distância entre o botão e os cards */
    }

    .cards-container {
        flex-direction: row;
        /* Força os cards a ficarem lado a lado */
        gap: 6px;
        /* Reduz a distância entre eles */
        max-width: 100%;
        margin: 0;
    }

    .card {
        padding: 12px 6px 0px 6px;
        /* Espaçamento de baixo zerado (0px) para colar no texto */
    }

    .card-icon {
        height: 22px;
        /* Ícone levemente menor para harmonizar com a caixa pequena */
        margin-bottom: 5px;
    }

    .card h3 {
        font-size: 0.65rem;
        margin-bottom: 8px;
    }

    .card h3 br {
        display: none;
        /* Remove quebra forçada no mobile */
    }

    .card p {
        font-size: 0.65rem;
        /* Aumenta um pouquinho a leitura */
        line-height: 1.3;
    }

    .card p br {
        display: none;
        /* Permite que o texto se adapte ao tamanho do bloco naturalmente */
    }
}

/* Celulares muito pequenos */
@media (max-width: 400px) {
    .btn-cta {
        padding: 10px 15px;
        font-size: 0.7rem;
    }
}

/* ========================================= */
/* SEÇÃO FAQ (PERGUNTAS FREQUENTES)          */
/* ========================================= */

.faq-section {
    padding: 100px 8%;
    background: radial-gradient(circle at 50% 0%, rgba(212, 165, 72, 0.1) 0%, transparent 60%), var(--bg-color);
    position: relative;
    z-index: 10;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.faq-header p {
    font-size: 1.15rem;
    color: var(--text-gray);
    font-weight: 500;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    border-bottom-color: rgba(212, 165, 72, 0.4);
}

.faq-item[open] {
    border-bottom-color: var(--gold);
}

.faq-question {
    padding: 24px 10px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; /* Remove default arrow */
    position: relative;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question, .faq-item[open] .faq-question {
    color: var(--gold);
}

/* Remove default arrow in webkit */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--text-gray);
    font-weight: 300;
    transition: transform 0.3s ease, color 0.3s ease;
    margin-left: 20px;
    flex-shrink: 0;
}

.faq-item:hover .faq-icon {
    color: var(--gold);
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    color: var(--gold);
}

.faq-answer {
    padding: 0 10px 24px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    animation: fadeInDown 0.4s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 5%;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 20px 5px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 5px 20px;
        font-size: 0.85rem;
    }
}

/* ========================================= */
/* SEÇÃO SOBRE NÓS                           */
/* ========================================= */

.about-section {
    padding: 120px 8%;
    position: relative;
    z-index: 10;
    background: var(--bg-color);
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 60px;
    margin-bottom: 100px;
}

.about-content {
    flex: 1;
    max-width: 600px;
}

.about-content h2 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--gold);
    letter-spacing: -1px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
    text-align: justify;
}

.about-mvv {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

.mvv-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease;
}

.mvv-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 165, 72, 0.3);
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
}

.mvv-icon {
    width: 40px;
    height: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.mvv-icon svg {
    width: 100%;
    height: 100%;
}

.mvv-card h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.mvv-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.values-container {
    text-align: center;
}

.values-header {
    margin-bottom: 60px;
}

.values-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(212, 165, 72, 0.15);
    border-radius: 16px;
    padding: 35px 25px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-item:hover {
    background: linear-gradient(135deg, rgba(212, 165, 72, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 165, 72, 0.1);
}

.value-icon {
    width: 45px;
    height: 45px;
    color: var(--gold);
    margin-bottom: 20px;
    background: rgba(212, 165, 72, 0.1);
    padding: 10px;
    border-radius: 12px;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsividade Sobre Nós */
@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .about-content {
        max-width: 100%;
        text-align: center;
    }

    .about-content p {
        text-align: left;
    }
    
    .about-mvv {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 5%;
    }
    
    .about-content h2 {
        font-size: 2.2rem;
    }

    .values-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-content p {
        text-align: justify;
    }
}

/* ========================================= */
/* SEÇÃO MADU (NOVO LAYOUT)                  */
/* ========================================= */

.madu-section {
    padding: 100px 8% 80px; /* Restaurado o padding simétrico para centralizar o cabeçalho na página */
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header da Seção */
.madu-header {
    text-align: center;
    margin-bottom: 60px;
}

.madu-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.madu-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.btn-transform {
    display: inline-block;
    background-color: var(--text-light);
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-transform:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}

/* Container Principal */
.madu-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    gap: 280px; /* Aumentado para 280px conforme solicitado */
    padding-left: 12%; /* Mantido o deslocamento lateral conforme solicitado anteriormente */
}

/* Lado Esquerdo - Novo Celular Unificado */
.madu-left {
    flex: 0 0 auto; /* Não estica, mantém o celular compacto na esquerda */
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px; /* Reduzido para trazer o GIF de volta para a esquerda */
}

.new-phone-wrapper {
    position: relative;
    width: 320px;
    max-width: 100%;
}

.unified-phone-video {
    width: 100%;
    height: auto;
    display: block;
    /* Ajuste fino se necessário, pois já está tudo no vídeo */
}

/* Balões Flutuantes (Chat Bubbles) */
.chat-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 12px 18px;
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.4;
    z-index: 20;
    width: 220px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    animation: bubbleFloat 4s ease-in-out infinite;
}

.chat-bubble .highlight-file {
    color: var(--gold);
    display: block;
    margin-top: 4px;
    font-weight: 700;
}

.bubble-top-right {
    top: 5%;      /* Para subir/descer: diminua/aumente o % */
    right: -55%;  /* Afastado mais para fora do celular */
    animation-delay: 0s;
}

.bubble-mid-left {
    top: 35%;     /* Para subir/descer: diminua/aumente o % */
    left: -60%;   /* Afastado mais para fora do celular */
    animation-delay: 1s;
}

.bubble-bottom-right {
    bottom: 20%;  /* Para subir/descer: aumente o % para subir */
    right: -45%;  /* Afastado mais para fora do celular */
    animation-delay: 0.5s;
}

.bubble-bottom-left {
    bottom: 5%;   /* Para subir/descer: aumente o % para subir */
    left: -70%;   /* Afastado mais para fora do celular */
    width: 250px;
    animation-delay: 1.5s;
}

.bubble-audio-icon {
    width: 100%;
    height: auto;
    margin-bottom: 8px;
}

.transcription {
    font-size: 0.7rem;
    opacity: 0.9;
    color: var(--text-gray);
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Balões agora visíveis em todas as telas, com ajustes via media queries */

/* Lado Direito - Perfil e Textos */
.madu-right {
    flex: 0 1 500px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 30px; /* Ajustado para 30px conforme solicitado */
}

/* Container do perfil da Madu para posicionamento à direita */
.madu-profile-container {
    display: flex;
    justify-content: center; /* Centraliza a imagem em relação ao texto */
    margin-bottom: 20px;
}

.madu-profile-img-large {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--text-light); /* Borda branca como na imagem */
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.madu-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 25px;
    text-align: justify; /* Justificado conforme solicitado */
}

.mt-20 {
    margin-top: 20px;
}

/* Botões Pílula (Features) */
.madu-pill-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.pill-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 16px 22px;
    border-radius: 6px; /* Retangular moderno */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--gold); /* Destaque lateral em ouro */
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pill-btn:hover {
    background: rgba(212, 165, 72, 0.1);
    border-color: rgba(212, 165, 72, 0.4);
    border-left-width: 8px; /* O indicador lateral cresce no hover */
    transform: translateX(8px); /* Deslocamento lateral elegante */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.pill-img-icon {
    width: 22px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(212, 165, 72, 0.2));
    transition: transform 0.3s ease;
}

.pill-btn:hover .pill-img-icon {
    transform: scale(1.2);
}

/* Lista de Benefícios */
.madu-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.madu-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 400;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsividade MADU NOVO */
@media (max-width: 992px) {
    .madu-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .madu-profile-container {
        justify-content: center;
        padding-right: 0;
    }
    
    .madu-pill-features {
        justify-content: center;
    }
    
    .madu-benefits {
        align-items: center; /* Centraliza a lista no mobile */
    }
}

@media (max-width: 768px) {
    .madu-section {
        padding: 60px 5%;
        align-items: center;
        text-align: center;
    }

    .madu-container {
        padding-left: 0; /* Remove o deslocamento lateral no mobile para centralizar */
        align-items: center;
        gap: 40px;
    }

    .madu-left {
        padding-left: 0; /* Centraliza o GIF */
    }
    
    .new-phone-wrapper {
        width: 180px; /* Reduzido para 180px para que os balões caibam na largura do celular */
        margin: 0 auto;
    }

    /* Ajustes dos balões para celular */
    .chat-bubble {
        width: 110px;
        font-size: 0.55rem;
        padding: 5px 8px;
    }
    
    .bubble-top-right { right: -45%; top: 0; }
    .bubble-mid-left { left: -50%; top: 30%; }
    .bubble-bottom-right { right: -40%; bottom: 15%; }
    .bubble-bottom-left { left: -45%; bottom: 5%; width: 120px; }
    
    .bubble-audio-icon { margin-bottom: 4px; }
    .transcription { font-size: 0.5rem; }

    /* Lado Direito Alinhado à Esquerda conforme solicitado */
    .madu-right {
        align-items: flex-start;
        width: 100%;
    }

    .madu-profile-container {
        justify-content: center; /* Foto centralizada no mobile */
        width: 100%;
        margin-bottom: 25px;
    }

    .madu-description {
        text-align: justify; /* Texto principal justificado no mobile */
        width: 100%;
    }

    /* Garante que o texto de introdução aos benefícios continue à esquerda */
    .madu-description.mt-20 {
        text-align: left;
    }

    .madu-pill-features {
        justify-content: flex-start;
        margin: 0 0 30px 0;
        width: 100%;
    }

    .madu-benefits {
        align-items: flex-start; 
        text-align: left;
        margin: 0; 
        max-width: 100%;
    }

    .madu-benefits li {
        text-align: left;
        justify-content: flex-start;
    }
}

/* ========================================= */
/* SEÇÃO ESTRATÉGIA FINANCEIRA (CARROSSEL)   */
/* ========================================= */

.strategy-section {
    padding: 100px 0;
    /* Removido o background local para que o fundo do site seja contínuo */
    position: relative;
    z-index: 10;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(212, 165, 72, 0.15) 0%, transparent 70%);
}

.strategy-header {
    text-align: center;
    margin-bottom: 70px;
    padding: 0 8%; /* Mantido o padding apenas no texto superior */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.strategy-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.strategy-header h2 .white-text {
    color: var(--text-light);
}

.strategy-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.gold-text {
    color: var(--gold);
    font-weight: 600;
}

/* Container do Carrossel */
.strategy-carousel-wrapper {
    position: relative;
    width: 100%;
}

.strategySwiper {
    max-width: 1200px; /* Volta ao tamanho original dos 3 blocos */
    margin: 0 auto !important;
    padding: 20px 0 10px !important; /* Reduzido de 60px para aproximar o botão */
    overflow: hidden; /* Agora o corte será preciso nos limites dos 3 blocos */
}

/* Garante que todos os slides tenham a mesma altura */
.strategySwiper .swiper-slide {
    height: auto !important;
    display: flex;
    align-items: stretch;
}

/* Estilo do Card de Serviço */
.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(212, 165, 72, 0.2);
    border-radius: 24px; /* Levemente mais arredondado */
    padding: 45px 30px; /* Mais respiro interno */
    height: 100%;
    min-height: 380px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 165, 72, 0.1), transparent 60%);
    pointer-events: none;
    opacity: 0.5;
}

.service-card:hover {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(212, 165, 72, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 165, 72, 0.15);
}

/* Recipiente do Ícone Moderno */
.service-icon-box {
    width: 75px;
    height: 75px;
    background: rgba(212, 165, 72, 0.1);
    border: 1px solid rgba(212, 165, 72, 0.3);
    border-radius: 18px; /* Formato "Squircle" */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon-box {
    background: var(--gold);
    transform: rotate(10deg);
    box-shadow: 0 0 25px rgba(212, 165, 72, 0.4);
}

.service-icon {
    height: 38px; /* Reduzido para ficar elegante dentro do box */
    width: auto;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    filter: brightness(0) contrast(1.2); /* Deixa o ícone escuro no fundo dourado */
    transform: rotate(-10deg);
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 800; /* Mais peso para o título */
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.8px;
    min-height: 2.6em; 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--gold);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
    z-index: 2;
    font-weight: 400;
}

/* Customização das Setas Exclusivas da Estratégia */
.strategy-next,
.strategy-prev {
    color: var(--gold) !important;
    background: rgba(212, 165, 72, 0.1);
    width: 55px !important;
    height: 55px !important;
    border-radius: 50%;
    border: 1px solid rgba(212, 165, 72, 0.4);
    transition: all 0.3s ease;
    z-index: 20;
}

.strategy-next:after,
.strategy-prev:after {
    font-size: 1.1rem !important;
    font-weight: bold;
}

.strategy-next:hover,
.strategy-prev:hover {
    background: var(--gold);
    color: #1a1a1a !important;
    border-color: var(--gold);
}

.strategy-next {
    right: 40px !important;
}

.strategy-prev {
    left: 40px !important;
}

/* Garantia de Independência: Reset para a 3ª seção */
.strategySwiper .swiper-slide {
    display: flex !important;
    justify-content: center !important;
    align-items: stretch !important;
    height: auto !important;
    padding: 12px; /* Reduzido para aproximar os blocos, mantendo o respiro para o hover */
}

/* Rodapé da Seção Estratégia com Botão Lateralizado */
.strategy-footer {
    display: flex;
    justify-content: flex-end;
    padding: 0; /* Removido o padding superior para aproximar dos blocos */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.strategy-cta-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    padding: 10px 0;
}

.strategy-cta-link .arrow {
    background: rgba(212, 165, 72, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.4s ease;
}

.strategy-cta-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.strategy-cta-link:hover {
    color: var(--text-light);
}

.strategy-cta-link:hover .arrow {
    background: var(--gold);
    color: #1a1a1a;
    transform: translateX(5px);
}

.strategy-cta-link:hover::after {
    width: 100%;
}

/* Responsividade do Carrossel */
@media (max-width: 1200px) {
    .strategy-header h2 {
        font-size: 2.2rem;
    }
    
    .strategy-carousel-wrapper {
        padding: 0 20px;
    }

    .strategy-footer {
        padding: 30px 20px 0;
    }
}

@media (max-width: 768px) {
    .strategy-section {
        padding: 60px 5%;
    }

    .strategy-header {
        text-align: center; /* Centralizado conforme solicitado */
        padding: 0;
    }

    .strategy-header h2 {
        font-size: 1.8rem;
    }

    .strategy-header p {
        font-size: 1rem;
        margin: 0 auto; /* Centralizado conforme solicitado */
    }

    .service-card {
        min-height: auto;
        padding: 30px 20px;
    }

    .service-card:hover {
        transform: none !important; /* Desabilita o aumento no mobile para não cortar as bordas */
    }

    .strategy-next,
    .strategy-prev {
        display: none !important; /* Esconde setas no mobile, usa swipe */
    }

    .strategySwiper {
        padding: 20px 5% 40px !important; /* Ajustado para melhor centralização */
    }

    .service-card {
        padding: 40px 25px;
        min-height: auto;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .strategy-footer {
        justify-content: center; /* Centraliza o botão no mobile */
        padding: 0;
        margin-top: 10px;
    }
}

/* ========================================= */
/* SEÇÃO COMO FUNCIONA (SLIDER DE ETAPAS)    */
/* ========================================= */

.how-it-works {
    padding: 100px 0 100px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.how-header {
    text-align: left;
    margin-bottom: 40px;
    padding: 0 8%;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 0;
}

.how-header h2 {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.how-header p {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0;
    line-height: 1.7;
    font-weight: 500;
}

/* Container do Swiper */
.how-swiper-wrapper {
    position: relative;
    width: 100%;
    margin-top: 40px;
}

/* Isolamento: garante que o howSwiper NÃO herda estilos do strategySwiper */
.howSwiper {
    width: 100%;
    overflow: visible !important;
}

.howSwiper .swiper-slide {
    height: auto !important;
}

/* Card sem caixa — Integração Fluida */
.how-step-card {
    background: transparent;
    border: none;
    padding: 40px 8%;
    position: relative;
    min-height: 550px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: flex-start; /* Alinha o topo do texto com o topo da imagem */
    gap: 80px;
    width: 100%;
}

/* Previne que as colunas do grid expandam além do planejado em alguns navegadores */
.how-step-content, .how-step-visual {
    min-width: 0;
}

.how-step-reverse {
    grid-template-columns: 1.2fr 1fr;
}

.how-step-reverse .how-step-content {
    order: 2;
}

.how-step-reverse .how-step-visual {
    order: 1;
    align-items: flex-end; /* Garante que a imagem alinhe para fora e não para o texto */
}

/* Identificador de Etapa Minimalista */
.how-step-number {
    position: absolute;
    left: 4%; /* Aproxima do início do texto */
    top: 50%;
    transform: translateY(-50%);
    font-size: 25rem;
    font-weight: 900;
    color: rgba(212, 165, 72, 0.02); /* Quase invisível, apenas textura */
    pointer-events: none;
    z-index: 1;
    line-height: 1;
}

/* Posiciona o número atrás do texto nas etapas invertidas */
.how-step-reverse .how-step-number {
    left: auto;
    right: 4%;
}

.how-step-content {
    position: relative;
    z-index: 2;
}

/* Badge de Progresso (ex: 01/05) */
.how-step-badge {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.how-step-content h3 {
    font-size: 3rem;
    color: var(--text-light); /* Título em branco para conversar com o METODOLOGIA */
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.how-step-content p {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
    text-align: justify; /* Justifica o texto das etapas */
}

/* Grupo Visual: Imagem + Botão */
.how-step-visual {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.how-step-image {
    width: 110%; /* Avança lateralmente para não ser cortado */
}

.how-step-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.8));
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.how-step-image img:hover {
    transform: scale(1.02) translateY(-10px);
}

/* Botão Sophisticated & Clean (Ghost Style) */
.how-next-btn {
    background: transparent;
    border: 1px solid rgba(212, 165, 72, 0.5);
    color: var(--gold);
    padding: 14px 40px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
}

.how-next-btn:hover {
    background: rgba(212, 165, 72, 0.05);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 165, 72, 0.2);
    transform: translateX(5px);
}

.how-next-btn .arrow {
    transition: transform 0.3s ease;
}

.how-next-btn:hover .arrow {
    transform: translateX(5px);
}



/* Responsividade Slider */
@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0 60px;
    }

    .how-header {
        text-align: left;
        padding: 0 8%;
        margin-bottom: 30px;
    }

    .how-header h2 {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .how-header p {
        font-size: 0.95rem;
        margin: 0;
    }

    .how-step-card {
        display: flex;
        flex-direction: column;
        padding: 30px 8%;
        min-height: auto;
        gap: 25px;
        text-align: left;
    }

    .how-step-reverse {
        /* No mobile, removemos a inversão para manter a ordem lógica Texto -> Imagem */
        display: flex;
        flex-direction: column;
    }

    .how-step-reverse .how-step-content {
        order: 1;
    }

    .how-step-reverse .how-step-visual {
        order: 2;
    }

    .how-step-number {
        font-size: 8rem;
        left: 50%;
        top: 20%;
        transform: translate(-50%, -50%);
        opacity: 0.03; /* Ainda mais sutil no mobile */
    }

    .how-step-content {
        display: grid;
        grid-template-areas: 
            "title badge"
            "text text";
        grid-template-columns: 1fr auto;
        text-align: left;
        gap: 10px;
    }

    .how-step-content h3 {
        grid-area: title;
        font-size: 1.4rem; /* Reduzido um pouco para caber ao lado do badge */
        margin-bottom: 0;
        text-align: left;
    }

    .how-step-badge {
        grid-area: badge;
        font-size: 0.9rem;
        margin-bottom: 0;
        align-self: center;
    }

    .how-step-content p {
        grid-area: text;
        font-size: 1rem;
        text-align: justify;
        margin-top: 15px;
    }

    .how-step-visual {
        align-items: center !important; /* Força centralização de imagem e botão */
        gap: 25px;
    }

    .how-step-image {
        width: 100%;
    }

    .how-step-image img {
        max-width: 100%;
        border-radius: 12px;
    }

    .how-next-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
    }
}

/* ========================================= */
/* SEÇÃO SOLUÇÕES (5ª LAUDA)                 */
/* ========================================= */

.solutions-section {
    padding: 100px 8%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 165, 72, 0.15) 0%, transparent 70%), var(--bg-color);
    position: relative;
    z-index: 10;
}

.solutions-header {
    text-align: center;
    margin-bottom: 60px;
}

.solutions-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-header p {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 165, 72, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-10px);
    background: rgba(212, 165, 72, 0.05);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 165, 72, 0.1);
}

.solution-icon {
    width: 50px;
    height: 50px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 72, 0.1);
    border-radius: 12px;
    padding: 10px;
}

.solution-icon svg {
    width: 100%;
    height: 100%;
}

.solution-text h3 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.solution-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

.solutions-footer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Responsividade Soluções */
@media (max-width: 1200px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 80px 5%;
    }

    .solutions-header h2 {
        font-size: 1.8rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solution-card {
        padding: 30px 20px;
        align-items: center;
        text-align: center;
    }

    .solution-icon {
        margin-bottom: 5px;
    }
}

/* ========================================= */
/* SEÇÃO BENEFÍCIOS (6ª LAUDA) - FLUIDA      */
/* ========================================= */

.benefits-section {
    padding: 120px 8% 100px;
    background: var(--bg-color);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.benefits-header {
    text-align: center; /* Voltando ao centro para consistência com o site */
    margin-bottom: 100px;
}

.benefits-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.benefits-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.benefits-fluid-container {
    display: flex;
    align-items: stretch; /* Estica para que narrativa e imagem tenham a mesma altura */
    justify-content: space-between;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto 80px;
}

/* Narrativa (Lado Esquerdo) */
.benefits-narrative {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribui os itens para preencher a altura da imagem */
    padding: 20px 0;
}

.narrative-item {
    display: flex;
    gap: 30px;
    position: relative;
}

.narrative-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20px;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(212, 165, 72, 0.5);
    z-index: 2;
    transition: transform 0.3s ease;
}

.narrative-item:hover .indicator-dot {
    transform: scale(1.5);
}

.indicator-line {
    flex: 1;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold) 0%, rgba(212, 165, 72, 0.1) 100%);
    margin: 5px 0;
    opacity: 0.3;
}

.narrative-content h4 {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.narrative-item:hover h4 {
    color: #fff;
}

.narrative-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 480px;
}

/* Composição de Imagem (Lado Direito) */
.benefits-image-composition {
    flex: 1.2;
    display: flex;
    justify-content: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-person-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    position: relative;
    z-index: 5;
    border-radius: 40px;
}

/* Detalhes Técnicos */
.tech-lines-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    pointer-events: none;
    z-index: 1;
}

.benefits-action {
    display: flex;
    justify-content: center;
}

/* Responsividade Fluida Otimizada */
@media (max-width: 1200px) {
    .benefits-fluid-container {
        flex-direction: column; /* No tablet, empilhamos para dar fôlego */
        gap: 60px;
        align-items: center;
    }
    
    .benefits-narrative {
        width: 100%;
        max-width: 700px;
        gap: 0; /* Remove gap para usar padding-bottom nos itens */
    }
    
    .benefits-image-composition {
        width: 100%;
        max-width: 500px;
        order: -1; /* Imagem vem antes do texto no mobile para contextualizar */
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 8%;
    }
    
    .benefits-header {
        margin-bottom: 60px;
    }

    .benefits-header h2 {
        font-size: 2rem;
    }

    .benefits-header p {
        font-size: 1rem;
    }

    .narrative-item {
        gap: 20px;
        padding-bottom: 35px;
    }

    .narrative-content h4 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .narrative-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .indicator-dot {
        width: 10px;
        height: 10px;
    }

    /* Ajuste da Imagem no Celular */
    .image-wrapper {
        max-width: 100%;
    }

    .main-person-img {
        border-radius: 30px;
        max-height: 400px;
        object-fit: cover;
    }

    .tech-lines-svg {
        width: 130%;
        height: 130%;
    }
}

/* ========================================= */
/* SEÇÃO CONTATO                             */
/* ========================================= */

.contact-section {
    padding: 100px 8%;
    background: var(--bg-color);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.contact-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.larchert-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 1rem;
    color: var(--text-light);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 165, 72, 0.05);
}

.btn-submit {
    background: var(--gold);
    color: var(--bg-color);
    border: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: #e8b958;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 165, 72, 0.2);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 5%;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
}

/* ========================================= */
/* ESTILOS ESPECÍFICOS DA PÁGINA MADU        */
/* ========================================= */

.madu-container-flex {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.madu-container-flex .left-content,
.madu-container-flex .right-grid {
    flex: 1;
    min-width: 320px;
}

.madu-container-flex .right-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.m-feature-box {
    background: rgba(212,165,72,0.05);
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid rgba(212,165,72,0.2);
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.m-feature-box:hover {
    transform: translateY(-5px);
    background: rgba(212,165,72,0.1);
}

.m-feature-box img {
    width: 45px;
    margin-bottom: 15px;
}

.m-feature-box h4 {
    font-weight: 700;
    color: var(--text-light);
    font-size: 1.05rem;
}

.fluxo-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-bubble {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.step-bubble:hover {
    background: rgba(212, 165, 72, 0.1);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.step-bubble.highlight {
    background: var(--gold);
    color: var(--bg-color);
    border-color: var(--gold);
}

.step-arrow {
    color: var(--gold);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

@media (max-width: 768px) {
    .fluxo-steps {
        flex-direction: column;
        gap: 10px;
    }
    .step-arrow {
        transform: rotate(90deg);
        margin: 5px 0;
    }
    /* Ajuste para impedir que os botões vazem a tela no celular */
    .btn-cta, .btn-transform, .btn-submit, .btn {
        max-width: 90vw !important;
        white-space: normal !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
        display: inline-flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        line-height: 1.4 !important;
        height: auto !important;
        font-size: 0.95rem !important;
    }
}