 /* Reset básico */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Montserrat', sans-serif;
        color: #333;
        background-color: white;
        overflow-x: hidden;
    }

    /* Cores da paleta fornecida */
    :root {
        --color-primary: #d6a092;
        --color-secondary: #c89b7b;
        --color-accent: #ccd5ae;
        --color-dark: #ba8667;
        --color-light: #bbc1a9;
    }

    .mobile {
        display: block;
    }

    @media screen and (max-width: 768px) {
        .mobile {
            display: none;
        }
    }
@media screen and (min-width: 768px) and (max-width: 1300px) {
    .logo {
        position: absolute;
        width: 240px;
        right: 0!important;
        order: 2;
    }

    .conteudo {
        position: relative;
        z-index: 2;
        max-width: 800px!important;
        padding: 60px;
        text-align: left;
        margin-left: 8%;
    }

    .frase-destaque {
        font-family: 'Poppins', sans-serif;
        font-size: 1.5rem!important;
        color: #4d4d4d;
        font-weight: 600;
        white-space: nowrap;
        font-style: italic;
    }
}
@media screen and (min-width: 800px) and (max-width: 1020px) {
    .main-nav  a {
       font-size: 15px!important;
    }
     .logo { 
        position: absolute;
        width: 150px!important;
        left: 0px!important;
        order: 2;
    }
    .conteudo {
    position: relative;
    z-index: 2;
    max-width:700px!important;
    padding: 0px 0px;
    text-align: left;
    margin-left: 8%;
}
 
}

    /* Header Styles */
    header {
        position: absolute;
        background-color: #ffffff00;
        padding: 30px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.0);
        width: 100%;
        top: 0;
        z-index: 1000;
    }
    
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .logo { 
        position: absolute;
        width: 240px;
        right: 150px;
        order: 2;
    }
    
    .social-icons {
        display: flex;
        position: absolute;
        left:150px;
        gap: 15px;
        order: 1;
    }
    
    .social-icons img {
        width: 30px;
        height: 30px;
        transition: transform 0.3s;
    }
    
    .social-icons img:hover {
        transform: scale(1.1);
    }
    
    /* Navigation Styles */
    .main-nav {
        display: flex;
        margin-left: 300px;
        gap: 35px;
        order: 3;
    }
    
    .main-nav a {
        text-decoration: none;
        color: #333;
        font-weight: 600;
        font-size: 16px;
        padding: 5px 0;
        position: relative;
        transition: color 0.3s;
        font-family: 'Poppins', sans-serif;
    }
    
    .main-nav a:hover {
        color: var(--color-dark);
    }
    
    .main-nav a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--color-dark);
        transition: width 0.3s;
    }
    
    .main-nav a:hover::after {
        width: 100%;
    }
    
    /* Hamburger Menu Styles */
    .hamburger {
        display: none;
        cursor: pointer;
        width: 30px;
        height: 25px;
        position: relative;
        z-index: 1001;
        order: 4;
    }
    
    .hamburger span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: #333;
        border-radius: 3px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }
    
    .hamburger span:nth-child(1) {
        top: 0px;
    }
    
    .hamburger span:nth-child(2), .hamburger span:nth-child(3) {
        top: 10px;
    }
    
    .hamburger span:nth-child(4) {
        top: 20px;
    }
    
    .hamburger.open span:nth-child(1) {
        top: 10px;
        width: 0%;
        left: 50%;
    }
    
    .hamburger.open span:nth-child(2) {
        transform: rotate(45deg);
    }
    
    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg);
    }
    
    .hamburger.open span:nth-child(4) {
        top: 10px;
        width: 0%;
        left: 50%;
    }
    
    /* Mobile Menu Styles */
    @media (max-width: 768px) {
        .hamburger {
            display:flex;
            position: absolute;
            right: 40px;
        }
        .main-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: #fff;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: right 0.4s ease-in-out;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 80px 20px 20px;
        }
        
        .main-nav.active {
            right: 0;
        }
        
        .main-nav a {
            font-size: 18px;
            padding: 10px 0;
            width: 100%;
            text-align: center;
        }
        
        .main-nav a::after {
            display: none;
        }
        
        .logo {
            right: 90px;
            margin: 0 auto;
        }
        
        .social-icons {
            display: none;
        }
    }
/* Oculta a imagem em telas maiores (desktop) */
@media screen and (min-width: 768px) {
  #hero22 {
    display: none;
  }
}

/* Exibe a imagem apenas em telas menores (mobile) */
@media screen and (max-width: 767px) {
  #hero22 {
    display: block; /* ou inline, flex, conforme seu layout */
  }
}

