/* ======== GLOBAL & ROOT VARIABLES ======== */
:root {
    --cor-de-fundo-base: #121212;
    --cor-de-superficie-base: #1E1E1E;
    --texto-principal-base: #F0F0F0;
    --texto-secundario-sutil-base: #A0A0A0;
    --cor-primaria: #b7ff00; /* Verde Vibrante */
    --acento-secundario: #648b00;
    --destaque-chamada: #d8ff74;
    --cor-de-fundo: var(--cor-de-fundo-base);
    --texto-principal: var(--texto-principal-base);
    --cor-de-superficie: var(--cor-de-superficie-base);
    --cor-de-superficie: var(--cor-de-superficie-base);
    --texto-secundario-sutil: var(--texto-secundario-sutil-base);
    --rgb-cor-primaria: 183, 255, 0;
    --rgb-cor-de-fundo: 18, 18, 18;
    --rgb-texto-principal: 240, 240, 240;
    --blur-heavy: 10px;
    --blur-cards: 8px; 
    --blur-full-width-card: 12px;
    --whatsapp-green: #25D366;
    --check-icon-green: #5ec269; 
    --footer-highlight-color: var(--cor-primaria);
    --mouse-x-card: 50%;
    --mouse-y-card: 50%;
    --card-glow-opacity: 0;
    --mouse-x-button: 50%;
    --mouse-y-button: 0%;
}

/* BASIC RESET & GLOBAL STYLES */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--cor-de-fundo);
    color: var(--texto-principal);
    line-height: 1.6;
    overflow-x: hidden;
}
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.content-section { padding: 60px 0; }
.text-center { text-align: center; }
a { color: var(--cor-primaria); text-decoration: none; transition: color 0.3s ease, text-shadow 0.3s ease; }
a:hover { color: var(--destaque-chamada); text-shadow: 0 0 8px var(--destaque-chamada); }
img { max-width: 100%; height: auto; }
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  font-style: normal;
  font-size: 1em; /* Ajuste conforme necessário */
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}
ul.list-style-none { list-style: none; padding: 0; } /* Utility for new card lists */

/* PRELOADER, SCROLL REVEAL, BACKGROUND SHAPES */
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--cor-de-fundo); z-index: 9999; display: flex; justify-content: center; align-items: center; opacity: 1; transition: opacity 0.5s ease-out, visibility 0s 0.5s linear; }
#preloader.hidden { opacity: 0; visibility: hidden; }
.spinner { width: 60px; height: 60px; border: 5px solid var(--cor-de-superficie); border-top-color: var(--cor-primaria); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.reveal-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); transition-delay: 0.1s; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.background-shapes { position: fixed; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: -1; }
.background-shapes .shape { position: absolute; opacity: 0.4; will-change: transform, border-radius; }
.shape1 { width: 1000px;  height: 1000px; background-color: var(--acento-secundario); filter: blur(340px); animation: morph 45s infinite alternate ease-in-out; }
.shape2 { width: 1000px; height: 1000px; background-color: var(--acento-secundario); filter: blur(340px); animation: morph 60s infinite alternate ease-in-out reverse; }
@keyframes morph { 0% { transform: translate(10vw, 10vh) scale(1) rotate(0deg); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; } 25% { transform: translate(30vw, -20vh) scale(1.2) rotate(45deg); border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%; } 50% { transform: translate(-15vw, 25vh) scale(0.8) rotate(-30deg); border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%; } 75% { transform: translate(20vw, -10vh) scale(1.1) rotate(15deg); border-radius: 30% 70% 40% 60% / 60% 50% 50% 40%; } 100% { transform: translate(10vw, 10vh) scale(1) rotate(0deg); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; } }

