/* --- CONFIGURAÇÃO INICIAL E VARIÁVEIS DE COR --- */
:root {
    /* Paleta de Cores Vest.Rio */
    --roxo: #9200D0;
    --amarelo: #F2C029;
    --laranja: #F2762E;
    --laranja-claro: #F29727;

    /* Cores de base */
    --cor-fundo: #FFFFFF;
    --cor-texto-principal: #333333;
    --cor-texto-claro: #FFFFFF;

    --hall-purple: #9200D0;
    --hall-yellow: #F2C029;
    --hall-text: #1c1c1c;
    --hall-bg: #fdfdfd;
    --hall-card-bg: #ffffff;
}

/* --- RESET BÁSICO E ESTILOS GLOBAIS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cor-fundo);
    color: var(--cor-texto-principal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

main {
    padding: 10px;
    background-image: url(assets/fundo-elements-2.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    main {
        background-image: url(assets/fundo-elements-2-m.webp);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================== */
/* === ESTILOS PARA SEÇÃO HERO === */
/* ============================================== */

.hero-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 20px 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text-wrapper {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.hero-image-wrapper {
    flex: 1;
    max-width: 500px;
    display: block;
}

.hero-avatar-img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 450px;
    margin-left: auto;
    border-radius: 15px;
}

.hero-titulo {
    /* Headline principal em Preto */
    font-size: clamp(1.8rem, 5vw, 3rem); /* Ajustado levemente para o texto mais longo não quebrar mal */
    font-weight: 500;
    color: #000000; /* Cor preta */
    line-height: 1.1;
    margin-bottom: 15px;
    text-align: center;
    text-wrap: balance;
}

.hero-subtitulo {
    /* Subheadline em Roxo e menor que a antiga */
    display: block;
    font-size: clamp(1rem, 2.5vw, 1.4rem); /* Reduzimos o tamanho da fonte */
    font-weight: 500;
    color: #000000; /* Mantém o roxo da paleta original */
    margin-bottom: 15px;
    line-height: 1.4;
    text-align: center;
    
}

.hero-prova-sub {
    /* Prova sub com fonte fina e tamanho bem pequeno */
    font-size: clamp(0.75rem, 1.5vw, 0.95rem); /* Fonte pequena */
    font-weight: 300; /* Fonte bem fina */
    color: #555555; /* Um cinza para não brigar com o roxo e o preto */
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-wrap: balance;
}

.hero-aprovacoes {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--laranja);
    margin: 0;
    text-align: center;
}

.aprovacoes-numero {
    font-weight: 900;
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        padding-top: 50px;
        padding-bottom: 20px;
    }

    .hero-text-wrapper {
        text-align: center;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-image-wrapper {
        display: none;
    }
}

/* ============================================== */
/* === ESTILOS PARA DIVISORES DE ONDA === */
/* ============================================== */

.wave-divider {
    width: 100%;
    line-height: 0;
    direction: ltr; 
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 90px;
}

.wave-bottom {
    transform: rotate(180deg);
}

.wave-roxo .shape-fill {
    fill: var(--roxo);
}

.wave-amarelo .shape-fill {
    fill: var(--amarelo);
}

/* ============================================== */
/* === ESTILOS PARA SEÇÃO DE APRESENTAÇÃO === */
/* ============================================== */

#secao-apresentacao {
    background-color: var(--roxo);
    color: var(--cor-texto-claro);
    text-align: center;
    padding: 50px 20px 50px 20px;
}

.apresentacao-headline {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--cor-fundo);
    text-transform: uppercase;
    max-width: 900px;
    margin: 0 auto 30px auto;
    line-height: 1.2;
}

