/* Paleta e fontes */
:root {
    --preto: #0a0a0a;
    --dourado: #ffbd59;
    --branco: #f5f5f5;
    --fonte-titulo: 'Montserrat', sans-serif;
    --fonte-texto: 'Montserrat', sans-serif;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--preto);
    color: var(--branco);
    font-family: var(--fonte-texto);
    overflow-x: hidden;
}

/* ========================
   Hero
======================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding: 0 20px;
}

.image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/fundo.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.logo-hero {
    margin-bottom: 1px;
}

.logo-hero img {
    width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    padding-top: 170px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dourado);
}

.hero-subtext {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: var(--branco);
    line-height: 1.6;
}

.btn {
    padding: 15px 30px;
    background-color: var(--dourado);
    color: var(--preto);
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
}

.btn:hover {
    box-shadow: 0 0 20px var(--dourado);
    transform: translateY(-2px);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
    color: var(--dourado);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

/* ========================
   Carrossel
======================== */
.carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--preto);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--dourado);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    color: var(--branco);
}

.carousel-btn.left {
    left: 30px;
}

.carousel-btn.right {
    right: 30px;
}


/* ==========================
   Metodologia
========================== */
.metodologia {
    position: relative;
    width: 100%;
    min-height: 100vh;
    text-align: center;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.metodologia h2 {
    font-family: var(--fonte-titulo);
    color: var(--dourado);
    font-size: 3rem;
    margin-bottom: 10px;
}

.metodologia .subtitle {
    font-family: var(--fonte-texto);
    color: var(--branco);
    font-size: 1.2rem;
    margin-bottom: 60px;
}

/* CARDS NA HORIZONTAL */
.cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    width: 100%;
    max-width: 1300px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--dourado);
    border-radius: 12px;
    padding: 25px;
    width: 280px;
    min-height: 400px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card h3 {
    font-family: var(--fonte-titulo);
    color: var(--dourado);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.card p {
    font-family: var(--fonte-texto);
    color: var(--branco);
    font-size: 1rem;
    line-height: 1.5;
    flex-grow: 1;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--dourado);
}

.metodologia-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.metodologia-btn .btn {
    padding: 15px 35px;
    font-size: 1.2rem;
}

/* ==========================
   Público-Alvo
========================== */
.publico-alvo {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background: url('images/textura.png') no-repeat center center;
    background-size: cover;
}

.publico-alvo-title h2 {
    font-family: var(--fonte-titulo);
    font-size: 3rem;
    color: var(--dourado);
    margin: 0;
    line-height: 1;
}

.publico-alvo-title .alvo {
    background: var(--dourado);
    color: var(--preto);
    display: inline-block;
    padding: 5px 15px;
    margin-top: 10px;
    border-radius: 5px;
}

.publico-alvo-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}

.publico-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--dourado);
    padding: 25px;
    border-radius: 12px;
    width: 350px;
    min-height: 450px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.publico-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 20px;
}

.publico-card h3 {
    font-family: var(--fonte-titulo);
    color: var(--dourado);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.publico-card p {
    font-family: var(--fonte-texto);
    color: var(--branco);
    font-size: 1.1rem;
    line-height: 1.5;
}

.publico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--dourado);
}

/* ==========================
   Como Funciona
========================== */
.como-funciona {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: var(--preto);
    color: var(--branco);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
}

.como-funciona h2 {
    font-family: var(--fonte-titulo);
    color: var(--dourado);
    font-size: 3rem;
    margin-bottom: 20px;
}

.como-funciona .intro {
    font-family: var(--fonte-texto);
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

.steps-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1300px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--dourado);
    border-radius: 12px;
    padding: 25px;
    width: 300px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card h3 {
    font-family: var(--fonte-titulo);
    color: var(--dourado);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-card p {
    font-family: var(--fonte-texto);
    color: var(--branco);
    font-size: 1rem;
    line-height: 1.4;
}

.step-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--dourado);
}

.final-text {
    font-family: var(--fonte-texto);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.como-funciona-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.como-funciona-btn .btn {
    padding: 15px 35px;
    font-size: 1.2rem;
}

/* ==========================
   BENEFÍCIOS - CORRETO E ALINHADO
========================== */
.beneficios {
    width: 100%;
    height: 100vh;
    background: url('images/textura.png') no-repeat center center;
    background-size: cover;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.beneficios-container {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Conteúdo principal */
.beneficios-conteudo {
    text-align: center;
}

/* TÍTULO DOURADO IGUAL AOS OUTROS */
.beneficios-conteudo h2 {
    font-family: var(--fonte-titulo);
    color: var(--dourado);
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.beneficios-conteudo p {
    font-family: var(--fonte-texto);
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--branco);
    max-width: 800px;
    margin: 0 auto 60px auto;
}

/* CARDS - MESMO TAMANHO, ABAIXO DOS TEXTOS */
.beneficios-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 50px auto;
}

.beneficio-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--dourado);
    border-radius: 12px;
    padding: 30px 20px;
    width: 250px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--dourado);
}

