/* --- Configuração de Cores e Temas --- */
:root {
    /* --- LIGHT MODE (Padrão) --- */
    
    /* Superfícies */
    --bg-body: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-card: #FFFFFF;
    --bg-header: rgba(255, 255, 255, 0.95);
    
    /* Cores de Fundo Específicas (Rodapé, Newsletter) */
    --bg-dark-surface: #2C3E50; 
    
    /* Textos */
    --text-main: #334155;     /* Slate 700 - Leitura confortável */
    --text-heading: #1e293b;  /* Slate 800 - Títulos fortes */
    --text-muted: #64748b;    /* Slate 500 */
    --text-inverse: #FFFFFF;  /* Texto sobre fundos escuros */

    /* Marca */
    --primary: #D4AF37;       /* Dourado Nobre */
    --primary-hover: #b5952f;
    --primary-glow: rgba(212, 175, 55, 0.3); /* Brilho suave */
    
    --secondary: #2C3E50;     /* Azul Marinho (Brand) */
    --accent: #E8A6A6;        /* Rosa Valentina */

    /* Elementos UI */
    --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
    --border-color: #e2e8f0;
    --gradient-challenge: linear-gradient(135deg, #2C3E50, #1a252f);
}

[data-theme="dark"] {
    /* --- DARK MODE (Otimizado) --- */
    
    /* Superfícies - Usamos tons de Slate (Azul acinzentado) para profundidade */
    --bg-body: #020617;       /* Slate 950 - Fundo profundo (não preto puro) */
    --bg-light: #0f172a;      /* Slate 900 - Seções secundárias */
    --bg-card: #1e293b;       /* Slate 800 - Cartões */
    --bg-header: rgba(2, 6, 23, 0.9); /* Header translúcido escuro */
    
    --bg-dark-surface: #0f172a; /* Mantém escuro */
    
    /* Textos - Contraste suave (evita branco #FFF puro que ofusca) */
    --text-main: #cbd5e1;     /* Slate 300 */
    --text-heading: #f1f5f9;  /* Slate 100 */
    --text-muted: #94a3b8;    /* Slate 400 */
    --text-inverse: #f1f5f9;

    /* Marca */
    --primary: #fbbf24;       /* Amber 400 - Dourado mais luminoso para fundo escuro */
    --primary-hover: #f59e0b;
    --primary-glow: rgba(251, 191, 36, 0.4); /* Brilho neon dourado */
    
    --secondary: #f8fafc;     /* Transforma o azul da marca em Branco/Gelo para bordas/ícones */
    --accent: #f472b6;        /* Rosa mais vibrante */

    /* Elementos UI */
    /* No escuro, sombras somem. Usamos bordas sutis e brilho. */
    --card-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 10px 30px rgba(0,0,0,0.5); 
    --border-color: #334155;  /* Slate 700 */
    --gradient-challenge: linear-gradient(135deg, #1e293b, #0f172a);
}

/* --- Reset & Global --- */
* { margin: 0; padding: 0; box-sizing: border-box; transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; }
html { scroll-behavior: smooth; }

body { 
    font-family: 'Open Sans', sans-serif; 
    background-color: var(--bg-body); 
    color: var(--text-main); 
    line-height: 1.6; 
}

h1, h2, h3, h4 { 
    font-family: 'Montserrat', sans-serif; 
    color: var(--text-heading); 
    font-weight: 700; 
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- Botões --- */
.btn-primary {
    padding: 12px 30px;
    border-radius: 50px;
    background-color: var(--primary);
    color: #1e293b; /* Texto sempre escuro no botão dourado para contraste */
    font-weight: 700;
    box-shadow: 0 4px 15px var(--primary-glow); /* Glow adaptativo */
    display: inline-block;
    border: none;
}
.btn-primary:hover { 
    background-color: var(--primary-hover); 
    transform: translateY(-2px); 
    box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-secondary {
    padding: 10px 25px;
    border: 2px solid var(--secondary);
    border-radius: 50px;
    font-weight: 600;
    color: var(--secondary);
    display: inline-block;
    margin-left: 10px;
    background: transparent;
}
.btn-secondary:hover { 
    background-color: var(--secondary); 
    color: var(--bg-body); 
}

.btn-sm {
    display: block;
    text-align: center;
    background-color: var(--secondary);
    color: var(--bg-body);
    padding: 8px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 15px;
}
.btn-sm:hover { opacity: 0.9; }

/* --- Header --- */
.header { 
    position: fixed; top: 0; width: 100%; 
    background-color: var(--bg-header); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000; 
    padding: 15px 0; 
    border-bottom: 1px solid var(--border-color); 
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--text-heading); }
.logo span { color: var(--primary); }
.nav-controls { display: flex; align-items: center; gap: 20px; }
.nav-list { display: flex; gap: 25px; }
.nav-list a { font-weight: 600; font-size: 0.95rem; color: var(--text-main); }
.nav-list a:hover { color: var(--primary); }
.theme-btn { background: none; border: none; color: var(--text-main); font-size: 1.2rem; cursor: pointer; }
.hamburger { display: none; font-size: 1.5rem; color: var(--text-main); cursor: pointer; }

/* --- Hero --- */
.hero { 
    position: relative; height: 85vh; display: flex; align-items: center; justify-content: center; text-align: center; 
    background: url('/assets/img/index/About.JPG') center/cover; 
}
.hero-overlay { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    /* Gradiente otimizado para não "cortar" no modo escuro */
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, var(--bg-body) 100%); 
    z-index: 1; 
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.badge { background-color: var(--primary); color: #1e293b; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; margin-bottom: 20px; display: inline-block; }
.hero h1 { font-size: 3rem; color: #ffffff; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero p { font-size: 1.2rem; color: #e2e8f0; margin-bottom: 30px; text-shadow: 0 1px 5px rgba(0,0,0,0.5); }

/* --- Flagship Product (Curso Principal) --- */
.flagship-product { padding: 80px 0; background-color: var(--bg-light); }
.flagship-wrapper { 
    display: flex; align-items: center; gap: 50px; 
    background-color: var(--bg-card); 
    padding: 50px; border-radius: 25px; 
    box-shadow: var(--card-shadow); 
    border: 1px solid var(--border-color); 
}
.flagship-content { flex: 1; }
.tag-highlight { color: var(--primary); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; display: block; margin-bottom: 10px; }
.flagship-content h2 { font-size: 2.2rem; margin-bottom: 15px; }
.lead { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; }

.flagship-features { margin-bottom: 30px; }
.flagship-features li { margin-bottom: 10px; font-size: 1rem; color: var(--text-main); }
.flagship-features i { color: var(--primary); margin-right: 10px; width: 20px; }

.pricing-area { margin-bottom: 30px; }
.installments { display: block; font-size: 2rem; font-weight: 700; color: var(--text-heading); }
.cash-price { display: block; font-size: 1rem; color: var(--text-muted); }

.flagship-image { flex: 1; display: flex; justify-content: center; }
.img-placeholder-box { 
    width: 300px; height: 300px; 
    background: linear-gradient(135deg, var(--bg-light), var(--bg-body)); 
    border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; 
    color: var(--text-muted); border: 2px dashed var(--border-color); 
}
.img-placeholder-box i { font-size: 4rem; margin-bottom: 10px; color: var(--primary); }

/* --- Challenge Section (Desafio) --- */
.challenge-section { 
    padding: 60px 0; 
    background: var(--gradient-challenge); /* Gradiente adaptativo */
    color: #fff; 
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.challenge-card { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.challenge-icon { font-size: 3rem; color: var(--primary); background: rgba(255,255,255,0.1); width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.challenge-info h3 { color: #fff; font-size: 1.8rem; margin-bottom: 10px; }
.challenge-info p { max-width: 600px; color: #cbd5e1; }
.tag-challenge { background-color: var(--primary); color: #1e293b; padding: 3px 10px; border-radius: 5px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.challenge-action { text-align: right; min-width: 150px; }
.price-simple { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; color: var(--primary); }
.btn-outline { border: 2px solid #fff; color: #fff; padding: 10px 20px; border-radius: 50px; font-weight: 600; display: inline-block; }
.btn-outline:hover { background-color: #fff; color: #0f172a; }

/* --- Library Section (E-books) --- */
.library-section { padding: 80px 0; background-color: var(--bg-body); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header p { color: var(--text-muted); }

.library-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.ebook-card { 
    background-color: var(--bg-card); 
    border-radius: 15px; 
    overflow: hidden; 
    box-shadow: var(--card-shadow); 
    border: 1px solid var(--border-color); 
    transition: 0.3s; display: flex; flex-direction: column; 
}
.ebook-card:hover { transform: translateY(-5px); border-color: var(--primary); }

.ebook-cover { height: 150px; background-color: var(--bg-light); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 3rem; }
.ebook-details { padding: 20px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.ebook-details h4 { font-size: 1.1rem; margin-bottom: 8px; line-height: 1.3; color: var(--text-heading); }
.ebook-details p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 15px; flex-grow: 1; }

.ebook-price { margin-top: auto; border-top: 1px solid var(--border-color); padding-top: 10px; }
.small-installment { display: block; font-size: 0.85rem; color: var(--text-muted); }
.final-price { display: block; font-size: 1.2rem; font-weight: 700; color: var(--text-heading); }

/* --- About Summary --- */
.about-summary { padding: 60px 0; background-color: var(--bg-light); text-align: center; border-top: 1px solid var(--border-color); }
.about-text { max-width: 700px; margin: 0 auto; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-muted); }

/* --- Footer --- */
.footer { 
    background-color: var(--bg-dark-surface); /* Fundo sempre escuro */
    color: var(--text-inverse); 
    padding: 60px 0 20px; 
    border-top: 1px solid rgba(255,255,255,0.1); 
    text-align: center; font-size: 0.9rem; 
}
.footer p { color: #94a3b8; }
.footer-social { margin-top: 15px; }
.footer-social a { color: #fff; font-size: 1.2rem; margin: 0 10px; opacity: 0.7; }
.footer-social a:hover { opacity: 1; color: var(--primary); }

/* --- Responsive Mobile --- */
@media (max-width: 992px) {
    .flagship-wrapper { flex-direction: column-reverse; text-align: center; }
    .flagship-features { text-align: left; display: inline-block; }
    .challenge-card { flex-direction: column; text-align: center; padding: 20px; }
    .challenge-action { text-align: center; }
}

@media (max-width: 768px) {
    .nav-list { 
        display: none; 
        flex-direction: column; 
        position: absolute; top: 70px; left: 0; width: 100%; 
        background: var(--bg-card); /* Cor do card para o menu mobile no escuro */
        padding: 20px; text-align: center; 
        box-shadow: 0 5px 10px rgba(0,0,0,0.2); 
        border-bottom: 1px solid var(--border-color);
    }
    .nav-list.active { display: flex; }
    .hamburger { display: block; }
    .hero h1 { font-size: 2.2rem; }
    .hero { height: auto; padding: 120px 0 80px; }
    
    .news-form { flex-direction: column; width: 100%; }
    .news-form input { width: 100%; }
    .newsletter-box { padding: 30px 20px; }
}
/* --- VSL Section (Vídeo) --- */
.vsl-section {
    padding: 60px 0;
    background-color: var(--bg-body); /* Integração suave com o fundo */
    border-bottom: 1px solid var(--border-color);
}

.vsl-headline {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.tag-vsl {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.vsl-headline h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-heading);
}

.vsl-headline p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Container do Vídeo (Moldura) */
.video-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card); /* Moldura clara ou escura dependendo do tema */
    padding: 10px; /* Espessura da borda/moldura */
    border-radius: 20px;
    box-shadow: var(--card-shadow); /* Sombra elegante ou brilho no dark mode */
    border: 1px solid var(--border-color);
}

/* Aspect Ratio Trick (Mantém 16:9 sempre) */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px; /* Arredonda o vídeo interno */
    background-color: #000; /* Fundo preto enquanto carrega */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* CTA Abaixo do Vídeo */
.vsl-cta-box {
    text-align: center;
    margin-top: 40px;
}

/* Animação de "Pulso" para chamar atenção no botão */
.btn-pulse {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Ajuste Dark Mode Específico (Opcional, caso queira destaque extra) */
[data-theme="dark"] .video-container {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5); /* Sombra mais profunda */
}

/* Responsivo */
@media (max-width: 768px) {
    .vsl-headline h2 {
        font-size: 1.6rem;
    }
    .video-container {
        padding: 5px;
        border-radius: 10px;
    }
    .video-wrapper {
        border-radius: 8px;
    }
}
/* --- Imagem do Produto Principal (Box 3D) --- */

.product-box-img {
    width: 100%;
    max-width: 480px; /* Tamanho máximo para não estourar na tela */
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15)); /* Sombra realista atrás do PNG */
    transition: transform 0.3s ease;
}

/* Animação de Flutuar (Dá vida ao produto) */
.floating-animate {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px); /* Sobe um pouco */
    }
    100% {
        transform: translateY(0px);
    }
}

/* Ajuste para Dark Mode */
[data-theme="dark"] .product-box-img {
    /* No escuro, a sombra precisa ser mais difusa e clara ou mais forte dependendo do fundo */
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)); 
}

/* Responsivo */
@media (max-width: 992px) {
    .product-box-img {
        max-width: 350px; /* Menor em tablets/celulares */
        margin-top: 30px;
    }
}
/* --- Capa do Desafio (Substituindo o Ícone) --- */

.challenge-cover-wrapper {
    /* Define um tamanho fixo para a área da imagem para não quebrar o layout */
    width: 200px; 
    flex-shrink: 0; /* Impede que a imagem seja esmagada se a tela diminuir */
    display: flex;
    justify-content: center;
    align-items: center;
}

.challenge-book-img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Cantos levemente arredondados */
    
    /* Sombra realista para dar profundidade */
    box-shadow: 10px 10px 30px rgba(0,0,0,0.25);
    
    /* Leve inclinação para dar charme */
    transform: rotate(-3deg); 
    transition: transform 0.3s ease;
}

/* Efeito ao passar o mouse em cima do card */
.challenge-card:hover .challenge-book-img,
.challenge-wrapper:hover .challenge-book-img {
    transform: rotate(0deg) scale(1.05); /* Endireita e aumenta um pouquinho */
}

/* Animação de Flutuar (Opcional - Já definimos antes, mas reforçando) */
.floating-animate {
    animation: float-book 6s ease-in-out infinite;
}

@keyframes float-book {
    0% { transform: translateY(0px) rotate(-3deg); }
    50% { transform: translateY(-10px) rotate(-3deg); } /* Sobe um pouco */
    100% { transform: translateY(0px) rotate(-3deg); }
}

/* --- Ajuste Mobile --- */
@media (max-width: 768px) {
    .challenge-cover-wrapper {
        width: 160px; /* Um pouco menor no celular */
        margin-bottom: 20px; /* Espaço para o texto abaixo */
    }
}
/* --- CSS DO GRID DE PRODUTOS (HOME) --- */

.library-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr)); /* Responsivo: ajusta colunas automaticamente */
    gap: 30px;
    margin-top: 40px;
}

/* O Card em si */
.ebook-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden; /* Garante que nada saia das bordas arredondadas */
    display: flex;
    flex-direction: column; /* Para alinhar o botão no final */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ebook-card:hover {
    transform: translateY(-5px); /* Sobe levemente ao passar o mouse */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary); /* Borda dourada no hover */
}

/* Área da Capa (Imagem) */
.ebook-cover {
    height: 220px; /* Altura fixa para alinhar todos os cards */
    background: var(--bg-section); /* Fundo sutil atrás do livro */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.ebook-cover img {
    height: 100%;       /* Ocupa a altura do container */
    width: auto;        /* Largura proporcional */
    max-width: 100%;
    object-fit: contain; /* Garante que a capa apareça inteira sem cortar */
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2)); /* Sombra realista 3D */
    transition: transform 0.3s ease;
}

/* Efeito ao passar o mouse na imagem */
.ebook-card:hover .ebook-cover img {
    transform: scale(1.05) rotate(-2deg); /* Aumenta e inclina levemente */
}

/* Área de Texto */
.ebook-details {
    padding: 25px;
    flex: 1; /* Faz esta área crescer para ocupar o espaço disponível */
    display: flex;
    flex-direction: column;
}

.ebook-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-heading);
    line-height: 1.3;
    min-height: 3rem; /* Altura mínima para alinhar títulos de tamanhos diferentes */
}