.plataforma-video-wrapper {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.plataforma-video {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

/* ============================================== */
/* === ESTILOS PARA SEÇÃO DE RECURSOS === */
/* ============================================== */

#secao-recursos {
    background-color: var(--cor-fundo);
    padding: 30px 20px 20px 20px;
}

.recursos-header {
    text-align: center;
    margin: 0 auto 50px auto;
    max-width: 800px;
}

.recursos-header h2 {
    color: var(--roxo);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
}

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.recurso-card {
    background-color: var(--roxo);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.recurso-card:hover {
    transform: translateY(-8px);
    background-color: #5d0085;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.recurso-card i {
    font-size: 50px;
    color: var(--amarelo);
    margin-bottom: 20px;
}

.recurso-card p {
    color: var(--cor-texto-claro);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .recursos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* ============================================== */
/* === ESTILOS PARA SEÇÃO ALFRED === */
/* ============================================== */

.alfred-secao-wrapper {
    padding: 80px 20px 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.alfred-headline {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--roxo);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.alfred-info-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.alfred-text-wrapper {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.alfred-texto-bloco {
    margin-bottom: 30px;
}

.alfred-texto-bloco p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
}

.alfred-texto-bloco .alfred-destaque {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--laranja);
}

.alfred-texto-bloco .alfred-destaque strong {
    font-weight: 900;
}

.alfred-subtitulo {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--roxo);
    margin: 0 0 15px 0;
}

.alfred-caixa-explicativa {
    background-color: var(--roxo);
    color: var(--cor-texto-claro);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.alfred-caixa-explicativa h4 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--amarelo);
    margin-bottom: 15px;
}

.alfred-caixa-explicativa p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: var(--cor-texto-claro);
}

.alfred-caixa-explicativa p:last-child {
    margin-bottom: 0;
}

.alfred-video-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    position: relative;
    width: 300px;
    padding: 20px 0;
    background-color: #333;
    border-radius: 40px;
    box-shadow: 0 0 0 8px #eee,
                0 0 0 10px #333,
                0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.alfred-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

@media (max-width: 992px) {
    .alfred-info-grid {
        flex-direction: column;
    }

    .alfred-text-wrapper {
        max-width: 100%;
        text-align: center;
    }

    .alfred-texto-bloco, .alfred-subtitulo {
        text-align: center;
    }
    
    .alfred-caixa-explicativa {
        text-align: left;
    }

    .alfred-video-container {
        margin-bottom: 30px;
    }
}

@media (max-width: 500px) {
    .phone-frame {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================== */
/* === ESTILOS PARA SEÇÃO DE BÔNUS === */
/* ============================================== */

#secao-bonus {
    background-color: #f7f7f9;
    padding: 80px 20px;
    text-align: center;
}

.bonus-header {
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.bonus-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--roxo);
    line-height: 1.2;
}

.bonus-header h2 strong {
    color: var(--laranja);
}

.bonus-header p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #555;
    margin-top: 15px;
}

.bonus-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-card {
    background-color: var(--cor-fundo);
    border: 3px solid var(--roxo);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-tag {
    background-color: var(--amarelo);
    color: var(--cor-texto-principal);
    font-weight: 800;
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.bonus-card h3 {
    font-size: 1.5rem;
    color: var(--roxo);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bonus-card img {
    width: 250px;
    height: auto;
    margin-bottom: 25px;
    border-radius: 12px;
}

.bonus-card p {
    font-size: 1rem;
    color: #444;
    min-height: 60px;
    margin-bottom: 25px;
}

.bonus-preco-original {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.bonus-preco-hoje {
    font-size: 2rem;
    color: var(--laranja);
    font-weight: 800;
    margin-bottom: 0;
}

.bonus-total-wrapper {
    background-color: var(--roxo);
    color: var(--cor-texto-claro);
    max-width: 600px;
    margin: 60px auto 0 auto;
    padding: 25px 40px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bonus-total-texto {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 600;
    margin: 0;
}

.bonus-total-valor {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--amarelo);
    margin: 0;
    text-wrap: nowrap;
}

/* ============================================== */
/* === ESTILOS PARA SEÇÃO DE DEPOIMENTOS      === */
/* === (Layout Grid Uniforme sem cortes)      === */
/* ============================================== */

#secao-depoimentos {
    background-color: var(--cor-fundo);
    padding: 60px 20px;
    text-align: center;
}

.depoimentos-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.depoimentos-header h2 {
    color: var(--roxo);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
}

#secao-depoimentos .masonry-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas */
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    /* Limpando resquícios do masonry antigo */
    column-count: auto;
}

#secao-depoimentos .masonry-item {
    height: 550px; /* Altura fixa para todos os blocos ficarem iguais */
    background-color: #f5f5f7; /* Cor de fundo (estética de moldura) */
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    
    /* Centraliza a imagem dentro do bloco */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 0;
}

#secao-depoimentos .masonry-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;  
    height: auto; 
    
    /* contain faz a imagem caber inteira sem cortar */
    object-fit: contain; 
    
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

#secao-depoimentos .masonry-item img:hover {
    transform: scale(1.02); /* Efeito suave de zoom ao passar o mouse */
}