.beneficio-card .icon {
    font-size: 2rem;
    color: var(--dourado);
}

.beneficio-card p {
    font-family: var(--fonte-texto);
    color: var(--branco);
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

/* BOTÃO CENTRALIZADO */
.beneficios-btn {
    text-align: center;
    margin-top: 30px;
}

.beneficios-btn .btn {
    padding: 15px 35px;
    font-size: 1.2rem;
    background: var(--dourado);
    color: var(--preto);
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.beneficios-btn .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--dourado);
}

/* ==========================
   MOBILE
========================== */
@media (max-width: 768px) {
    .beneficios {
        height: auto;
        min-height: 100vh;
        padding: 60px 20px;
    }
    
    .beneficios-conteudo h2 {
        font-size: 2.2rem;
    }
    
    .beneficios-conteudo p {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .beneficios-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .beneficio-card {
        width: 90%;
        max-width: 400px;
        height: auto;
        min-height: 120px;
        flex-direction: row;
        text-align: left;
        padding: 20px;
    }
    
    .beneficio-card .icon {
        font-size: 1.8rem;
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .beneficios {
        padding: 50px 15px;
    }
    
    .beneficios-conteudo h2 {
        font-size: 1.8rem;
    }
    
    .beneficio-card {
        padding: 18px;
    }
    
    .beneficio-card .icon {
        font-size: 1.5rem;
        margin-right: 12px;
    }
}
/* ==========================
   Sobre o Hipnólogo
========================== */
/* ==========================
   Sobre o Hipnólogo - IMAGEM INTEIRA
========================== */
.sobre-hipnologo {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

.sobre-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    height: 80vh;
    gap: 60px;
}

.sobre-texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.titulo-sobre {
    font-family: var(--fonte-titulo);
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

.titulo-sobre .sobre-o {
    background: var(--dourado);
    color: var(--preto);
    padding: 5px 15px;
    border-radius: 5px;
    display: inline-block;
}

.titulo-sobre .palestrante {
    color: var(--dourado);
}

.sobre-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--dourado);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.sobre-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--dourado);
}

