/* --- VARIÁVEIS & RESET --- */
:root {
    --bg-dark: #050507;
    --bg-card: #0F0F13;
    --gold: #F2C94C;
    --gold-gradient: linear-gradient(180deg, #F2C94C 0%, #BF953F 100%);
    --green-cta: #00E346;
    --white: #ffffff;
    --gray-text: #cccccc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; line-height: 1.2; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; position: relative; }

/* --- UTILITÁRIOS --- */
.text-gold { color: var(--gold); }
.text-gradient { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.highlight { border-bottom: 3px solid var(--gold); }

section { padding: 80px 0; border-bottom: 1px solid #111; }

/* --- BOTÕES (CTA) --- */
.cta-container { text-align: center; margin-top: 40px; }

.btn-cta {
    display: inline-block;
    background-color: var(--green-cta);
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(0, 227, 70, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.btn-cta:hover { transform: scale(1.05); box-shadow: 0 0 40px rgba(0, 227, 70, 0.8); background: #fff; }

.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 227, 70, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(0, 227, 70, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 227, 70, 0); }
}

/* --- HERO --- */
.hero {
    padding-top: 30px; /* Mais espaço para o menu fixo */
    padding-bottom: 30px;
    background: radial-gradient(circle at center top, #1a1a20 0%, #050507 70%);
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem); /* Fonte maior e responsiva */
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: #ccc;
    margin: 0 auto 40px auto;
    font-weight: 400;
}

.hero p strong {
    color: #fff;
    font-weight: 700;
}

/* Badge no topo do título */
.hero-badge {
    display: inline-block;
    background: rgba(242, 201, 76, 0.1);
    border: 1px solid var(--gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ícones abaixo do botão */
.hero-security {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
    font-size: 0.85rem;
    color: #666;
    flex-wrap: wrap;
}

.hero-security span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-security i {
    color: var(--gold);
}

/* Responsividade Mobile */
@media (max-width: 600px) {
    .hero-badge { font-size: 0.75rem; padding: 6px 15px; }
    .hero p { font-size: 1rem; padding: 0 10px; }
    .hero-security { gap: 15px; flex-direction: column; align-items: center; }
}

/* --- VSL (VIDEO) --- */
.proof-section {
    background: linear-gradient(to bottom, #050507, #0a0a0e);
    text-align: center;
}

.proof-header {
    margin-bottom: 40px;
}

/* Badge "Gravação de Tela" */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.1);
    color: #ff4757;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ff4757;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff4757;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

.proof-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.proof-header p {
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Container do Vídeo com Glow Dourado */
.video-container {
    max-width: 900px;
    margin: 0 auto 40px auto;
    position: relative;
}

.video-border {
    border: 2px solid #333;
    border-radius: 20px;
    padding: 10px; /* Moldura interna */
    background: #111;
    box-shadow: 0 0 40px rgba(242, 201, 76, 0.15); /* Glow Dourado Sutil */
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.video-border:hover {
    box-shadow: 0 0 60px rgba(242, 201, 76, 0.3);
    border-color: var(--gold);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Ícones abaixo do vídeo */
.video-takeaways {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.takeaway-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.takeaway-item i {
    font-size: 1.2rem;
}

.takeaway-item span {
    color: #ddd;
    font-size: 0.9rem;
}

.takeaway-item strong {
    color: #fff;
}

@media (max-width: 768px) {
    .video-takeaways {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start; /* Alinha à esquerda no mobile */
        max-width: 300px;
        margin: 0 auto 30px auto;
    }
    .takeaway-item {
        width: 100%;
    }
}

/* --- QUEM É (AUTORIDADE) --- */
.bio-wrapper { display: flex; align-items: center; gap: 50px; }
.bio-img { flex: 1; border-radius: 20px; border: 2px solid var(--gold); overflow: hidden; box-shadow: 20px 20px 0 rgba(242, 201, 76, 0.1); }
.bio-img img { width: 100%; display: block; }
.bio-text { flex: 1.2; }
.authority-badges { display: flex; gap: 15px; margin-top: 20px; flex-wrap: wrap; }
.badge { background: #1a1a1a; padding: 10px 20px; border-radius: 5px; border: 1px solid #333; font-size: 0.9rem; color: var(--gold); font-weight: bold; }

/* --- O MÉTODO (NETFLIX) --- */
.method-section {
    background-color: #08080a;
    overflow: hidden;
}

.method-header {
    text-align: center;
    margin-bottom: 60px;
}

.tag-gold {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

.method-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead-text {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box {
    min-width: 50px;
    height: 50px;
    background: rgba(242, 201, 76, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    border: 1px solid rgba(242, 201, 76, 0.3);
}

.feature-item h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.4;
}

/* Netflix Card Styling */
.netflix-card {
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.9)), url('img/npm.png'); /* Substitua pela imagem de capa do curso */
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    height: 450px;
    position: relative;
    border: 2px solid #222;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.netflix-card:hover {
    transform: scale(1.02);
    border-color: var(--gold);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-gold {
    font-size: 4rem;
    color: rgba(255,255,255,0.9);
    filter: drop-shadow(0 0 10px var(--gold));
    cursor: pointer;
    transition: 0.3s;
}

.netflix-card:hover .pulse-gold {
    color: var(--gold);
    transform: scale(1.1);
}

.serie-tag {
    color: #E50914; /* Vermelho Netflix */
    font-weight: 900;
    font-family: 'Bebas Neue', sans-serif; /* Ou Montserrat */
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.netflix-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.meta-info {
    color: #46d369; /* Verde Netflix "Match" */
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.meta-info span:nth-child(2), .meta-info span:nth-child(3) {
    color: #ccc;
    font-weight: 400;
    margin-left: 5px;
}

.netflix-content p {
    color: #ddd;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .method-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .method-visual {
        order: -1; /* Joga o visual para cima no mobile */
    }
    .netflix-card {
        height: 350px;
    }
}

/* --- MÓDULOS --- */
.roadmap-section {
    background-color: #08080a;
    position: relative;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 60px;
}

.roadmap-header p {
    color: #ccc;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Estrutura da Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Linha vertical central */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px; /* Posição da linha no mobile/desktop ajustada */
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), #333);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 100px; /* Espaço para o marcador */
}

.timeline-marker {
    position: absolute;
    left: 50px;
    top: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #111;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--gold);
    z-index: 2;
    box-shadow: 0 0 15px rgba(242, 201, 76, 0.2);
    font-size: 1.2rem;
}

.timeline-content {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #222;
    position: relative;
    transition: transform 0.3s;
}

.timeline-content:hover {
    transform: translateX(10px);
    border-color: var(--gold);
    background: #151515;
}

/* Seta apontando para o marcador */
.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 15px;
    width: 20px;
    height: 20px;
    background: #111;
    transform: rotate(45deg);
    border-left: 1px solid #222;
    border-bottom: 1px solid #222;
}

.timeline-content:hover::before {
    background: #151515;
    border-color: var(--gold);
}

.icon-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.icon-header i {
    font-size: 1.5rem;
}

.icon-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #fff;
}

.badge-new {
    background: var(--green-cta);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 5px;
}

.timeline-content p {
    color: #aaa;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

/* Destaque para o último passo */
.highlight-step .timeline-marker {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 20px var(--gold);
}

.highlight-step .timeline-content {
    border-color: var(--gold);
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    .timeline-marker {
        left: 30px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .timeline-item {
        padding-left: 70px;
    }
    .timeline-content {
        padding: 20px;
    }
    .icon-header h3 {
        font-size: 1.1rem;
    }
}

/* --- DEPOIMENTOS --- */
.testi-card {
    background: #111; padding: 30px; border-radius: 15px; margin: 20px 0;
    border-left: 4px solid var(--gold);
}
.stars { color: var(--gold); margin-bottom: 10px; }

/* CSS EXCLUSIVO DO CARROSSEL */
.testimonials-section {
    background-color: #000; /* Fundo preto puro para destaque */
    padding: 80px 0;
    overflow: hidden; /* Garante que nada saia da tela */
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

/* Degradê nas pontas para suavizar a entrada/saída */
.carousel-wrapper::before { left: 0; background: linear-gradient(to right, #000, transparent); }
.carousel-wrapper::after { right: 0; background: linear-gradient(to left, #000, transparent); }

.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content; /* Permite que os itens fiquem lado a lado infinitamente */
    animation: scroll 40s linear infinite; /* Velocidade da animação */
}

/* Pausa a animação quando o mouse passa por cima */
.carousel-track:hover {
    animation-play-state: paused;
}

.testi-card {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #222;
    border-left: 4px solid var(--gold);
    min-width: 350px; /* Largura fixa para cada card */
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testi-card:hover {
    border-color: var(--gold);
    background: #151515;
    transform: scale(1.02);
}

.stars { color: var(--gold); margin-bottom: 15px; letter-spacing: 2px; }

.testi-card p {
    color: #ccc;
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, #333, #222);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--gold);
    border: 1px solid #444;
}

.user-info strong { color: #fff; display: block; font-size: 1rem; }
.user-info small { color: #666; font-size: 0.8rem; }

/* Animação Keyframes */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Move apenas metade (devido à duplicação no JS) */
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .testi-card {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
    }
    .carousel-track {
        animation: scroll 30s linear infinite; /* Um pouco mais rápido no mobile */
    }
}

/* --- OFERTA --- */
.offer-section {
    background: radial-gradient(circle at center, #151515 0%, #000 100%);
    padding: 100px 0;
    border-top: 1px solid #222;
}

.offer-header {
    text-align: center;
    margin-bottom: 60px;
}

.offer-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Lado Esquerdo: Stack */
.offer-stack {
    flex: 1;
    min-width: 300px;
    background: #0a0a0a;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #222;
}

.offer-stack h3 {
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.stack-list {
    list-style: none;
}

.stack-list li {
    margin-bottom: 15px;
    border-bottom: 1px dashed #222;
    padding-bottom: 15px;
}

.stack-list li:last-child {
    border-bottom: none;
}

.stack-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.item-name i {
    margin-right: 10px;
}

.item-value {
    color: #666;
    font-weight: bold;
}

.total-value {
    margin-top: 20px;
    text-align: right;
    font-size: 0.9rem;
    color: #aaa;
    background: #111;
    padding: 10px;
    border-radius: 5px;
}

/* Lado Direito: Preço Card */
.price-card {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    background: #0f0f0f;
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 40px rgba(242, 201, 76, 0.1);
    transform: scale(1.05); /* Leve destaque */
}

.discount-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-cta);
    color: #000;
    font-weight: 900;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--gold);
    line-height: 1;
    margin: 20px 0 10px 0;
}

.currency {
    font-size: 1.5rem;
    margin-top: 5px;
}

.amount {
    font-size: 4.5rem;
    font-weight: 900;
}

.period {
    align-self: flex-end;
    margin-bottom: 10px;
    margin-left: 5px;
    color: #fff;
    font-size: 1rem;
}

.installments {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
}

.hook-comparison {
    background: rgba(242, 201, 76, 0.05);
    border: 1px dashed var(--gold);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hook-comparison p {
    font-size: 0.9rem;
    color: #ccc;
    text-align: left;
    margin: 0;
}

.security-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.8rem;
    color: #666;
}

@media (max-width: 900px) {
    .offer-wrapper {
        flex-direction: column;
    }
    .price-card {
        transform: scale(1);
        width: 100%;
    }
}

/* --- FAQ --- */
.faq-section {
    background-color: #050507;
}

.faq-wrapper {
    border-top: 1px solid #222;
}

.faq-item {
    border-bottom: 1px solid #222;
    transition: background 0.3s;
}

.faq-item:hover {
    background: #0a0a0e;
}

.faq-item summary {
    padding: 25px 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.faq-item summary::-webkit-details-marker { display: none; }

/* Ícone personalizado do acordeão */
.faq-item summary::after {
    content: '+';
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

details[open] summary::after {
    content: '-';
    transform: rotate(180deg);
}

details[open] summary {
    color: var(--gold);
}

.faq-content {
    padding: 0 20px 30px 20px;
    color: #ccc;
    line-height: 1.6;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Box de Ajuda WhatsApp */
.help-box {
    background: linear-gradient(90deg, #111, #0d0d0d);
    border: 1px solid #333;
    border-left: 4px solid #25D366; /* Verde WhatsApp */
    padding: 30px;
    border-radius: 10px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background-color: #1ebc57;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

@media (max-width: 600px) {
    .help-box {
        flex-direction: column;
        text-align: center;
    }
    .faq-item summary {
        font-size: 1rem;
    }
}
/* --- RESPONSIVO --- */
@media (max-width: 900px) {
    .hero { padding-top: 120px; padding-bottom: 60px; }
    .bio-wrapper { flex-direction: column-reverse; }
    .price-new { font-size: 3.5rem; }
}
footer {
    background-color: #050507;
    padding: 60px 0 30px 0;
    border-top: 1px solid #1a1a1a;
    text-align: center;
    color: #ccc;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
}

/* Ícones Sociais */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    border: 1px solid #222;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(242, 201, 76, 0.4);
    border-color: var(--gold);
}

.footer-divider {
    height: 1px;
    background: #1a1a1a;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.legal-links {
    margin-bottom: 15px;
}

.legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--gold);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #555;
}

/* --- WHATSAPP FLUTUANTE --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Balãozinho (Tooltip) ao lado do WhatsApp */
.whatsapp-float .tooltip {
    position: absolute;
    right: 70px;
    background: #fff;
    color: #000;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Seta do balãozinho */
.whatsapp-float .tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float .tooltip {
        display: none; /* Esconde o texto no mobile para não atrapalhar */
    }
}