/* --- Responsividade Depoimentos --- */
@media (max-width: 992px) {
    #secao-depoimentos .masonry-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas no tablet */
    }
}

@media (max-width: 600px) {
    #secao-depoimentos .masonry-grid {
        grid-template-columns: 1fr; /* 1 coluna no celular */
    }
    #secao-depoimentos .masonry-item {
        height: auto; /* No celular, deixa a altura livre para não ficar muito pequeno */
        min-height: 400px;
    }
}


/* ============================================== */
/* === ESTILOS PARA SEÇÃO DE GARANTIA === */
/* ============================================== */

#secao-garantia {
    background-color: var(--cor-fundo);
    padding: 80px 20px;
    text-align: center;
}

.garantia-header {
    max-width: 900px;
    margin: 0 auto;
}

.garantia-header h2 {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--roxo);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 40px;
    padding: 0 10px;
}

.garantia-header h2 strong {
    color: var(--roxo);
}

.garantia-header img {
    width: 280px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.15));
}

.garantia-header h3 {
    font-size: clamp(1.8rem, 5vw, 2rem);
    font-weight: 900;
    color: var(--laranja);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================== */
/* === ESTILOS PARA SEÇÃO DE OFERTAS === */
/* ============================================== */

#secao-ofertas {
    padding: 10px 20px;
    background-color: var(--amarelo);
}

.ofertas-header {
    text-align: center;
    margin-bottom: 30px;
}

.ofertas-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--roxo);
    font-weight: 700;
}

.ofertas-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 40px;
}

.oferta-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    border: 3px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.oferta-card:hover {
    transform: translateY(-10px);
    border-color: var(--roxo);
}

.oferta-header {
    padding: 20px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    color: var(--cor-texto-claro);
    text-align: center;
}

.oferta-header h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.oferta-header p {
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.oferta-bonus-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.oferta-bonus {
    background-color: var(--roxo);
    border-radius: 10px;
    margin-top: 8px;
    padding: 15px;
    text-align: center;
}

.oferta-bonus span {
    display: block;
    font-weight: 800;
    color: var(--amarelo);
    font-size: 1.1rem;
}

.oferta-bonus p {
    margin: 0;
    font-weight: 500;
    color: var(--cor-texto-claro);
}

.oferta-body {
    padding: 20px 25px;
    background-color: #f7f7f9;
}

.oferta-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.oferta-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: #333;
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 12px;
}

.oferta-features li:last-child {
    border-bottom: none;
}