/* IMAGEM INTEIRA SEM CORTES */
.sobre-foto {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.sobre-foto img {
    width: auto;
    height: 100%;
    max-width: 600px;
    max-height: 700px;
    border-radius: 12px;
    object-fit: contain; /* MUDEI AQUI - MOSTRA IMAGEM INTEIRA */
    object-position: center;
    background: var(--preto); /* Fundo preto para áreas vazias */
}

/* ==========================
   RESPONSIVIDADE SOBRE
========================== */

/* Tablets */
@media (max-width: 1024px) {
    .sobre-container {
        gap: 50px;
        height: 75vh;
    }
    
    .sobre-foto img {
        max-width: 500px;
        max-height: 600px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .sobre-hipnologo {
        height: auto;
        min-height: 100vh;
        padding: 60px 20px;
    }
    
    .sobre-container {
        flex-direction: column;
        gap: 40px;
        height: auto;
    }
    
    .sobre-foto {
        order: -1;
        height: 50vh;
    }
    
    .sobre-foto img {
        width: 90vw;
        max-width: 400px;
        height: auto;
        max-height: 500px;
        object-fit: contain;
    }
    
    .sobre-texto {
        text-align: center;
    }
    
    .titulo-sobre {
        text-align: center;
        font-size: 2.2rem;
    }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
    .sobre-foto {
        height: 40vh;
    }
    
    .sobre-foto img {
        width: 95vw;
        max-width: 350px;
        max-height: 400px;
    }
    
    .titulo-sobre {
        font-size: 1.8rem;
    }
}

/* ==========================
   SEÇÃO DEPOIMENTOS - SÓ VÍDEOS
========================== */

.depoimentos {
    background: var(--preto);
    padding: 80px 20px;
    position: relative;
}

.titulo-depoimentos {
    font-family: var(--fonte-titulo);
    font-size: 3rem;
    color: var(--dourado);
    text-align: center;
    margin-bottom: 15px;
}

.titulo-depoimentos .destaque {
    color: var(--preto);
    background: var(--dourado);
    padding: 5px 15px;
    border-radius: 5px;
}

.subtitulo-depoimentos {
    font-family: var(--fonte-texto);
    font-size: 1.2rem;
    color: var(--branco);
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cards-depoimentos {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.card-depoimento {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--dourado);
    border-radius: 12px;
    padding: 0;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-depoimento:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px var(--dourado);
}

.video-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* REMOVI OS TEXTOS h3 e p */

/* ==========================
   RESPONSIVIDADE DEPOIMENTOS
========================== */

@media (max-width: 1024px) {
    .cards-depoimentos {
        gap: 20px;
    }
    
    .card-depoimento {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .depoimentos {
        padding: 60px 20px;
    }
    
    .titulo-depoimentos {
        font-size: 2.2rem;
    }
    
    .subtitulo-depoimentos {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .cards-depoimentos {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .card-depoimento {
        max-width: 100%;
        width: 90%;
    }
    
    .video-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .depoimentos {
        padding: 50px 15px;
    }
    
    .titulo-depoimentos {
        font-size: 1.8rem;
    }
    
    .subtitulo-depoimentos {
        font-size: 1rem;
    }
    
    .card-depoimento {
        width: 95%;
    }
    
    .video-container {
        height: 200px;
    }
}


/* ==========================
   Frase Impacto
========================== */
.frase-impacto {
    width: 100%;
    min-height: 100vh;
    position: relative;
    background: var(--preto);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
}

.frase-impacto h2 {
    font-family: var(--fonte-titulo);
    font-size: 4rem;
    color: var(--branco);
    margin: 0.5rem 0;
}

.frase-impacto .destaque {
    color: var(--dourado);
    text-shadow: 0 0 15px var(--dourado);
}

.btn-frase {
    padding: 15px 35px;
    font-family: var(--fonte-titulo);
    font-size: 1.2rem;
    color: var(--preto);
    background: var(--dourado);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 40px;
}

.btn-frase:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--dourado);
}

/* ==========================
   Rodapé
========================== */
.rodape {
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-top: 2px solid var(--dourado);
}

.rodape .contatos {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rodape .link-contato {
    font-family: var(--fonte-texto);
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.rodape .link-contato .icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
    opacity: 0.6;
}

.rodape .logo-rodape {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rodape .logo-rodape img {
    width: 250px;
    height: auto;
}

/* ==========================
   RESPONSIVIDADE COMPLETA CORRIGIDA
========================== */

/* Tablets (1024px) */
@media (max-width: 1024px) {
    /* Hero */
    .hero-content h1 { font-size: 2.2rem; }
    .hero-subtext { font-size: 1.1rem; }
    .logo-hero img { width: 300px; }
    
    /* Carrossel */
    .carousel { height: 70vh; }
    .carousel-btn { font-size: 2.5rem; }
    
    /* Cards */
    .cards { gap: 20px; }
    .card { width: 220px; min-height: 320px; }
    .publico-alvo-cards { gap: 20px; }
    .publico-card { width: 300px; min-height: 420px; }
    .steps-cards { gap: 20px; }
    .step-card { width: 280px; min-height: 220px; }
    
    /* Layout */
    .beneficios-container { gap: 30px; }
    .sobre-container { gap: 30px; }
    .cards-depoimentos { gap: 20px; }
    .card-depoimento { width: 320px; }
    
    /* Textos */
    .frase-impacto h2 { font-size: 3rem; }

    .image-bg{
        height: 60%;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    /* === HERO === */
    .hero {
        height: 100vh;
       padding: 100px 20px 30px 20px; /* Aumentei ainda mais o padding-top */
        justify-content: flex-start; /* Alinha no topo */
    }

    .image-bg{
        height: 60%;
    }
    
    .logo-hero {
        margin-bottom: 10px; /* Aumentei o espaço abaixo */
        margin-top: 40px; /* Adicionei espaço acima */
    }
    
    .logo-hero img {
        width: 220px; /* Aumentei a logo */
        max-width: 60vw;
    }
    
    /* Restante do código permanece igual */
    .hero-content h1 {
        font-size: 1.6rem;
        background-color: rgba(0, 0, 0, 0.7);
        padding: 15px 20px;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    
    .hero-subtext {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .btn {
        padding: 16px 35px;
        font-size: 1.1rem;
        max-width: 280px;
        margin: 20px auto;
    }

    .scroll-down {
        bottom: 25px;
        font-size: 2rem;
    }

    /* === CARROSSEL === */
    .carousel {
        height: 50vh;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .carousel::after {
        content: "← Arraste →";
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--dourado);
        font-family: var(--fonte-titulo);
        font-size: 0.8rem;
        background: rgba(0, 0, 0, 0.7);
        padding: 6px 12px;
        border-radius: 20px;
        animation: pulse-swipe 2s infinite;
        z-index: 10;
    }

    /* === LAYOUT - EMPILHAR === */
    .cards, .publico-alvo-cards, .steps-cards, .cards-depoimentos, .beneficios-cards {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .card, .publico-card, .step-card, .card-depoimento {
        width: 90%;
        max-width: 400px;
    }
    
    .card {
        min-height: 280px;
        padding: 25px;
    }
    
    .publico-card {
        min-height: 420px;
    }
    
    .publico-card img {
        height: 180px;
    }
    
    .step-card {
        min-height: 220px;
    }
    
    .beneficio-card {
        flex-direction: row;
        text-align: left;
        min-height: auto;
        padding: 20px;
        align-items: center;
        width: 90%;
        max-width: 400px;
    }
    
    .beneficio-card .icon {
        margin-right: 15px;
        font-size: 1.8rem;
        flex-shrink: 0;
    }
    
    .video-container {
        height: 200px;
    }

    /* === SOBRE === */
    .sobre-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .sobre-texto {
        text-align: center;
        width: 95%;
    }
    
    .titulo-sobre {
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .sobre-foto {
        order: 1;
    }
    
    .sobre-foto img {
        width: 200vw;
        max-width: 700px;
        height: auto;
        padding-right: 100px;
    }

    /* === SEÇÕES === */
    .metodologia, .publico-alvo, .como-funciona, .beneficios, .sobre-hipnologo, .depoimentos {
        min-height: auto;
        padding: 60px 20px;
    }
    
    .frase-impacto {
        min-height: 70vh;
        padding: 60px 20px;
    }
    
    .frase-impacto h2 {
        font-size: 2.5rem;
    }
    
    .btn-frase {
        position: relative;
        margin-top: 40px;
        padding: 16px 35px;
        font-size: 1.2rem;
    }

    /* === RODAPÉ === */
    .rodape {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 30px 20px;
    }
    
    .rodape .contatos {
        position: static;
        flex-direction: column;
        gap: 15px;
        order: 2;
    }
    
    .rodape .logo-rodape img {
        width: 200px;
    }

    /* === BOTÕES === */
    .btn {
        width: 90%;
        max-width: 300px;
        margin: 15px auto;
        display: block;
    }
    
    .metodologia-btn, .como-funciona-btn, .beneficios-btn {
        margin-top: 30px;
    }
}

/* Mobile Pequeno (480px) */
@media (max-width: 480px) {
    /* === HERO === */
    .hero {
        padding: 50px 15px 25px 15px;
    }

    .image-bg{
        height: 60%;
    }
    
    .logo-hero img {
        width: 120px;
    }
    
    .hero-content h1 {
        font-size: 1.4rem;
        padding: 12px 15px;
    }
    
    .hero-subtext {
        font-size: 0.9rem;
    }

    .btn {
        padding: 14px 30px;
        font-size: 1rem;
        max-width: 260px;
    }

    .scroll-down {
        bottom: 20px;
        font-size: 1.8rem;
    }

    /* === CARROSSEL === */
    .carousel {
        height: 40vh;
    }
    
    .carousel::after {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    /* === ELEMENTOS === */
    .card, .publico-card, .step-card, .card-depoimento, .beneficio-card {
        width: 95%;
    }
    
    .publico-card img {
        height: 160px;
    }
    
    .video-container {
        height: 180px;
    }
    
    .sobre-foto img {
        width: 95vw;
        max-width: 350px;
    }
    
    .frase-impacto {
        min-height: 60vh;
        padding: 50px 15px;
    }
    
    .frase-impacto h2 {
        font-size: 2rem;
    }

    /* === TÍTULOS === */
    .metodologia h2, .publico-alvo-title h2, .como-funciona h2, 
    .beneficios-texto h2, .titulo-depoimentos, .titulo-sobre {
        font-size: 1.8rem;
    }
    
    .depoimentos {
        padding: 50px 15px;
    }
    
    .titulo-depoimentos {
        font-size: 1.8rem;
    }
    
    .subtitulo-depoimentos {
        font-size: 0.9rem;
    }
    
    .card-depoimento h3 {
        font-size: 1.1rem;
        margin: 15px 15px 8px 15px;
    }
    
    .card-depoimento p {
        font-size: 0.9rem;
        margin: 0 15px 15px 15px;
    }
}

/* Desktop - Garantir layout horizontal */
@media (min-width: 769px) {
    .carousel-btn {
        display: block !important;
    }
    
    .carousel::after {
        display: none;
    }
    
    .cards {
        display: flex !important;
        flex-direction: row !important;
    }
    
    .publico-alvo-cards {
        display: flex !important;
        flex-direction: row !important;
    }
    
    .steps-cards {
        display: flex !important;
        flex-direction: row !important;
    }
    
    .cards-depoimentos {
        display: flex !important;
        flex-direction: row !important;
    }
    
    .sobre-container {
        display: flex !important;
        flex-direction: row !important;
    }
    
    .beneficios-container {
        display: flex !important;
        flex-direction: row !important;
    }
    
    .beneficios-cards {
        display: flex !important;
        flex-direction: row !important;
    }
}

/* Animações */
@keyframes pulse-swipe {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}