/* TOP & BOTTOM BARS */
.top-bar { position: fixed; top: 0; left: 0; width: 100%; background-color: rgba(0, 0, 0, 0.5); backdrop-filter: blur(var(--blur-heavy)); -webkit-backdrop-filter: blur(var(--blur-heavy)); padding: 8px 0; text-align: center; font-size: 14px; z-index: 1000; color: var(--texto-principal-base); }
.top-bar a { color: var(--cor-primaria); font-weight: 600; }
.top-bar a:hover { text-decoration: underline; }
.bottom-bar { position: fixed; bottom: 0; left: 0; width: 100%; background-color: var(--whatsapp-green); padding: 12px 0; text-align: center; z-index: 1000; }
.bottom-bar a { color: var(--cor-de-fundo); font-size: 16px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: opacity 0.3s ease, transform 0.3s ease; }
.bottom-bar a:hover { opacity: 0.85; transform: scale(1.02); text-shadow: none; }
.bottom-bar .material-symbols-outlined { font-size: 24px; }
.spacer { width: 100%;}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 { color: var(--texto-principal); margin-bottom: 0.8em; }
#hero h1, .section-title-main { font-size: 72px; font-weight: 700; line-height: 1.1; text-align: center; margin-bottom: 20px;}
#depoimentos-titulo, #porque-titulo { text-align: center; margin-bottom: 20px;} 
#depoimentos-titulo span, #porque-titulo span { color: var(--cor-primaria); }
h2.section-title { font-size: 48px; font-weight: 700; text-align: center; margin-bottom: 20px; color: var(--texto-principal); }
.section-subtitle, #hero #main-subtitle, #porque-subtitulo, #chamada-final-subtitulo, .faq-main-subtitle { font-size: 20px; font-weight: 400; color: var(--texto-secundario-sutil); text-align: center; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }
#hero #main-subtitle { color: var(--texto-principal); }
.faq-main-subtitle { font-weight: 400; color: var(--texto-principal); margin-bottom: 30px; }
.curso-descricao-paragrafo, .section-subtitle-main, .section-paragraph-emphasis, .investment-paragraph, .chamada-final-paragrafo-grande { font-weight: 600; color: var(--texto-principal); text-align: center; max-width: 800px; margin-left: auto; margin-right: auto; }
.curso-descricao-paragrafo { font-size: 44px; margin-bottom: 40px; line-height: 1.4; }
.section-subtitle-main { font-size: 44px; margin-bottom: 40px; max-width: 800px;} 
.section-paragraph-emphasis { font-size: 30px; margin-bottom: 40px; } 
.investment-paragraph { font-size: 30px; margin-bottom: 40px; }
.chamada-final-paragrafo-grande { font-size: 44px; margin-bottom: 40px; line-height: 1.3; max-width: 900px;}

/* HERO & BUTTONS */
.hero-section { min-height: 80vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding-top: 100px; padding-bottom: 60px; }
.hero-section h1 { margin-bottom: 20px; line-height: 1.2; }
.hero-section h1 span { color: var(--cor-primaria); }
.hero-buttons { margin-top: 30px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn { padding: 15px 30px; border: none; border-radius: 8px; font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.3s ease-in-out; display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; position: relative; overflow: hidden; }
.btn .material-symbols-outlined { font-size: 20px; }
.btn-primary { background-color: var(--cor-primaria); color: var(--cor-de-fundo); box-shadow: 0 4px 15px rgba(var(--rgb-cor-primaria), 0.3); }
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 6px 20px rgba(var(--rgb-cor-primaria), 0.5); }
.btn-secondary { background-color: rgba(var(--rgb-cor-de-fundo), 0.5); backdrop-filter: blur(var(--blur-heavy)); -webkit-backdrop-filter: blur(var(--blur-heavy)); color: var(--texto-principal); border: 2px solid var(--cor-primaria); }
.btn-secondary:hover { background-color: rgba(var(--rgb-cor-primaria), 0.2); transform: translateY(-3px) scale(1.03); box-shadow: 0 0 15px rgba(var(--rgb-cor-primaria), 0.3); }
.btn-large { padding: 18px 36px; font-size: 18px; }
.interactive-button::before { content: ''; position: absolute; top: 0; left: var(--mouse-x-button); width: 0; height: 100%; background-image: linear-gradient( 120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100% ); transform: translateX(-50%) skewX(-25deg); opacity: 0; transition: width 0.6s ease, opacity 0.6s ease; }
.btn-primary:hover::before { width: 150%; opacity: 1; }