.oferta-features i {
    color: var(--roxo);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.oferta-footer {
    padding: 30px 25px;
    background-color: #f7f7f9;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.oferta-preco {
    text-align: center;
    margin-bottom: 25px;
}

.oferta-preco .preco-texto-pequeno {
    font-size: 1rem;
    margin-bottom: 2px;
}

.oferta-preco .preco-valor-grande {
    font-size: 3.5rem;
    color: var(--roxo);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.oferta-preco .preco-avista {
    font-size: 1rem;
    color: #555;
}

.btn-oferta {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    background-color: var(--laranja);
    color: var(--cor-texto-claro);
    text-align: center;
    padding: 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-oferta:hover {
    background-color: #d96827;
}

@media (max-width: 992px) {
    #plano-redacao {
        order: -1; 
    }

    .ofertas-grid {
        flex-direction: column;
    }
}

/* ============================================== */
/* === NOVO FAQ INTERATIVO (Estilo Duas Colunas) === */
/* ============================================== */

#secao-faq {
    background-color: var(--cor-fundo);
    padding: 60px 20px;
}

.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.faq-header h2 {
    color: var(--roxo);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.faq-header p {
    font-size: 1.1rem;
    color: var(--cor-texto-principal);
}

.faq-card-body {
    padding: 30px 25px !important; 
    min-height: 250px !important; 
    background-color: #fff;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

#faq-dynamic-answer {
    font-family: 'Consolas', 'Courier New', monospace; /* Fonte estilo máquina de escrever */
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.interactive-faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-start;
}

/* --- Coluna da Esquerda (Lista de Perguntas COM SCROLL) --- */
.faq-questions-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 520px; /* Altura fixa para forçar a rolagem */
    overflow-y: auto;  /* Ativa a rolagem vertical */
    padding-right: 15px; /* Dá um espacinho para a barra não colar nos botões */
}

/* Customização da Barra de Rolagem da Lista */
.faq-questions-column::-webkit-scrollbar {
    width: 6px;
}
.faq-questions-column::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}
.faq-questions-column::-webkit-scrollbar-thumb {
    background: var(--roxo); /* Usando o roxo da sua marca */
    border-radius: 10px;
}

.faq-interactive-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px 25px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cor-texto-principal);
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.faq-interactive-btn:hover {
    border-color: var(--roxo);
    transform: translateX(5px);
}

.faq-interactive-btn i {
    color: #aaa;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Estado Ativo do Botão */
.faq-interactive-btn.active {
    border: 2px solid var(--roxo);
    background-color: rgba(146, 0, 208, 0.05); /* Fundo roxo bem clarinho */
    color: var(--roxo);
    box-shadow: 0 5px 15px rgba(146, 0, 208, 0.1);
}

.faq-interactive-btn.active i {
    color: var(--roxo);
    transform: rotate(90deg); /* Seta aponta pra baixo */
}

/* --- Coluna da Direita (Card Resposta) --- */
.faq-answer-column {
    position: sticky;
    top: 100px; /* Faz o card acompanhar a rolagem */
}

.faq-answer-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* --- NOVO CABEÇALHO DO CARD DE RESPOSTA --- */
.faq-card-header {
    background-color: #fff; /* Fundo branco como no exemplo */
    padding: 20px 25px;
    display: flex;
    align-items: center; /* Alinha avatar e textos no meio */
    gap: 15px;
    border-bottom: 1px solid #eee;
}

.faq-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Deixa a foto redonda */
    background-color: var(--roxo); /* Cor de fundo caso a imagem seja transparente */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.faq-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-header-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.faq-brand-title {
    font-weight: 800; /* Título mais grosso igual ao exemplo */
    font-size: 1.2rem;
    color: #111;
}

.faq-status {
    font-size: 0.9rem;
    color: #b0cc24; /* Aquele verde/amarelado específico do seu print */
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #b0cc24;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.faq-accordion-item {
    width: 100%;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.faq-interactive-btn {
    width: 100%; 
}
.faq-mobile-answer {
    display: none; 
}

/* --- RESPONSIVIDADE DO FAQ (A Mágica do Mobile) --- */
@media (max-width: 992px) {
    .interactive-faq-layout {
        grid-template-columns: 1fr;
    }
    
    /* 1. Oculta o card lateral de digitação no celular */
    .faq-answer-column {
        display: none !important;
    }

    /* 2. Libera a rolagem da coluna de perguntas para a página normal */
    .faq-questions-column {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
        gap: 12px;
    }

    /* 3. Transforma os itens na estética de Cartão Fechado */
    .faq-accordion-item {
        border: 1px solid #e0e0e0;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.02);
        overflow: hidden;
    }

    /* Quando a pergunta recebe o clique, o container inteiro fica Roxo */
    .faq-accordion-item.active {
        background-color: var(--roxo);
        border-color: var(--roxo);
    }

    /* Remove os estilos do botão que vieram do desktop */
    .faq-interactive-btn {
        border: none;
        box-shadow: none;
        background: transparent;
        padding: 18px 20px; 
    }

    .faq-interactive-btn:hover {
        transform: none; /* Tira o efeito do botão "pular" pro lado no mobile */
        border-color: transparent;
    }

    /* Textos e ícones brancos quando a sanfona abre */
    .faq-interactive-btn.active {
        background: transparent;
        color: #fff;
        border: none;
        box-shadow: none;
    }

    .faq-interactive-btn.active i {
        color: #fff;
    }

    /* 4. Mostra a resposta fluindo para baixo de forma suave */
    .faq-accordion-item.active .faq-mobile-answer {
        display: block;
        padding: 0 20px 20px 20px;
        color: rgba(255, 255, 255, 0.95); /* Texto branco para leitura suave no fundo roxo */
        font-size: 1rem;
        line-height: 1.6;
        animation: fadeIn 0.4s ease-in-out forwards;
    }
}


/* ============================================== */
/* === ESTILOS PARA RODAPÉ === */
/* ============================================== */

#secao-footer {
    background-color: var(--cor-fundo);
    padding: 10px 20px;
    text-align: center;
    border-top: 1px solid #e9e9e9;
}

.footer-logo {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
}

.footer-text {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 4px 0;
}

/* ============================================== */
/* === HALL DA FAMA === */
/* ============================================== */

.hall-section {
    padding: 60px 0 80px 0;
    background-color: var(--hall-bg);
    border-top: 1px solid #eee;
    overflow: hidden; 
    font-family: 'Poppins', sans-serif; 
}

.hall-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hall-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--hall-text);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hall-highlight {
    color: var(--hall-purple);
    position: relative;
    display: inline-block;
}