@media screen and (max-width: 768px) {
    .imagem-mobile {
        padding-top: 80px;
        margin-bottom: -50px;
        display: block;
        width: 100%;
        max-width: 600px;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        position: relative;
          border-radius: 20px;
          overflow: hidden;
          mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
          -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    }
    
    .hero-agendamento {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 120px;
    }
    
    .conteudo {
        order: 2;
    }
    
    .imagem-mobile {
        order: 1;
    }
}
    /* Overlay when menu is open */
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .overlay.active {
        display: block;
    }

    /* Hero Section - Layout melhorado */
    .hero-agendamento {
        background-image: url('imagem/novafotoaatualizada.png');
        background-size: cover;
        background-position: center;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: flex-end; /* Alinha o conteúdo à direita */
        padding: 0 8%;
        color: white;
        position: relative;
    }

    .hero-agendamento::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0);
        z-index: 0;
    }

    @keyframes fadeInRight {
        0% {
            opacity: 0;
            transform: translateX(30px);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }
.conteudo {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 60px 60px;
    text-align: left;
    margin-left: 8%;
}

.titulo {
    font-size: 3.5rem;
    font-weight: 300;
    font-family: 'League Spartan', sans-serif;
    margin-bottom: 25px;
    line-height: 1.1;
    text-align: left;
}

.titulo-destaque {
    display: block;
    font-weight: 700;
    color: #ba8667;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

.titulo-subtle {
    display: block;
    font-weight: 400;
    color: #333;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.destaque-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.linha-ornamental {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #ba8667, #ccd5ae, #ba8667);
}

.frase-destaque {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: #4d4d4d;
    font-weight: 600;
    white-space: nowrap;
    font-style: italic;
}

.descricao {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    text-align: left;
}

.descricao strong {
    color: #424242;
    font-weight: 600;
}

.garantia-destaque {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #f8f6f0, #fff);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border: 1px solid rgba(186, 134, 103, 0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.icone-sofisticado {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d6a092, #ba8667);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icone-sofisticado i {
    font-size: 1.8rem;
    color: white;
}

.garantia-destaque span {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.5;
}

.contadores {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 40px 30px;
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(204, 213, 174, 0.3);
}

.contador-item {
    text-align: center;
}

.contador-numero {
    font-family: 'League Spartan', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ba8667;
    line-height: 1;
    margin-bottom: 8px;
}

.contador-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.oferta-especial {
    background: linear-gradient(135deg, #ba8667, #d6a092);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.oferta-especial::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1%, transparent 1%);
    background-size: 20px 20px;
    animation: float 20s linear infinite;
}

.oferta-tag {
    font-family: 'League Spartan', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.oferta-especial p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.oferta-especial strong {
    font-size: 1.3rem;
}

#vagas-disponiveis {
    background: rgba(255,255,255,0.3);
    padding: 2px 10px;
    border-radius: 15px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.cta-container {
    text-align: center;
    margin-top: 40px;
}

.btn-agendar {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #bbc1a9, #9aa870);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'League Spartan', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(186, 134, 103, 0.4);
    margin-bottom: 15px;
}

.btn-agendar:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(186, 134, 103, 0.6);
}

.btn-agendar i {
    transition: transform 0.3s ease;
}

.btn-agendar:hover i {
    transform: translateX(5px);
}

.cta-subtext {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #ba8667;
    font-weight: 600;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-20px, -20px) rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}


/* Estilos adicionais para responsividade e menu mobile */

/* Menu Mobile Melhorado */
.main-nav {
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-nav.active {
    right: 0;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
}

.close-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #ba8667;
    cursor: pointer;
    z-index: 1002;
}

/* Ajustes de responsividade para mobile */
@media screen and (max-width: 768px) {
    /* Header Mobile */
    .header-container {
        padding: 0 15px;
        flex-wrap: wrap;
    }
    
    .logo {
        position: absolute;
        width: 180px;
        right: auto;
        left: 20%;
        transform: translateX(-50%);
        order: 1;
    }
    
    .social-icons {
        display: none;
    }
    
    .hamburger {
        right: 20px;
        top: 25px;
    }
    
    /* Hero Section Mobile */
    .hero-agendamento {
        padding: 0px 20px 40px;
        min-height: auto;
        justify-content: center;
        text-align: center;
        background: white;;
    }
    
    .conteudo {
        padding: 30px 20px;
        margin-left: 0;
        text-align: center;
        animation: none;
    }
    
    .titulo {
        font-size: 2.2rem;
        text-align: center;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .titulo-destaque {
        font-size: 2.5rem;
        letter-spacing: 0;
        margin-bottom: 10px;
    }
    
    .titulo-subtle {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }
    
    .destaque-container {
        flex-direction: column;
        gap: 15px;
        margin: 25px 0;
    }
    
    .linha-ornamental {
        width: 100px;
        height: 3px;
        margin: 0 auto;
    }
    
    .frase-destaque {
        font-size: 1.5rem;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }
    
    .descricao {
        font-size: 1rem;
        text-align: center;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .garantia-destaque {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
        margin: 25px 0;
    }
    
    .icone-sofisticado {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .icone-sofisticado i {
        font-size: 1.5rem;
    }
    
    .contadores {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 20px;
        margin: 30px 0;
    }
    
    .contador-numero {
        font-size: 2.5rem;
    }
    
    .contador-label {
        font-size: 0.85rem;
    }
    
    .oferta-especial {
        padding: 20px 15px;
        margin: 25px 0;
    }
    
    .oferta-tag {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .oferta-especial p {
        font-size: 1rem;
    }
    
    .oferta-especial strong {
        font-size: 1.1rem;
    }
    
    .cta-container {
        margin-top: 30px;
    }
    
    .btn-agendar {
        padding: 18px 35px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .cta-subtext {
        font-size: 0.85rem;
    }
    
    /* Menu Mobile Melhorado */
    .close-menu {
        display: block;
    }
    
    .main-nav {
        padding-top: 70px;
        width: 85%;
        max-width: 280px;
    }
    
    .main-nav a {
        width: 100%;
        text-align: center;
        padding: 18px 20px;
        border-bottom: 1px solid rgba(186, 134, 103, 0.1);
        font-size: 1.1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-nav a:last-child {
        border-bottom: none;
    }
}

/* Ajustes para telas muito pequenas (iPhone SE etc) */
@media screen and (max-width: 480px) {
    .titulo {
        font-size: 1.8rem;
    }
    
    .titulo-destaque {
        font-size: 2rem;
    }
    
    .titulo-subtle {
        font-size: 1.2rem;
    }
    
    .frase-destaque {
        font-size: 1.3rem;
    }
    
    .descricao {
        font-size: 0.95rem;
    }
    
    .conteudo {
        padding: 20px 15px;
    }
    
    .btn-agendar {
        padding: 16px 25px;
        font-size: 1rem;
    }
    
    .contador-numero {
        font-size: 2rem;
    }
    
    .logo {
        width: 150px;
    }
    
    .hamburger {
        width: 25px;
        height: 20px;
        top: 20px;
    }
}

/* Melhorias na experiência de toque para mobile */
@media (max-width: 768px) {
    .btn-agendar, .main-nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Garantir que elementos interativos tenham tamanho mínimo de toque */
    .hamburger {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Correção para tablets em modo retrato */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .conteudo {
        margin-left: 5%;
        padding: 40px 30px;
    }
    
    .titulo {
        font-size: 3rem;
    }
    
    .contadores {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Prevenir zoom em inputs no iOS */
@media screen and (max-width: 768px) {
    input, select, textarea {
        font-size: 16px; /* Previne zoom no iOS */
    }
}

  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #0c0c0c;
            color: #ffffff;
            line-height: 1.6;
        }

        .metodo-revolucionario-elaine {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #2d2d2d 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            color: #ffffff;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .metodo-revolucionario-elaine.visible-elaine {
            opacity: 1;
            transform: translateY(0);
        }

        /* Bordas Decorativas */
        .borda-superior-elaine, .borda-inferior-elaine {
            height: 4px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                #ba8667 25%, 
                #d6a092 50%, 
                #ba8667 75%, 
                transparent 100%);
            position: absolute;
            left: 0;
            right: 0;
        }

        .borda-superior-elaine {
            top: 0;
        }

        .borda-inferior-elaine {
            bottom: 0;
        }

        .metodo-container-elaine {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        /* Header */
        .metodo-header-elaine {
            text-align: center;
            margin-bottom: 60px;
        }

        .badge-metodo-elaine {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #ba8667, #d6a092);
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 30px;
            animation: pulse-elaine 2s infinite;
        }

        .titulo-metodo-elaine {
            font-family: 'League Spartan', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #ba8667 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: #ffffff;
        }

        .destaque-gradient-elaine {
            background: linear-gradient(135deg, #ba8667, #d6a092);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: #ba8667;
        }

        .subtitulo-metodo-elaine {
            font-size: 1.2rem;
            color: #e0e0e0;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Layout Principal */
        .metodo-content-elaine {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
            margin-bottom: 80px;
        }

        /* Coluna da Imagem */
        .metodo-visual-elaine {
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }

        /* Desfoque embaixo da imagem */
        .imagem-container-elaine {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            max-width: 500px;
            width: 100%;
            height: 850px;
            mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
        }

        .imagem-doutora-elaine {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .imagem-container-elaine:hover .imagem-doutora-elaine {
            transform: scale(1.05);
        }

        /* Timeline Interativa */
        .timeline-interativa-elaine {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .passo-metodo-elaine {
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
            backdrop-filter: blur(10px);
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.6s ease;
        }

        .passo-metodo-elaine.visible-elaine {
            opacity: 1;
            transform: translateX(0);
        }

        .passo-metodo-elaine.ativo-elaine {
            border-left-color: #ba8667;
            background: rgba(186, 134, 103, 0.1);
        }

        .passo-metodo-elaine:hover {
            background: rgba(255,255,255,0.08);
        }

        .passo-header-elaine {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .passo-numero-elaine {
            background: #ba8667;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .passo-icon-elaine {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #ba8667;
        }

        .passo-metodo-elaine h3 {
            font-size: 1.1rem;
            margin: 0;
            color: #ffffff;
            flex-grow: 1;
        }

        /* Ícone de expansão */
        .passo-toggle-elaine {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            transition: all 0.3s ease;
            color: #ba8667;
            position: relative;
        }

        .passo-toggle-elaine::before, 
        .passo-toggle-elaine::after {
            content: '';
            position: absolute;
            background-color: currentColor;
            transition: all 0.3s ease;
        }

        .passo-toggle-elaine::before {
            width: 12px;
            height: 2px;
        }

        .passo-toggle-elaine::after {
            width: 2px;
            height: 12px;
            transition: transform 0.3s ease;
        }

        .passo-metodo-elaine.ativo-elaine .passo-toggle-elaine::after {
            transform: rotate(90deg);
        }

        .passo-toggle-elaine:hover {
            background: rgba(186, 134, 103, 0.2);
            transform: scale(1.1);
        }

        .passo-content-elaine {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .passo-metodo-elaine.ativo-elaine .passo-content-elaine {
            max-height: 500px;
        }

        .passo-content-elaine p {
            color: #e0e0e0;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .passo-content-elaine ul {
            list-style: none;
            padding: 0;
        }

        .passo-content-elaine li {
            padding: 5px 0;
            color: #e0e0e0;
            position: relative;
            padding-left: 20px;
            font-size: 0.9rem;
        }

        .passo-content-elaine li::before {
            content: "▸";
            color: #ba8667;
            position: absolute;
            left: 0;
        }

        .tecnologias-elaine {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            flex-wrap: wrap;
        }

        .tecnologia-tag-elaine {
            background: rgba(186, 134, 103, 0.2);
            color: #e0a67c;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            border: 1px solid rgba(186, 134, 103, 0.3);
        }

        /* Seção de Planos */
        .planos-section-elaine {
            margin-top: 60px;
        }

        .planos-header-elaine {
            text-align: center;
            margin-bottom: 40px;
        }

        .titulo-persuasao-elaine {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .destaque-persuasao-elaine {
            background: linear-gradient(135deg, #ba8667, #d6a092);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: #ba8667;
        }

        .subtitulo-persuasao-elaine {
            font-size: 1.1rem;
            color: #e0e0e0;
        }

        /* Grid de Planos */
        .planos-grid-elaine {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .plano-card-elaine {
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            padding: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .plano-card-elaine.visible-elaine {
            opacity: 1;
            transform: translateY(0);
        }

        .plano-card-elaine.destaque-elaine {
            background: rgba(186, 134, 103, 0.1);
            border-color: #ba8667;
            transform: scale(1.05) translateY(30px);
        }

        .plano-card-elaine.destaque-elaine.visible-elaine {
            transform: scale(1.05) translateY(0);
        }

        .plano-badge-elaine {
            background: linear-gradient(135deg, #d4af37, #f9d423);
            color: #333;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            display: inline-block;
        }

        .plano-header-elaine {
            text-align: center;
            margin-bottom: 20px;
        }

        .plano-header-elaine h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .plano-preco-elaine {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ba8667;
        }

        .plano-descricao-elaine {
            text-align: center;
            margin-bottom: 20px;
            color: #e0e0e0;
        }

        .plano-beneficios-elaine {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }

        .plano-beneficios-elaine li {
            padding: 8px 0;
            color: #e0e0e0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
        }

        .plano-beneficios-elaine i {
            color: #ba8667;
        }

        .btn-plano-elaine {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #ba8667, #d6a092);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-plano-elaine:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(186, 134, 103, 0.4);
        }

        .btn-plano-elaine.destaque-elaine {
            background: linear-gradient(135deg, #d4af37, #f9d423);
            color: #333;
        }

        /* Informações de Pagamento */
        .info-pagamento-elaine {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .pagamento-item-elaine {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #e0e0e0;
            font-size: 0.9rem;
        }

        .pagamento-item-elaine i {
            color: #ba8667;
            font-size: 1.2rem;
        }

        /* Animações */
        @keyframes pulse-elaine {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Elementos Decorativos */
        .particulas-background-elaine {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(186, 134, 103, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(214, 160, 146, 0.1) 0%, transparent 50%);
            animation: float-elaine 20s ease-in-out infinite;
        }

        @keyframes float-elaine {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Responsividade */
        @media (max-width: 1024px) {
            .planos-grid-elaine {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .plano-card-elaine.destaque-elaine {
                transform: scale(1) translateY(30px);
            }
            
            .plano-card-elaine.destaque-elaine.visible-elaine {
                transform: scale(1) translateY(0);
            }
        }

        @media (max-width: 768px) {
           
            .metodo-content-elaine {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .metodo-visual-elaine {
                order: 1;
            }
            
            .processo-metodo-elaine {
                order: 2;
            }
            
            .planos-section-elaine {
                order: 3;
            }
            
            .titulo-metodo-elaine {
                font-size: 2.2rem;
            }
            
            .titulo-persuasao-elaine {
                font-size: 1.8rem;
            }
            
            .imagem-container-elaine {
                height: 450px;
            }
            
            .info-pagamento-elaine {
                flex-direction: column;
                gap: 20px;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .metodo-container-elaine {
                padding: 0 15px;
            }
            
            .titulo-metodo-elaine {
                font-size: 1.8rem;
            }
            
            .plano-card-elaine {
                padding: 20px;
            }
            
            .plano-preco-elaine {
                font-size: 2rem;
            }
            
            .imagem-container-elaine {
                height: 400px;
            }
        }

/* Ebook */
.book-section {
    background: white;
    padding: 100px 0;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.book-section.book-visible {
    opacity: 1;
    transform: translateY(0);
}

.book-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.book-header-section {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.2s;
}

.book-section.book-visible .book-header-section {
    opacity: 1;
    transform: translateY(0);
}

.book-section-title {
    color: #333;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'League Spartan', sans-serif;
}

.book-highlight {
    color: var(--color-dark);
    position: relative;
}

.book-highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(186, 134, 103, 0.2);
    z-index: -1;
}

.book-section-subtitle {
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.book-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-dark) 0%, var(--color-secondary) 100%);
    margin: 25px auto;
    border-radius: 3px;
}

.book-testimonial-banner {
    background-color: var(--color-dark);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 800px;
    position: relative;
    box-shadow: 0 10px 30px rgba(186, 134, 103, 0.2);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease-out 0.4s;
}

.book-section.book-visible .book-testimonial-banner {
    opacity: 1;
    transform: scale(1);
}

.book-testimonial-banner:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

.book-testimonial-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 10px;
}

.book-testimonial-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.book-testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 5px;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}

.book-rating-stars {
    width: 120px;
    margin-bottom: 15px;
}

.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.book-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(186, 134, 103, 0.1);
    opacity: 0;
    transform: translateY(50px);
}

.book-card-1 {
    transition: all 0.8s ease-out 0.6s;
}

.book-card-2 {
    transition: all 0.8s ease-out 0.8s;
}

.book-section.book-visible .book-card {
    opacity: 1;
    transform: translateY(0);
}

.book-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.book-cover {
    height: 550px;
    overflow: hidden;
    position: relative;
}

.book-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.book-card:hover .book-image {
    transform: scale(1.05);
}

.book-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-dark);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}

.book-bestseller {
    background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-secondary) 100%);
}

.book-new {
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-light) 100%);
    color: #646464;
}

.book-content {
    padding: 25px;
}

.book-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.book-header h3 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
    font-family: 'League Spartan', sans-serif;
}

.book-price-tag {
    background-color: rgba(186, 134, 103, 0.1);
    color: var(--color-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-left: 15px;
    font-family: 'Poppins', sans-serif;
}

.book-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.book-features {
    margin: 20px 0;
    padding: 0;
}

.book-features li {
    color: #555;
    margin-bottom: 12px;
    font-size: 0.9rem;
    list-style: none;
    padding-left: 5px;
    position: relative;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}

.book-feature-icon {
    color: var(--color-dark);
    font-weight: bold;
    margin-right: 8px;
}

.book-value-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    padding: 12px;
    border-radius: 8px;
    margin: 20px 0;
}

.book-value-text {
    font-size: 0.9rem;
    color: #777;
    font-family: 'Montserrat', sans-serif;
}

.book-discount {
    background-color: var(--color-accent);
    color: #333;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.book-buy-btn1 {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary) 100%);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.book-buy-btn1:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(186, 134, 103, 0.3);
}

.book-buy-btn1:active {
    transform: translateY(0);
}

.book-btn-text1 {
    display: block;
    font-size: 1rem;
}

.book-btn-subtext1 {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 3px;
}

.book-bonus-tag {
    font-size: 0.8rem;
    color: var(--color-dark);
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.book-value-proposition {
    margin: 20px 0;
}

.book-value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #555;
    font-family: 'Montserrat', sans-serif;
}

/* Seção de Garantia */
.book-guarantee-section {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 1s;
}

.book-section.book-visible .book-guarantee-section {
    opacity: 1;
    transform: translateY(0);
}

.book-guarantee-card {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(186, 134, 103, 0.1);
}

.book-guarantee-content h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'League Spartan', sans-serif;
}

.book-guarantee-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.book-payment-methods {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(186, 134, 103, 0.1);
}

.book-payment-methods p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.book-payment-icons {
    display: flex;
    gap: 15px;
}

.book-faq-cta {
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
    color: #555;
    font-family: 'Montserrat', sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 1.2s;
}

.book-section.book-visible .book-faq-cta {
    opacity: 1;
    transform: translateY(0);
}

.book-faq-cta a {
    color: var(--color-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed var(--color-dark);
    transition: all 0.3s ease;
}

.book-faq-cta a:hover {
    color: var(--color-secondary);
    border-bottom-color: var(--color-secondary);
}

/* Animações */
.book-pulse-animation {
    animation: book-pulse 2s infinite;
}

@keyframes book-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(186, 134, 103, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(186, 134, 103, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(186, 134, 103, 0);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .book-guarantee-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .book-section-title {
        font-size: 2.5rem;
    }
    
    .book-section-subtitle {
        font-size: 1.1rem;
    }
    
    .book-testimonial-content h2 {
        font-size: 1.5rem;
    }
    
    .book-testimonial-content p {
        font-size: 1rem;
    }
    
    .book-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .book-cover {
        height: 480px;
    }
    
    .book-header {
        flex-direction: column;
    }
    
    .book-price-tag {
        margin-left: 0;
        margin-top: 10px;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .book-section-title {
        font-size: 2rem;
    }
    
    .book-cover {
        height: 480px;
    }
    
    .book-buy-btn {
        padding: 12px;
    }
    
    .book-btn-text {
        font-size: 0.9rem;
    }
}

/* Formulario */
.form-section {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #2d2d2d 100%);
    padding: 4rem 2rem;
    clip-path: ellipse(150% 100% at 50% 0);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-primary) 25%, 
        var(--color-secondary) 50%, 
        var(--color-accent) 75%, 
        transparent 100%);
}

.form-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-accent) 25%, 
        var(--color-secondary) 50%, 
        var(--color-primary) 75%, 
        transparent 100%);
}

.form-container {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.form-texto {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    flex: 1;
    min-width: 300px;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-texto h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.form-texto p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1.5rem;
}

.form-texto strong {
    color: var(--color-primary);
    font-weight: 600;
}

.form-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    letter-spacing: 2px;
    margin-top: 1rem;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(186, 134, 103, 0.3);
}

.form-btn:hover {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(186, 134, 103, 0.4);
}

.form-formulario {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-formulario h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    text-align: center;
}

.form-formulario input,
.form-formulario textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-formulario input::placeholder,
.form-formulario textarea::placeholder {
    color: #b0b0b0;
}

.form-formulario input:focus,
.form-formulario textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(186, 134, 103, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.form-formulario textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    letter-spacing: 3px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
    box-shadow: 0 5px 20px rgba(186, 134, 103, 0.3);
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(186, 134, 103, 0.4);
}

/* Animações de entrada */
@keyframes slideInLeft-form {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight-form {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-texto, .form-formulario {
    opacity: 0;
    transform: translateX(0);
}

.form-texto.visivel-esq-form {
    animation: slideInLeft-form 1s ease forwards;
}

.form-formulario.visivel-dir-form {
    animation: slideInRight-form 1s ease forwards;
}

/* Responsividade */
@media (max-width: 768px) {
    .form-section {
        padding: 3rem 1rem;
    }
        .form-section {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #2d2d2d 100%);
    padding: 4rem 2rem;
    clip-path: ellipse(1250% 100% at 50% 0);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}
    .form-container {
        gap: 2rem;
        flex-direction: column;
    }
    
    .form-texto, .form-formulario {
        min-width: 100%;
        padding: 2rem;
    }
    
    .form-texto h2 {
        font-size: 1.8rem;
    }
    
    .form-formulario h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .form-texto h2 {
        font-size: 1.6rem;
    }
    .form-section {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #2d2d2d 100%);
    padding: 4rem 2rem;
    clip-path: ellipse(1250% 100% at 50% 0);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}
    .form-formulario h2 {
        font-size: 1.6rem;
    }
    
    .form-btn,
    .form-submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .form-texto, .form-formulario {
        padding: 1.5rem;
    }
}


/* Variáveis CSS */
:root {
  --color-primary: #c89b7b;
  --color-secondary: #c89b7b;
  --color-accent: #c89b7b;
  --color-dark: #333333;
  --color-light: #F8F6F0;
  --color-white: #FFFFFF;
  --color-light-gray: #c89b7b;
  --font-heading: 'League Spartan', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
  --radius-lg: 15px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Seção Depoimentos - Cores Claras */
.depoi-section {
    background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 50%, #f0ede5 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.depoi-borda-superior,
.depoi-borda-inferior {
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-primary) 25%, 
        var(--color-secondary) 50%, 
        var(--color-accent) 75%, 
        transparent 100%);
    position: absolute;
    left: 0;
    right: 0;
}

.depoi-borda-superior {
    top: 0;
}

.depoi-borda-inferior {
    bottom: 0;
}

.depoi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header */
.depoi-header {
    text-align: center;
    margin-bottom: 60px;
}

.depoi-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: pulse-depoi 2s infinite;
}

@keyframes pulse-depoi {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.depoi-titulo {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.depoi-destaque {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-primary);
}

.depoi-subtitulo {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: var(--font-body);
}

/* Grid de Depoimentos */
.depoi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.depoi-content {
    padding-right: 30px;
}

.depoi-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.depoi-title span {
    color: var(--color-primary);
    position: relative;
}

.depoi-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(166, 124, 82, 0.2);
    z-index: -1;
}

.depoi-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.depoi-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.depoi-icon {
    width: 50px;
    height: 50px;
    background: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
    border: 2px solid var(--color-primary);
}

.depoi-item:hover .depoi-icon {
    background: var(--color-dark);
    color: var(--color-light);
    transform: scale(1.1) rotate(5deg);
}

.depoi-text {
    font-weight: 600;
    color: var(--color-dark);
}

.depoi-button {
    display: inline-block;
    padding: 18px 35px;
    background: var(--color-dark);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.depoi-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.depoi-button:hover::before {
    left: 100%;
}

.depoi-button:hover {
    background: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Slider de Depoimentos */
.depoi-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    transition: transform 0.5s ease;
}

.depoi-slider:hover {
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg) translateY(-5px);
}

.depoi-slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.depoi-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(0.95);
    display: flex;
    flex-direction: column;
}

.depoi-slide.depoi-active {
    opacity: 1;
    transform: scale(1);
}

.depoi-slide img {
    width: 100%;
    height: 85%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: brightness(1.0) contrast(1.0) saturate(1.1);
}

.depoi-slide.depoi-active img {
    transform: scale(1.05);
}

.depoi-slide-content {
    padding: 20px;
    background: white;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.depoi-slide-content h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-dark);
    text-align: center;
    margin: 0;
}

/* Efeitos especiais para o card */
.depoi-slider::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--color-dark), var(--color-primary), var(--color-dark));
    z-index: -1;
    border-radius: 20px;
    opacity: 0.7;
    filter: blur(20px);
    animation: borderGlow 3s infinite alternate;
}

@keyframes borderGlow {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 0.7;
    }
}

.depoi-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shine 5s infinite;
    z-index: 5;
}

@keyframes shine {
    0% {
        left: -50%;
        top: -50%;
    }
    20% {
        left: 100%;
        top: 100%;
    }
    100% {
        left: 100%;
        top: 100%;
    }
}

/* CTA Section */
.depoi-cta {
    background: linear-gradient(135deg, rgba(186, 134, 103, 0.05), rgba(204, 213, 174, 0.05));
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(186, 134, 103, 0.1);
}

.depoi-cta-content h3 {
    color: var(--color-dark);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.depoi-cta-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-family: var(--font-body);
}

.depoi-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.depoi-cta-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(186, 134, 103, 0.3);
}

.depoi-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(186, 134, 103, 0.4);
}

.depoi-cta-secondary {
    background: white;
    color: var(--color-dark);
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.depoi-cta-secondary:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

/* Responsividade */
@media (max-width: 1024px) {
    .depoi-grid {
        gap: 40px;
    }
    
    .depoi-content {
        padding-right: 0;
    }
    
    .depoi-slider-container {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .depoi-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .depoi-content {
        text-align: center;
    }
    
    .depoi-title {
        font-size: 2.2rem;
    }
    
    .depoi-item {
        justify-content: center;
    }
    
    .depoi-slider-container {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .depoi-section {
        padding: 80px 0;
    }
    
    .depoi-titulo {
        font-size: 2.5rem;
    }
    
    .depoi-title {
        font-size: 2rem;
    }
    
    .depoi-slider-container {
        height: 450px;
    }
    
    .depoi-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .depoi-cta-primary,
    .depoi-cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }
    
    .depoi-cta {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .depoi-titulo {
        font-size: 2rem;
    }
    
    .depoi-title {
        font-size: 1.8rem;
    }
    
    .depoi-slider-container {
        height: 400px;
    }
    
    .depoi-slide img {
        height: 80%;
    }
    
    .depoi-slide-content {
        padding: 15px;
        height: 20%;
    }
    
    .depoi-button {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

/* Estilos para os controles do slider - ADICIONADOS */
.depoi-slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.depoi-slider-prev,
.depoi-slider-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  background: rgba(51, 51, 51, 0.8);
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.depoi-slider-prev:hover,
.depoi-slider-next:hover {
  background: var(--color-primary);
  transform: scale(1.1);
  border-color: var(--color-primary);
}

/* Variáveis CSS */
:root {
  --color-primary: #c89b7b;
  --color-secondary: #c89b7b;
  --color-accent: #c89b7b;
  --color-dark: #333333;
  --color-light: #F8F6F0;
  --color-white: #FFFFFF;
  --color-gray: #666666;
  --color-light-gray: #e0e0e0;
  --font-heading: 'League Spartan', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

/* Footer Section */
.footer-section {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 50%, #000000 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.footer-borda-superior,
.footer-borda-inferior {
  height: 4px;
  background: linear-gradient(90deg, 
      transparent 0%, 
      var(--color-primary) 25%, 
      var(--color-secondary) 50%, 
      var(--color-accent) 75%, 
      transparent 100%);
  position: absolute;
  left: 0;
  right: 0;
}

.footer-borda-superior {
  top: 0;
}

.footer-borda-inferior {
  bottom: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 20px;
  position: relative;
  z-index: 2;
}

/* Conteúdo Principal */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Coluna Sobre */
.footer-about .footer-logo {
  margin-top: -80px;
  max-width: 240px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: var(--color-light-gray);
  line-height: 1.6;
  margin-top: -50px;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(200, 155, 123, 0.3);
}

/* Títulos das Colunas */
.footer-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-white);
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-primary);
}

/* Listas de Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--color-light-gray);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: block;
  padding: 4px 0;
}

.footer-links a:hover {
  color: var(--color-primary);
  transform: translateX(5px);
}

/* Informações de Contato */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-item i {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-light-gray);
  margin-bottom: 4px;
}

.contact-value {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: var(--color-primary);
}

/* CTA Footer */
.footer-cta {
  margin-top: 25px;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
  padding: 14px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(200, 155, 123, 0.3);
  font-size: 0.95rem;
}

.footer-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200, 155, 123, 0.4);
}

/* Divisor */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, 
      transparent 0%, 
      rgba(200, 155, 123, 0.3) 50%, 
      transparent 100%);
  margin: 40px 0 30px;
}

/* Rodapé Inferior */
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright p {
  color: var(--color-light-gray);
  font-size: 0.9rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  color: var(--color-light-gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--color-primary);
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 155, 123, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  border: 1px solid rgba(200, 155, 123, 0.3);
  color: var(--color-light-gray);
  font-size: 0.85rem;
}

.footer-badge i {
  color: var(--color-primary);
}

/* Efeitos Decorativos */
.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(200, 155, 123, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200, 155, 123, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Responsividade */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 40px 20px 20px;
  }
  /* Coluna Sobre */
.footer-about .footer-logo {
  margin-top: -40px;
  max-width: 240px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: var(--color-light-gray);
  line-height: 1.6;
  margin-top: -50px;
  margin-bottom: 25px;
  font-size: 0.95rem;
}
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
    .contact-item {
    flex-direction: column;
    text-align: left;
    gap: 8px;
  }
  
  .contact-item i {
    align-self: left;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 30px 15px 15px;
  }
  
  .footer-content {
    gap: 25px;
  }
  
  .footer-cta-btn {
    width: 100%;
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: left;
    gap: 8px;
  }
  
  .contact-item i {
    align-self: left;
  }
}

/* Animações de Entrada */
.footer-section {
  opacity: 0;
  transform: translateY(30px);
  animation: footerEntrance 0.8s ease-out 0.3s forwards;
}

@keyframes footerEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-col {
  opacity: 0;
  transform: translateY(20px);
  animation: colEntrance 0.6s ease-out forwards;
}

.footer-col:nth-child(1) { animation-delay: 0.5s; }
.footer-col:nth-child(2) { animation-delay: 0.6s; }
.footer-col:nth-child(3) { animation-delay: 0.7s; }
.footer-col:nth-child(4) { animation-delay: 0.8s; }

@keyframes colEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