/* CARDS (GENERAL & SPECIFIC) */
.card { background-color: rgba(0, 0, 0, 0.7); backdrop-filter: blur(var(--blur-cards)); -webkit-backdrop-filter: blur(var(--blur-cards)); border: 1px solid var(--cor-primaria); border-radius: 12px; padding: 25px; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden; }
.card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 10px 30px rgba(var(--rgb-cor-primaria), 0.35); }
.card::before { content: ""; position: absolute; left: var(--mouse-x-card); top: var(--mouse-y-card); width: 200px; height: 200px; background: radial-gradient(circle closest-side, rgba(var(--rgb-cor-primaria), 0.25), transparent); border-radius: 50%; transform: translate(-50%, -50%); opacity: var(--card-glow-opacity); transition: opacity 0.3s ease; pointer-events: none; z-index: 0; }
.card-grid { display: grid; gap: 30px; }
.four-columns { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.three-columns { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); } /* Applied to .new-investment-info-cards */
.two-columns { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card-icon { font-size: 40px; color: var(--cor-primaria); margin-bottom: 15px; display: block; }
.card-icon.large-icon { font-size: 60px; }
.info-quadrado { text-align: center; padding: 30px 20px; }
.info-quadrado h3 { font-size: 24px; font-weight: 400; margin-bottom: 8px; color: var(--texto-principal); }
.info-quadrado h3 strong.highlight-number, .info-quadrado h3 strong.highlight-text { font-size: 30px; font-weight: 700; color: var(--cor-primaria); display: block; margin-bottom: 5px; }
.info-quadrado p { font-size: 16px; font-weight: 400; color: var(--texto-secundario-sutil); }
.problema-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.problema-card .card-icon { font-size: 48px; margin-bottom: 20px;}
.problema-card h4.problem-title { font-size: 30px; font-weight: 700; color: var(--cor-primaria); margin-bottom: 10px; }
.problema-card p { font-size: 16px; font-weight: 400; color: var(--texto-principal); }
.stats-cards { margin-bottom: 40px; }
.stat-card { text-align: center; padding: 30px; }
.stat-card .card-icon { font-size: 48px; }
.stat-card .stat-metric { font-size: 44px; font-weight: 700; color: var(--cor-primaria); margin-bottom: 5px; }
.stat-card p { font-size: 16px; font-weight: 400; color: var(--texto-principal); }
.depoimento-cards { grid-template-columns: repeat(auto-fit, minmax(calc(50% - 15px), 1fr)); max-width: 1000px; margin-left: auto; margin-right: auto; }
.depoimento-card { padding: 30px; position: relative; }
.depoimento-card .quote-icon { position: absolute; top: 15px; right: 15px; font-size: 80px; color: rgba(var(--rgb-texto-principal), 0.1); z-index: 0; }
.depoimento-card h4.depoimento-nome { font-size: 21px; font-weight: 700; color: var(--cor-primaria); margin-bottom: 5px; position: relative; z-index: 1; }
.depoimento-card .stars { color: var(--cor-primaria); margin-bottom: 15px; position: relative; z-index: 1; }
.depoimento-card .stars .material-symbols-outlined { font-size: 16px; vertical-align: text-bottom; }
.depoimento-card p.depoimento-texto { font-size: 18px; font-weight: 400; color: var(--texto-principal); line-height: 1.7; position: relative; z-index: 1; }

/* PULSING ICON & CURSO IMAGEM */
.pulsing-icon-container { position: relative; width: 170px; height: 170px; margin: 60px auto; display: flex; justify-content: center; align-items: center; }
.pulsing-circle { position: absolute; width: 100%; height: 100%; background-color: var(--cor-primaria); border-radius: 50%; opacity: 0.3; animation: pulse 2s infinite ease-out; z-index: 0; }
.central-icon { position: relative; z-index: 1; width: 120px; height: 120px; fill: var(--texto-principal); }
@keyframes pulse { 0% { transform: scale(0.8); opacity: 0.3; } 50% { transform: scale(1.2); opacity: 0.1; } 100% { transform: scale(0.8); opacity: 0.3; } }
.curso-imagem { margin-bottom: 40px; max-width: 100%; rgba(0,0,0,0.3); }

/* CONTEÚDO CURSO DROPDOWNS & CTA */
.dropdown-container { max-width: 800px; margin: 40px auto 0 auto; }
.dropdown-btn { background-color: var(--cor-de-superficie); color: var(--texto-principal); padding: 18px 25px; width: 100%; text-align: left; border: 1px solid var(--cor-primaria); border-radius: 8px; font-size: 18px; font-weight: 600; cursor: pointer; transition: background-color 0.3s ease, color 0.3s ease; display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.dropdown-btn .material-symbols-outlined { margin-right: 12px; transition: transform 0.3s ease; }
.dropdown-btn .arrow { margin-left: auto; margin-right: 0; }
.dropdown-btn.active .arrow { transform: rotate(180deg); }
.dropdown-btn:hover, .dropdown-btn.active { background-color: var(--cor-primaria); color: var(--cor-de-fundo); }
.dropdown-content {
    padding: 0 20px;
    background-color: rgba(0, 0, 0, 0.3);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.4s, padding 0.4s;
    border-left: 3px solid var(--cor-primaria);
    margin-bottom: 10px;
    border-radius: 0 0 8px 8px;
}

.dropdown-content.active {
    max-height: 1000px; /* Valor grande para garantir espaço */
    opacity: 1;
    overflow: visible;
    padding: 20px;
    transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.4s, padding 0.4s;
}
.dropdown-content ul { list-style: none; padding: 0; }
.dropdown-content ul li { padding: 8px 0; color: var(--texto-secundario-sutil); border-bottom: 1px solid rgba(var(--rgb-texto-principal), 0.1); font-size: 16px; font-weight: 400; }
.dropdown-content ul li:last-child { border-bottom: none; }
.dropdown-content p { color: var(--texto-secundario-sutil); font-size: 16px; font-weight: 400; line-height: 1.7; }
.centered-button-container { text-align: center; margin-top: 40px; }

/* POR QUE ESCOLHER & FAQ */
.beneficios-cards { margin-top: 40px; }
.beneficio-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 30px 20px; }
.beneficio-card .card-icon { font-size: 48px; }
.beneficio-card h4.beneficio-title { font-size: 30px; font-weight: 700; color: var(--cor-primaria); margin-bottom: 15px; }
.beneficio-card p { font-size: 16px; font-weight: 400; color: var(--texto-principal); }
.full-width-card { background-color: rgba(var(--rgb-cor-de-fundo), 0.5); backdrop-filter: blur(var(--blur-full-width-card)); -webkit-backdrop-filter: blur(var(--blur-full-width-card)); min-height: 300px; padding: 40px; display: flex; align-items: center; }
.full-width-card-content { display: flex; align-items: center; justify-content: space-between; gap: 30px; width: 100%; }
.full-width-card .text-content { flex-basis: 70%; }
.full-width-card h2.full-width-card-title { font-size: 60px;  font-weight: 700; color: var(--texto-principal); margin-bottom: 15px; }
.full-width-card h2 .highlight { color: var(--cor-primaria); }
.full-width-card p { font-size: 16px;  font-weight: 400; color: var(--texto-principal); line-height: 1.7; }
.full-width-card .card-icon-large { font-size: 90px; color: var(--texto-principal); flex-shrink: 0; }

/* INVESTIMENTO SECTION & OFERTA CARD */
.investment-section { background-color: rgba(0,0,0,0.9); padding-top: 60px; padding-bottom: 60px; }
.investment-section .investment-title { font-size: 72px; font-weight: 700; color: var(--cor-primaria); text-align: center; margin-bottom: 20px; }
.oferta-card { max-width: 700px; margin: 40px auto 0 auto; background-color: #181515; border-color: var(--cor-primaria); backdrop-filter: none; padding: 0; }
.oferta-header { background-color: rgba(var(--rgb-cor-primaria), 0.5); padding: 15px 25px; text-align: center; border-radius: 11px 11px 0 0; }
.oferta-header p.oferta-limited-text { font-size: 18px; font-weight: 700; color: var(--cor-primaria); text-shadow: 0 0 5px rgba(0,0,0,0.3); margin-bottom: 10px; }
.countdown { font-size: 24px; font-weight: 500; color: var(--texto-principal); }
.oferta-body { padding: 30px; text-align: center; }
.preco-riscado { font-size: 35px; font-weight: 400; color: #777; text-decoration: line-through; margin-bottom: 5px; }
.preco-promocional { font-size: 120px; font-weight: 700; color: var(--cor-primaria); line-height: 1; margin-bottom: 5px; }
.preco-promocional span { display: block; font-size: 16px; font-weight: 600; color: var(--texto-principal); margin-bottom: 8px; }
.parcelamento { font-size: 24px; font-weight: 400; color: var(--texto-principal-base); margin-bottom: 25px; }
.itens-inclusos { list-style: none; padding: 0; margin-bottom: 30px; text-align: left; max-width: 400px; margin-left: auto; margin-right: auto; }
.itens-inclusos li { font-size: 16px; font-weight: 400; color: var(--texto-principal); margin-bottom: 10px; display: flex; align-items: center; }
.check-icon { color: var(--check-icon-green); margin-right: 10px; font-size: 24px; }
.btn-oferta { width: 100%; max-width: 450px; padding: 20px; font-size: 20px; margin-bottom: 25px; }
.payment-icons { margin-bottom: 15px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.payment-icons span { background-color: #6b5e5e; color: var(--texto-principal-base); padding: 5px 15px; border-radius: 4px; font-size: 14px; font-weight: 400; }
.seguranca-garantia-oferta p { font-size: 14px; font-weight: 400; color: var(--texto-secundario-sutil); display: flex; align-items: center; justify-content: center; gap: 5px; margin-bottom: 5px; }
.seguranca-garantia-oferta .material-symbols-outlined { font-size: 18px; color: var(--check-icon-green); }

/* ########## NOVOS CARDS APÓS INVESTIMENTO (ITEM 6.7) ########## */
.new-investment-info-cards { margin-top: 40px; /* Adiciona espaçamento após o .oferta-card */}
.incluso-card-novo, .garantia-card-novo, .vem-por-ai-card {
    /* display: flex; flex-direction: column; align-items: center; text-align: center; */
    /* .card já tem padding, pode ser suficiente, mas se precisar de mais, ajuste aqui */
}
.card-top-icon-container {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.card-highlight-title { /* Usado nos títulos dos novos cards */
    font-size: 24px; /* Um pouco menor que .problem-title ou .beneficio-title */
    font-weight: 700; 
    color: var(--cor-primaria);
    margin-bottom: 15px;
    text-align: center;
}
.new-investment-info-cards ul.list-style-none li {
    font-size: 16px;
    font-weight: 400;
    color: var(--texto-principal);
    margin-bottom: 8px;
    text-align: left; /* Lista alinhada à esquerda */
    padding-left: 10px; /* Pequeno recuo se não usar ícones de lista */
}
.new-investment-info-cards .garantia-card-novo p { /* Parágrafo da garantia */
    font-size: 16px;
    font-weight: 400;
    color: var(--texto-principal);
    line-height: 1.7;
    margin-top: 10px;
    text-align: center; /* Parágrafo centralizado */
}
.garantia-icone-pulsar { /* Reutilizado de antes, pode precisar de ajuste de margem se não herdar corretamente */
    text-align: center;
    margin: 15px 0;
}
.garantia-icone-pulsar .material-symbols-outlined { 
    font-size: 120px; 
    color: var(--cor-primaria); 
    animation: pulseStrong 1.5s infinite ease-in-out; 
}
@keyframes pulseStrong { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.7; } }


/* CHAMADA FINAL & FOOTER */
.texto-seguranca-cta { margin-top: 20px; font-size: 10px; font-weight: 400; color: var(--cor-primaria); display: inline-flex; align-items: center; gap: 8px; }
.texto-seguranca-cta .material-symbols-outlined { color: var(--check-icon-green); font-size: 20px; }
.site-footer { background-color: rgba(0,0,0,0.7); padding: 40px 20px; color: var(--texto-principal); font-weight: 400;  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.footer-branding-line { font-size: 18px; font-weight: 600; color: var(--texto-principal); }
.footer-branding-line .footer-highlight { color: var(--footer-highlight-color); }
.footer-copyright-line { font-size: 10px; font-weight: 400; color: var(--texto-secundario-sutil); }
.footer-contact-intro-line { font-size: 16px; font-weight: 400; }
.footer-email-line { font-size: 16px; font-weight: 400; display: inline-flex; align-items: center; gap: 8px; }
.footer-email-line .material-symbols-outlined { color: var(--cor-primaria); font-size: 20px; }
.footer-email-line a { color: var(--texto-principal); }
.footer-email-line a:hover { color: var(--destaque-chamada); }
.footer-security-line { font-size: 10px; font-weight: 400; display: inline-flex; align-items: center; gap: 8px; }
.footer-security-line .material-symbols-outlined { color: var(--check-icon-green); font-size: 16px; }

/* RESPONSIVE */
@media (max-width: 768px) {
    #hero h1, .section-title-main { font-size: 48px; }
    h2.section-title { font-size: 36px; }
    .section-subtitle, #hero #main-subtitle, .faq-main-subtitle { font-size: 18px; }
    .curso-descricao-paragrafo { font-size: 28px; }
    .section-subtitle-main { font-size: 32px; } 
    .section-paragraph-emphasis {font-size: 24px;}
    .investment-paragraph {font-size: 24px;}
    .chamada-final-paragrafo-grande { font-size: 32px; }
    .preco-promocional { font-size: 80px; } 
    .full-width-card h2.full-width-card-title { font-size: 40px;}
    .card-grid.four-columns, .card-grid.three-columns, .card-grid.two-columns, .depoimento-cards { grid-template-columns: 1fr; } /* .three-columns agora se aplica aos new-investment-info-cards também */
    .full-width-card-content { flex-direction: column; text-align: center; }
    .full-width-card .text-content { flex-basis: auto; }
    .full-width-card .card-icon-large { margin-top: 20px; }
    /* Os novos cards (incluso, garantia, vem-por-ai) já devem empilhar por causa do .three-columns */
    .new-investment-info-cards ul.list-style-none li {
        text-align: center; /* Centralizar itens da lista em mobile */
        padding-left: 0;
    }
}

/*
.yellow-theme-active .btn-primary {
    border: 2px solid var(--cor-de-fundo) !important;
    color: var(--cor-de-fundo) !important;
    text-shadow: none !important;
}
.yellow-theme-active .btn-primary .material-symbols-outlined {
    color: var(--cor-de-fundo) !important;
}
*/
.atualizacoes-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: flex-start;
}
.atualizacoes-row .material-symbols-outlined {
    font-size: 32px;
    color: var(--cor-primaria);
}
.card-highlight-title.atualizacoes-titulo {
    font-size: 16.8px; /* 30% menor que 24px */
    font-weight: 700;
    color: var(--cor-primaria);
    margin-bottom: 0;
    text-align: left;
}

/* Adicione ao seu style.css */

/* Balão de conversa fixo e animado para WhatsApp */
.whatsapp-bubble {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) scale(1);
  background: linear-gradient(90deg, #25d366 80%, #b7ff00 100%);
  color: #222;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 18px 32px 18px 24px;
  z-index: 99999;
  display: flex;
  align-items: center;
  min-width: 320px;
  max-width: 96vw;
  animation: bubble-in 1.2s cubic-bezier(.77,0,.18,1.08);
  transition: box-shadow 0.3s, background 0.3s;
}

.whatsapp-bubble a {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  width: 100%;
}

.whatsapp-bubble .robot-icon {
  font-size: 2.3em;
  margin-right: 18px;
  color: #222;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  flex-shrink: 0;
}

.whatsapp-bubble .bubble-text {
  font-size: 1.05em;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  text-shadow: 0 1px 0 #fff8;
}

@keyframes bubble-in {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.7) translateY(60px);
    filter: blur(8px);
  }
  60% {
    opacity: 1;
    transform: translateX(-50%) scale(1.05) translateY(-8px);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(0);
    filter: blur(0);
  }
}

/* Responsivo para telas menores */
@media (max-width: 600px) {
  .whatsapp-bubble {
    padding: 12px 12px 12px 10px;
    min-width: 0;
    font-size: 0.95em;
  }
  .whatsapp-bubble .robot-icon {
    font-size: 1.5em;
    margin-right: 10px;
    padding: 4px;
  }
}

/* Balão de conversa estilo vidro líquido */
.liquid-glass-bubble {
  position: fixed;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 20, 20, 0.88); /* Dark glass */
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  padding: 18px 32px 18px 24px;
  z-index: 99999;
  display: flex;
  align-items: center;
  min-width: 320px;
  max-width: 96vw;
  border: 1.5px solid rgba(255,255,255,0.10);
  color: #fff;
  font-weight: 500;
  font-size: 1.08em;
  opacity: 0.98;
  animation: pulse-bubble 2.2s infinite;
  cursor: pointer;
  transition: box-shadow 0.3s, background 0.3s, opacity 0.3s;
}

.liquid-glass-bubble:hover {
  opacity: 1;
  box-shadow: 0 12px 40px rgba(0,0,0,0.32);
  background: rgba(30,30,30,0.96);
}

.liquid-glass-bubble .robot-icon {
  font-size: 2.2em;
  margin-right: 18px;
  color: #25d366;
  background: #222;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  flex-shrink: 0;
}

.liquid-glass-bubble .bubble-text {
  font-size: 1em;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  text-shadow: 0 2px 8px #000, 0 1px 0 #000, 0 0 2px #000;
  letter-spacing: 0.01em;
}

.liquid-glass-bubble strong {
  color: #25d366 !important;
  text-shadow: 0 2px 8px #000, 0 1px 0 #000;
}

@media (max-width: 600px) {
  .liquid-glass-bubble {
    padding: 12px 12px 12px 10px;
    min-width: 0;
    font-size: 0.95em;
  }
  .liquid-glass-bubble .robot-icon {
    font-size: 1.4em;
    margin-right: 10px;
    padding: 4px;
  }
}