.hall-highlight::after {
    content: '';
    display: block;
    width: 100%;
    height: 8px;
    background-color: var(--hall-yellow);
    opacity: 0.4;
    position: absolute;
    bottom: 2px;
    left: 0;
    z-index: -1;
    border-radius: 4px;
}

.hall-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid de Estatísticas */
.hall-stats-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.hall-stat-card {
    background: var(--hall-card-bg);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px 25px;
    min-width: 140px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hall-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--hall-purple);
}

.hall-year {
    font-size: 0.9rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.hall-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--hall-purple);
    line-height: 1;
}

.hall-label {
    font-size: 0.8rem;
    color: var(--hall-text);
    margin-top: 5px;
}

/* Carrossel Infinito */
.hall-carousel-wrapper {
    position: relative;
    width: 100vw; 
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.hall-track {
    display: flex;
    gap: 20px;
    width: max-content; 
    animation: hallScroll 120s linear infinite;
    padding-left: 20px; 
}


/* Pause na animação ao passar o mouse (APENAS DESKTOP) */
@media (hover: hover) {
    .hall-track:hover {
        animation-play-state: paused;
    }

    .hall-photo-item:hover {
        transform: scale(1.1);
        border-color: var(--hall-yellow);
        z-index: 10;
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }

    .hall-photo-item:hover img {
        transform: scale(1.05); 
    }
}

/* O toque no mobile via JavaScript (active-focus) funciona em todos os dispositivos */
.hall-photo-item.active-focus {
    transform: scale(1.1);
    border-color: var(--hall-yellow);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.hall-photo-item {
    position: relative;
    width: 200px; 
    height: 280px; 
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 3px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hall-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}



@keyframes hallScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .hall-title {
        font-size: 1.6rem;
    }
    .hall-stats-grid {
        gap: 10px;
    }
    .hall-stat-card {
        min-width: 45%; 
        padding: 10px;
    }
    .hall-number {
        font-size: 1.5rem;
    }
    .hall-photo-item {
        width: 150px;
        height: 210px;
    }
}

/* --- Estilos da Seção de Depoimentos (Prints Textuais Antigos - Apresentação) --- */
.print-testimonials-section {
    padding: 5px 0 20px 0;
}

.cta-depoimentos {
    text-align: center;
}

/* Ajuste específico para este título longo ficar bonito - IGUAL AO HERO */
.print-testimonials-section .section-title {
    max-width: 900px;
    margin: 0 auto 50px auto;
    font-size: clamp(1.5rem, 4vw, 2.5rem); /* Mesmo tamanho do span no Hero */
    font-weight: 700;
    line-height: 1.2;
}

/* Forçando sobreposição para garantir que funcionará */
#secao-apresentacao .print-testimonials-section h2.section-title.fade-in-on-scroll {
    font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.print-testimonials-section .highlight-purple {
    color: var(--roxo);
    font-weight: 800;
}

.print-testimonials-section .highlight-yellow {
    color: var(--amarelo);
}

.masonry-grid {
    column-count: 3; 
    column-gap: 20px; 
}

.masonry-item {
    break-inside: avoid; 
    margin-bottom: 20px; 
}

.masonry-item img {
    width: 100%; 
    border-radius: 12px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.masonry-item img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(146, 0, 208, 0.2); 
}

@media (max-width: 992px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .print-testimonials-section .section-title {
        padding: 0 10px;
    }

    .masonry-grid {
        column-count: 1; 
    }
    
    .masonry-item {
        margin-bottom: 25px; 
    }
}

/* --- Selos na Oferta (Alinhados Verticalmente) --- */
.selos-ofertas {
    display: flex;
    flex-direction: column-reverse; /* Agora um embaixo do outro */
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1rem auto;
    max-width: 400px;
}

.selo-oferta {
    text-align: center;
}
  
.selo-oferta img{
    max-width: 80%;
}

/* --- SEÇÃO ALFRED (IA Futurista) --- */
#alfred-section {
    padding: 80px 0;
    border-top: 1px solid #333;
    overflow: hidden; 
}
  