.ebook-details p {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Preço */
.ebook-price {
    margin-top: auto; /* Empurra o preço para o fundo do card */
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.small-installment {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 2px;
}

.final-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-heading);
}

/* Botão "Comprar" */
.btn-sm {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-heading);
    padding: 10px 0;
    border-radius: 50px; /* Botão pílula */
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s;
    text-decoration: none;
}

.btn-sm:hover {
    background: var(--primary);
    color: #fff; /* Texto branco no hover */
    border-color: var(--primary);
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .library-grid {
        grid-template-columns: 1fr; /* Um card por linha no celular */
        gap: 20px;
    }
    
    .ebook-cover {
        height: 200px; /* Um pouco menor no celular */
    }
}

/* --- CORREÇÃO DAS CAPAS NO GRID --- */

/* Ajuste da área da capa para remover o fundo branco e aumentar a imagem */
.ebook-cover {
    height: 300px; /* Aumentei a altura para a capa caber melhor */
    background: transparent; /* REMOVIDO o fundo branco/colorido */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* Removi o padding para a imagem crescer */
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05); /* Uma linha sutil para separar */
}

/* Adiciona um brilho suave atrás da capa para ela não sumir no fundo escuro */
.ebook-cover::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

/* Ajuste da Imagem em si */
.ebook-cover img {
    height: 100%;       
    width: 100%;        
    object-fit: cover; /* MUDANÇA: 'cover' faz a imagem preencher todo o espaço */
    /* Se o 'cover' cortar muito o texto, mude para 'contain' na linha acima */
    
    z-index: 1; /* Garante que a imagem fique acima do brilho */
    transition: transform 0.4s ease;
}

/* Efeito de Zoom ao passar o mouse */
.ebook-card:hover .ebook-cover img {
    transform: scale(1.1); /* Zoom suave */
}

/* Ajuste no texto para ficar mais elegante */
.ebook-details {
    padding: 25px;
    text-align: center; /* Centraliza o texto para combinar */
}

.ebook-details h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    min-height: auto; /* Remove a altura mínima forçada */
}

/* --- Botão Flutuante WhatsApp --- */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999; /* Garante que fique acima de tudo */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    
    /* Animação de Pulso */
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e; /* Verde mais escuro do WhatsApp */
    transform: scale(1.1); /* Aumenta levemente */
    color: #fff;
}

/* Definição da Animação */
@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);
    }
}

/* Ajuste para não atrapalhar no celular */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}