.alfred-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
  
.alfred-text-content {
    text-align: left;
    z-index: 2; 
}
  
.tech-badge {
    display: inline-block;
    background: var(--hall-purple);
    color: var(--amarelo);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--amarelo);
}
  
#alfred-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 30px;
}
  
.highlight-cyan {
    color: var(--color-blue-accent);
    text-shadow: 0 0 20px var(--amarelo); 
}
  
.alfred-title {
    font-size: 2.5rem;
    color: var(--cor-texto-principal);
    margin-bottom: 40px;
    border-left: 4px solid var(--color-blue-accent);
    padding-left: 20px;
}
  
.alfred-title strong {
    font-weight: 800;
    letter-spacing: 2px;
}
  
.alfred-title .subtitle {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--cor-texto-principal);
    margin-top: 5px;
    letter-spacing: normal;
}
  
.alfred-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}
  
.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
  
.feature-icon {
    font-size: 1.8rem;
    color: var(--amarelo);
    background: var(--roxo);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
  
.feature-desc h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}
  
.feature-desc p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}
  
.alfred-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-blue-accent);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: gap 0.3s ease;
}
.alfred-cta:hover {
    gap: 15px;
    text-decoration: underline;
}
  
.alfred-visual-content {
    position: relative;
    width: 100%;
    max-width: 350px; 
    display: flex;
    justify-content: center;
}
  

  

  

  
  
.badge-1 {
    top: 15%;
    left: -40px;
    animation: float 4s ease-in-out infinite;
}
  
.badge-2 {
    bottom: 20%;
    right: -30px;
    animation: float 5s ease-in-out infinite reverse; 
}
  

  

  
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
  
/* O motor da animação de pulsar */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(176, 204, 36, 0.6); }
    70% { box-shadow: 0 0 0 6px rgba(176, 204, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(176, 204, 36, 0); }
}
  
@media (min-width: 992px) {
    .alfred-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
  
    .alfred-text-content {
        flex: 1;
        max-width: 550px;
    }
  
    .alfred-visual-content {
        flex: 1;
        display: flex;
        justify-content: flex-end; 
        padding-right: 20px;
    }
    
    .badge-1 { left: 20px; }
    .badge-2 { right: 20px; }
}

/* --- AJUSTE PARA 2 IMAGENS NO BÔNUS 4 --- */
.bonus-duas-imagens {
    display: flex;
    justify-content: center;
    gap: 15px; 
    width: 100%;
    margin-bottom: 25px; 
}

.bonus-card .bonus-duas-imagens img {
    width: 45%; 
    max-width: 120px; 
    margin-bottom: 0; 
    object-fit: contain; 
}

/* --- CONTAINER VISUAL COM PERSPECTIVA 3D --- */
.alfred-visual-content {
    position: relative;
    width: 100%;
    max-width: 350px; 
    display: flex;
    justify-content: center;
    perspective: 2000px; /* Essencial para o efeito 3D funcionar */
}

/* --- AURA PULSANTE (Substitui a glow-sphere) --- */
.ai-aura {
    position: absolute;
    width: 300px;
    height: 300px;
    /* Usando a sua variável de cor azul/cyan para a aura */
    background: radial-gradient(circle, var(--color-blue-accent) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    animation: pulseAura 4s ease-in-out infinite alternate;
    z-index: 0;
    opacity: 0.3; /* Ajuste a opacidade se quiser mais ou menos brilho */
}

@keyframes pulseAura {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.2; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.5; }
}

/* --- O CELULAR 3D --- */
.phone-case {
    width: 300px;
    height: 600px;
    background-color: #1a1a1a; 
    border-radius: 45px;
    position: relative;
    
    /* Borda dupla para imitar a carcaça de titânio do celular */
    box-shadow: 
      0 0 0 3px #2a2a2a,
      0 0 0 7px #555, 
      25px 25px 50px rgba(0,0,0,0.5),
      inset 0 0 15px rgba(255,255,255,0.1);
    
    transform: rotateY(-20deg) rotateX(10deg);
    transform-style: preserve-3d;
    animation: floatPhone 6s ease-in-out infinite;
    border: 10px solid #0a0a0a; /* Borda preta da tela */
    z-index: 2;
}

/* Ilha Dinâmica */
.dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background-color: #000;
    border-radius: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
}

.camera-lens {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at top left, #444, #050505);
    box-shadow: inset 0 0 2px rgba(255,255,255,0.3);
}

/* Reflexo na tela */
.reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(115deg, rgba(255,255,255,0.15) 0%, transparent 35%, transparent 60%, rgba(255,255,255,0.05) 100%);
    z-index: 5;
    pointer-events: none;
    border-radius: 30px;
}

/* Configuração do Vídeo dentro do celular */
.screen-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 34px;
    background-color: #111;
    position: relative;
    z-index: 1;
}

/* Botões físicos na lateral */
.volume-up, .volume-down, .power-btn {
    position: absolute;
    background-color: #444;
    width: 4px;
    border-radius: 2px 0 0 2px;
    transform: translateZ(-5px); /* Joga o botão para trás na perspectiva 3D */
}

.volume-up { height: 40px; top: 120px; left: -14px; }
.volume-down { height: 40px; top: 170px; left: -14px; }
.power-btn { height: 60px; top: 150px; right: -14px; border-radius: 0 2px 2px 0; }

@keyframes floatPhone {
    0%, 100% { transform: rotateY(-20deg) rotateX(10deg) translateY(0); }
    50% { transform: rotateY(-15deg) rotateX(5deg) translateY(-20px); }
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .alfred-visual-content {
        margin-top: 2rem; /* Dá um respiro caso fique abaixo do texto no mobile */
    }
}

@media (max-width: 500px) {
    .phone-case {
        width: 260px;
        height: 520px;
        margin: 0 auto;
        /* No celular, tiramos um pouco da rotação X para ele não ficar muito deitado */
        transform: rotateY(-10deg) rotateX(0deg);
        animation: floatPhoneMobile 5s ease-in-out infinite;
    }

    .ai-aura {
        width: 250px;
        height: 250px;
    }

    @keyframes floatPhoneMobile {
        0%, 100% { transform: rotateY(-10deg) translateY(0); }
        50% { transform: rotateY(-5deg) translateY(-15px); }
    }
}