/* =============================================
   PASSAPORTE ETEC — Custom Component Styles
   Compartilhado entre todas as paginas do site.
   Carregado via <link rel="stylesheet" href="custom.css">
   ============================================= */

:root {
    --dark-blue: #0a2a66;
    --darker-blue: #051636;
    --gold: #ffc700;
    --light-blue: #38b6ff;
    --white: #ffffff;
    --accent-pink: #ff006b;
    --sticky-cta-height: 80px;
}

@media (min-width: 768px) {
    :root { --sticky-cta-height: 0px; }
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f8fafc;
    color: var(--dark-blue);
}

h1, h2, h3 {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.04em;
}

.bg-primary { background-color: var(--dark-blue); }
.text-primary { color: var(--dark-blue); }
.text-gold { color: var(--gold); }
.bg-primary\/5 { background-color: rgba(10, 42, 102, 0.05); }
.bg-primary\/10 { background-color: rgba(10, 42, 102, 0.10); }
.bg-gold\/10 { background-color: rgba(255, 199, 0, 0.10); }
.bg-gold\/15 { background-color: rgba(255, 199, 0, 0.15); }
.bg-gold\/20 { background-color: rgba(255, 199, 0, 0.20); }
.border-gold { border-color: var(--gold); }
.border-gold\/40 { border-color: rgba(255, 199, 0, 0.40); }
.border-gold\/50 { border-color: rgba(255, 199, 0, 0.50); }
.bg-primary\/70 { background-color: rgba(10, 42, 102, 0.70); }
.border-primary\/30 { border-color: rgba(10, 42, 102, 0.30); }
.from-gold {
    --tw-gradient-from: var(--gold);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 199, 0, 0));
}

/* Valores arbitrários usados no HTML que o Tailwind JIT não extrai (rgba/vírgulas) */
.shadow-\[0_15px_40px_rgba\(255\,0\,107\,0\.3\)\] { box-shadow: 0 15px 40px rgba(255, 0, 107, 0.3); }
.hover\:shadow-\[0_20px_50px_rgba\(255\,0\,107\,0\.5\)\]:hover { box-shadow: 0 20px 50px rgba(255, 0, 107, 0.5); }
.shadow-\[0_-10px_30px_rgba\(0\,0\,0\,0\.15\)\] { box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15); }
.h-\[min\(450px\,70vh\)\] { height: min(450px, 70vh); }

/* CTA Button - Glow Effect Enhancement */
.btn-cta {
    background: linear-gradient(135deg, var(--accent-pink) 0%, #b30047 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}
.btn-cta:hover::before {
    left: 100%;
}
.btn-cta:hover, .btn-cta:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 0, 107, 0.4);
}

/* Navbar Scrolled */
.navbar-scrolled > div {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.05);
}

/* Section Overlays & Gradients */
.section-overlay {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}
@media (min-width: 768px) {
    .section-overlay {
        background-attachment: fixed;
    }
}

.section-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.overlay-hero::before {
    background: linear-gradient(to bottom, rgba(10, 42, 102, 0.92), rgba(5, 22, 54, 0.95));
}
.overlay-problem::before {
    background: linear-gradient(to bottom, rgba(10, 42, 102, 0.95), #020817);
}
.overlay-solution::before {
    background: linear-gradient(to bottom, #020817 0%, rgba(10, 42, 102, 0.85) 40%, rgba(10, 42, 102, 0.95) 100%);
}

.section-content {
    position: relative;
    z-index: 10;
}

/* Bento Cards */
.bento-card {
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(10, 42, 102, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
}
.bento-card:hover {
    border-color: var(--light-blue);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(10, 42, 102, 0.12);
}

/* Testimonial Cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    color: white;
}

/* Pricing Card */
.pricing-card {
    position: relative;
    background: white;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    border: 4px solid var(--gold);
}

/* Urgency Banner Pulse */
@keyframes pulse-banner {
    0%, 100% { background-color: #ff006b; }
    50% { background-color: #d90057; }
}
.urgency-banner {
    animation: pulse-banner 3s infinite;
}

/* Text Gradient (Gold) */
.text-gradient {
    background: linear-gradient(to right, #ffc700, #ffe580);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* FAQ Items */
.faq-item {
    border: 1px solid #e2e8f0;
    background: white;
    transition: all 0.3s ease;
}
.faq-item.active {
    border-color: var(--light-blue);
    box-shadow: 0 10px 30px rgba(56, 182, 255, 0.1);
}

/* Painel da FAQ: animacao por grid-template-rows.
   O JS antigo lia content.scrollHeight a cada clique, o que forcava um
   reflow sincrono e era o principal responsavel pelo INP alto no mobile.
   Aqui a abertura e 100% CSS: o JS so alterna a classe .active. */
.faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
}
.faq-item.active .faq-panel {
    grid-template-rows: 1fr;
}
.faq-panel > * {
    overflow: hidden;
    min-height: 0;
}

/* Lock Overlay (Demo section) */
.lock-overlay {
    transition: all 0.4s ease-out;
    backdrop-filter: blur(8px);
}
.lock-overlay.unlocked {
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(0);
}

/* Navbar Navigation Links */
.navbar-links {
    display: none;
    align-items: center;
    gap: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4b5563;
}
.navbar-links a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}
.navbar-links a:hover {
    color: var(--dark-blue);
}
@media (min-width: 768px) {
    .navbar-links { display: flex; }
}

/* Mobile Hamburger Button */
.navbar-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    z-index: 51;
}
.navbar-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #0a2a66;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}
.navbar-burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar-burger.active span:nth-child(2) {
    opacity: 0;
}
.navbar-burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 768px) {
    .navbar-burger { display: none; }
}

/* Mobile Menu Dropdown */
.navbar-mobile-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    background: white;
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
    border: 1px solid rgba(0,0,0,0.05);
    flex-direction: column;
    z-index: 50;
    animation: navbar-menu-fade 0.2s ease;
}
.navbar-mobile-menu.active { display: flex; }
@keyframes navbar-menu-fade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.navbar-mobile-menu a {
    padding: 14px 16px;
    color: #0a2a66;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    border-radius: 10px;
    transition: background 0.15s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.navbar-mobile-menu a:last-child { border-bottom: none; }
.navbar-mobile-menu a:hover,
.navbar-mobile-menu a:active {
    background: rgba(255,199,0,0.12);
    color: #0a2a66;
    text-decoration: none;
}
@media (min-width: 768px) {
    .navbar-mobile-menu { display: none !important; }
}

/* Blog Preview Section */
.blog-preview-section {
    padding: 4rem 1rem;
    background-color: var(--darker-blue);
}
@media (min-width: 768px) {
    .blog-preview-section { padding: 6rem 1.5rem; }
}
.blog-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
    .blog-preview-grid { grid-template-columns: repeat(3, 1fr); }
}
.blog-preview-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.blog-preview-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 199, 0, 0.4);
    text-decoration: none;
}
.blog-preview-card .card-emoji {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    display: block;
}
.blog-preview-card h3 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
    letter-spacing: -0.02em;
}
.blog-preview-card:hover h3 {
    color: var(--gold);
}
.blog-preview-card p {
    color: rgba(191, 219, 254, 0.7);
    font-size: 0.8125rem;
    line-height: 1.6;
    flex: 1;
    margin: 0;
}
.blog-preview-card .card-cta {
    margin-top: 1rem;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 4px;
}
.blog-preview-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.blog-preview-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: white;
}

/* =============================================
   MAPAS MENTAIS — Landing Pages
   ============================================= */

/* Hero específico das LPs de mapas mentais */
.mm-hero {
    position: relative;
    background: linear-gradient(135deg, var(--darker-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 120px 1rem 80px;
    text-align: center;
    overflow: hidden;
}
@media (min-width: 768px) {
    .mm-hero { padding: 160px 2rem 100px; }
}
.mm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255,199,0,0.08), transparent 40%),
                      radial-gradient(circle at 80% 80%, rgba(255,0,107,0.08), transparent 40%);
    pointer-events: none;
}
.mm-hero > * { position: relative; z-index: 1; }
.mm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    background: rgba(255,199,0,0.15);
    border: 1px solid rgba(255,199,0,0.4);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}
.mm-hero h1 {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.04em;
    margin: 0 auto 1.25rem;
    max-width: 760px;
}
@media (min-width: 768px) { .mm-hero h1 { font-size: 3.25rem; } }
.mm-hero .mm-hero-sub {
    font-size: 1rem;
    color: rgba(191,219,254,0.9);
    max-width: 620px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
@media (min-width: 768px) { .mm-hero .mm-hero-sub { font-size: 1.125rem; } }
.mm-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, var(--accent-pink) 0%, #b30047 100%);
    box-shadow: 0 15px 40px rgba(255,0,107,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255,255,255,0.2);
}
.mm-hero-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255,0,107,0.5);
    color: white;
    text-decoration: none;
}
.mm-trust-row {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    font-size: 0.8rem;
    color: rgba(191,219,254,0.8);
}
.mm-trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.mm-trust-row .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* Carrossel automático (marquee) */
.mm-carousel-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--dark-blue) 0%, var(--darker-blue) 100%);
    overflow: hidden;
}
@media (min-width: 768px) { .mm-carousel-section { padding: 5rem 0; } }
.mm-carousel-title {
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}
@media (min-width: 768px) { .mm-carousel-title { font-size: 2rem; } }
.mm-carousel-subtitle {
    text-align: center;
    color: rgba(191,219,254,0.7);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}
.mm-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
            mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.mm-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: mm-scroll 50s linear infinite;
}
.mm-carousel:hover .mm-track { animation-play-state: paused; }
.mm-slide {
    flex: 0 0 auto;
    width: 240px;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    border: 2px solid rgba(255,199,0,0.3);
    cursor: zoom-in;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.mm-slide::after {
    content: '🔍 Clique p/ ampliar';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10,42,102,0.92);
    color: white;
    padding: 5px 12px;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,199,0,0.4);
}
.mm-slide:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
    border-color: var(--gold);
}
.mm-slide:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}
@media (max-width: 768px) {
    .mm-slide::after { opacity: 1; font-size: 0.65rem; padding: 4px 10px; }
}
.mm-slide img { cursor: zoom-in; user-select: none; -webkit-user-drag: none; }

/* Lightbox */
.mm-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: mm-lightbox-fade 0.2s ease;
}
.mm-lightbox.active { display: flex; }
@keyframes mm-lightbox-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
.mm-lightbox-img {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    transition: transform 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
}
.mm-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
}
.mm-lightbox-close:hover {
    background: rgba(255,255,255,0.28);
    transform: scale(1.05);
}
.mm-lightbox-hint {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255,255,255,0.92);
    font-size: 0.85rem;
    font-weight: 600;
    display: none;
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Mobile retrato: rotaciona imagem 90° (landscape) + mostra hint pra girar o aparelho */
@media (max-width: 768px) and (orientation: portrait) {
    .mm-lightbox-img {
        transform: rotate(90deg);
        max-width: 90vh;
        max-height: 90vw;
    }
    .mm-lightbox-hint { display: block; }
}
@media (min-width: 768px) {
    .mm-slide { width: 320px; height: 420px; }
}
.mm-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
@keyframes mm-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Conteúdo / Tópicos */
.mm-content-section {
    padding: 4rem 1rem;
    background: #f8fafc;
}
@media (min-width: 768px) { .mm-content-section { padding: 6rem 2rem; } }
.mm-content-wrap { max-width: 880px; margin: 0 auto; }
.mm-content-wrap h2 {
    text-align: center;
    color: var(--dark-blue);
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    letter-spacing: -0.04em;
}
@media (min-width: 768px) { .mm-content-wrap h2 { font-size: 2.25rem; } }
.mm-content-wrap > p {
    text-align: center;
    color: #475569;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}
.mm-topics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
@media (min-width: 768px) { .mm-topics { grid-template-columns: 1fr 1fr; gap: 1rem 2rem; } }
.mm-topics li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    font-size: 0.95rem;
    line-height: 1.5;
}
.mm-topics li::before {
    content: '✓';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--gold);
    color: var(--dark-blue);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.8rem;
}

/* Seção de oferta — comparativo lado a lado */
.mm-offer-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--darker-blue) 0%, var(--dark-blue) 100%);
    position: relative;
}
@media (min-width: 768px) { .mm-offer-section { padding: 6rem 2rem; } }
.mm-offer-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
    color: white;
}
.mm-offer-header h2 {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
}
@media (min-width: 768px) { .mm-offer-header h2 { font-size: 2.5rem; } }
.mm-offer-header p { color: rgba(191,219,254,0.85); font-size: 1rem; }
.mm-offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 980px;
    margin: 0 auto;
    align-items: center;
}
@media (min-width: 900px) {
    .mm-offer-grid {
        grid-template-columns: 1fr 1.15fr;
        gap: 2rem;
    }
}
.mm-offer-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    border: 2px solid #e2e8f0;
}
@media (min-width: 768px) { .mm-offer-card { padding: 2.5rem 2rem; } }
.mm-offer-card.basic {
    opacity: 0.85;
    background: #f1f5f9;
    order: 2;
}
.mm-offer-card.featured {
    background: white;
    border: 4px solid var(--gold);
    box-shadow: 0 30px 80px rgba(255,199,0,0.25), 0 0 0 8px rgba(255,199,0,0.05);
    z-index: 2;
    order: 1;
}
@media (min-width: 900px) {
    .mm-offer-card.basic { order: 1; }
    .mm-offer-card.featured { order: 2; transform: scale(1.04); }
    .mm-offer-card.featured:hover { transform: scale(1.06); }
}
.mm-offer-card .mm-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.mm-offer-card.basic .mm-tag {
    background: #cbd5e1;
    color: #475569;
}
.mm-offer-card.featured .mm-tag {
    background: linear-gradient(135deg, var(--gold) 0%, #ffa500 100%);
    color: var(--dark-blue);
    box-shadow: 0 4px 12px rgba(255,199,0,0.4);
}
.mm-offer-card h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.mm-offer-card.featured h3 { font-size: 1.5rem; }
@media (min-width: 768px) {
    .mm-offer-card h3 { font-size: 1.5rem; }
    .mm-offer-card.featured h3 { font-size: 1.875rem; }
}
.mm-offer-card .mm-subj-list {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    min-height: 1.2em;
}
.mm-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 1rem;
}
.mm-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-blue);
}
.mm-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-blue);
    line-height: 1;
    letter-spacing: -0.04em;
}
.mm-offer-card.featured .mm-price { font-size: 4rem; color: var(--accent-pink); }
.mm-economy {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}
.mm-features {
    text-align: left;
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
}
.mm-features li {
    padding: 6px 0;
    padding-left: 26px;
    position: relative;
    font-size: 0.9rem;
    color: #334155;
}
.mm-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 900;
}
.mm-cta {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}
.mm-cta-basic {
    background: #e2e8f0;
    color: #475569;
}
.mm-cta-basic:hover {
    background: #cbd5e1;
    color: #1e293b;
    text-decoration: none;
}
.mm-cta-featured {
    background: linear-gradient(135deg, var(--accent-pink) 0%, #b30047 100%);
    color: white;
    box-shadow: 0 12px 30px rgba(255,0,107,0.4);
    animation: mm-pulse 2s infinite;
}
.mm-cta-featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(255,0,107,0.55);
    color: white;
    text-decoration: none;
}
@keyframes mm-pulse {
    0%, 100% { box-shadow: 0 12px 30px rgba(255,0,107,0.4); }
    50% { box-shadow: 0 12px 40px rgba(255,0,107,0.7); }
}

/* FAQ específico */
.mm-faq-section {
    padding: 4rem 1rem;
    background: white;
}
@media (min-width: 768px) { .mm-faq-section { padding: 6rem 2rem; } }
.mm-faq-wrap { max-width: 720px; margin: 0 auto; }
.mm-faq-wrap h2 {
    text-align: center;
    color: var(--dark-blue);
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}
.mm-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: white;
}
.mm-faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 700;
    color: var(--dark-blue);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}
.mm-faq-item summary::-webkit-details-marker { display: none; }
.mm-faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-pink);
}
.mm-faq-item[open] summary::after { content: '−'; }
.mm-faq-item p {
    padding: 0 1.25rem 1.25rem;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ========== Seção Persuasiva ========== */
.mm-persuasive-section {
    padding: 4rem 1rem;
    background: linear-gradient(180deg, #fff7ed 0%, #fff1e1 100%);
    position: relative;
}
@media (min-width: 768px) { .mm-persuasive-section { padding: 6rem 2rem; } }
.mm-persuasive-wrap {
    max-width: 920px;
    margin: 0 auto;
}
.mm-persuasive-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 9999px;
    background: #fee2e2;
    color: #991b1b;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.mm-persuasive-section h2 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--dark-blue);
    letter-spacing: -0.04em;
    margin: 0 0 0.75rem;
    line-height: 1.15;
}
@media (min-width: 768px) { .mm-persuasive-section h2 { font-size: 2.5rem; } }
.mm-persuasive-lead {
    font-size: 1rem;
    color: #475569;
    margin: 0 0 2.5rem;
    line-height: 1.6;
    max-width: 640px;
}
@media (min-width: 768px) { .mm-persuasive-lead { font-size: 1.125rem; } }

.mm-stat-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .mm-stat-strip { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.mm-stat-strip .stat {
    background: white;
    border-radius: 14px;
    padding: 1.25rem 0.75rem;
    text-align: center;
    border: 2px solid #fde68a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: transform 0.2s ease;
}
.mm-stat-strip .stat:hover { transform: translateY(-2px); }
.mm-stat-strip .stat .num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-pink);
    line-height: 1;
    margin-bottom: 0.4rem;
    letter-spacing: -0.04em;
}
@media (min-width: 768px) { .mm-stat-strip .stat .num { font-size: 2.5rem; } }
.mm-stat-strip .stat .lbl {
    font-size: 0.75rem;
    color: #475569;
    font-weight: 600;
    line-height: 1.3;
}

.mm-story-block {
    background: white;
    border-left: 5px solid var(--accent-pink);
    padding: 1.5rem 1.5rem 1.5rem 1.75rem;
    border-radius: 0 16px 16px 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #1e293b;
    margin-bottom: 2.5rem;
    box-shadow: 0 6px 20px rgba(255,0,107,0.08);
    position: relative;
    font-family: 'Inter', sans-serif;
}
@media (min-width: 768px) { .mm-story-block { font-size: 1.05rem; padding: 2rem 2rem 2rem 2.25rem; } }
.mm-story-block::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 12px;
    font-size: 4rem;
    color: var(--accent-pink);
    opacity: 0.25;
    font-family: 'Inter', serif;
    line-height: 1;
}
.mm-story-block strong { color: var(--accent-pink); font-weight: 700; }

.mm-vs-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin: 0 0 1.25rem;
    text-align: center;
    letter-spacing: -0.02em;
}
@media (min-width: 768px) { .mm-vs-title { font-size: 1.5rem; } }
.mm-vs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .mm-vs-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.mm-vs-card {
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
}
.mm-vs-card.bad {
    background: #fef2f2;
    border: 2px solid #fca5a5;
}
.mm-vs-card.good {
    background: #f0fdf4;
    border: 2px solid #86efac;
}
.mm-vs-card h4 {
    font-weight: 800;
    margin: 0 0 1rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mm-vs-card.bad h4 { color: #991b1b; }
.mm-vs-card.good h4 { color: #166534; }
.mm-vs-card ul { list-style: none; padding: 0; margin: 0; }
.mm-vs-card li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 0.92rem;
    color: #1e293b;
    line-height: 1.5;
}
.mm-vs-card.bad li::before {
    content: '✗';
    position: absolute;
    left: 0;
    top: 8px;
    color: #dc2626;
    font-weight: 900;
    width: 20px;
    height: 20px;
    background: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}
.mm-vs-card.good li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #16a34a;
    font-weight: 900;
    width: 20px;
    height: 20px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.mm-final-pitch {
    text-align: center;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--darker-blue) 100%);
    color: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(10,42,102,0.25);
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) { .mm-final-pitch { padding: 3rem 2.5rem; } }
.mm-final-pitch::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,199,0,0.15), transparent 70%);
    pointer-events: none;
}
.mm-final-pitch h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 0 0.75rem;
    color: var(--gold);
    letter-spacing: -0.03em;
    position: relative;
}
@media (min-width: 768px) { .mm-final-pitch h3 { font-size: 2rem; } }
.mm-final-pitch p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 1.75rem;
    opacity: 0.92;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
@media (min-width: 768px) { .mm-final-pitch p { font-size: 1.05rem; } }
.mm-final-pitch .anchor-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-pink) 0%, #b30047 100%);
    color: white;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 12px 30px rgba(255,0,107,0.4);
    transition: all 0.2s ease;
    position: relative;
    border: 1px solid rgba(255,255,255,0.2);
}
.mm-final-pitch .anchor-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 40px rgba(255,0,107,0.55);
    color: white;
    text-decoration: none;
}

/* Pequenas melhorias UX/UI globais nas LPs */
.mm-section-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.mm-section-tag.gold { background: rgba(255,199,0,0.15); color: #b8860b; border: 1px solid rgba(255,199,0,0.4); }
.mm-section-tag.blue { background: rgba(56,182,255,0.12); color: var(--dark-blue); border: 1px solid rgba(56,182,255,0.3); }

/* Melhor tipografia mobile */
@media (max-width: 640px) {
    .mm-hero { padding: 110px 1.25rem 60px; }
    .mm-hero h1 { font-size: 1.75rem; line-height: 1.2; }
    .mm-hero .mm-hero-sub { font-size: 0.95rem; }
    .mm-content-section { padding: 3rem 1.25rem; }
    .mm-offer-section { padding: 3rem 1.25rem; }
    .mm-offer-card { padding: 1.5rem 1.25rem; }
    .mm-faq-section { padding: 3rem 1.25rem; }
}

/* Hub de mapas mentais */
.mm-hub-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0;
}
@media (min-width: 640px) { .mm-hub-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .mm-hub-grid { grid-template-columns: repeat(3, 1fr); } }
.mm-hub-card {
    display: block;
    text-decoration: none;
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
    color: var(--dark-blue);
}
.mm-hub-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(10,42,102,0.12);
    text-decoration: none;
    color: var(--dark-blue);
}
.mm-hub-card .mm-hub-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}
.mm-hub-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}
.mm-hub-card p {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0 0 1rem;
}
.mm-hub-card .mm-hub-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--accent-pink);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Teaser na home */
.mm-teaser-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
}
@media (min-width: 768px) { .mm-teaser-section { padding: 6rem 2rem; } }
.mm-teaser-wrap { max-width: 1080px; margin: 0 auto; text-align: center; }
.mm-teaser-wrap > .mm-teaser-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 9999px;
    background: var(--dark-blue);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.mm-teaser-wrap h2 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    letter-spacing: -0.04em;
}
@media (min-width: 768px) { .mm-teaser-wrap h2 { font-size: 2.5rem; } }
.mm-teaser-wrap > p {
    color: #475569;
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}
.mm-teaser-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) { .mm-teaser-grid { grid-template-columns: repeat(5, 1fr); gap: 1rem; } }
.mm-teaser-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem 0.75rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.2s;
    color: var(--dark-blue);
    display: block;
}
.mm-teaser-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--dark-blue);
}
.mm-teaser-card .em { font-size: 1.75rem; display: block; margin-bottom: 0.5rem; }
.mm-teaser-card .name { font-weight: 800; font-size: 0.85rem; }
.mm-teaser-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2rem;
    background: var(--dark-blue);
    color: white;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}
.mm-teaser-cta:hover {
    background: var(--accent-pink);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Safe Area (mobile notch) */
.pb-safe { padding-bottom: env(safe-area-inset-bottom, 12px); }

/* =========================================================
   HEADER — barra de urgência, mega-menu das esferas, link ativo
   ========================================================= */

/* Barra de urgência no topo (rola pra fora; o menu pílula segue sticky abaixo).
   DOURADA de propósito: a versão azul-marinho sumia sobre o hero azul-marinho
   (visto em produção em 17/08, com o contador de dias ilegível). A barra de
   urgência é o único lugar da página em que o dourado é o FUNDO. */
#top-bar {
  background: var(--gold, #ffc700);
  color: #051636;
  font-size: 0.85rem;
  font-weight: 700;
  position: relative;
  z-index: 60;
}
#top-bar .top-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  flex-wrap: wrap; padding: 8px 16px; text-align: center;
}
#top-bar .top-bar-text strong { color: #051636; font-weight: 900; }
#top-bar .top-bar-cta {
  background: #051636; color: var(--gold, #ffc700);
  font-weight: 800; text-decoration: none;
  padding: 4px 14px; border-radius: 999px; white-space: nowrap;
  font-size: 0.75rem; transition: transform .15s ease, filter .15s ease;
}
#top-bar .top-bar-cta:hover { transform: translateY(-1px); filter: brightness(1.15); }
@media (max-width: 640px) { #top-bar { font-size: 0.75rem; } #top-bar .top-bar-inner { gap: 8px; padding: 7px 12px; } }

/* Active link (desktop + mobile) */
.navbar-links a.active { color: var(--dark-blue, #0a2a66); position: relative; }
.navbar-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--gold, #ffc700); border-radius: 2px;
}
.navbar-mobile-menu a.active { background: rgba(255,199,0,0.14); }

/* Mega-menu — wrapper + trigger (desktop; .navbar-links já é display:none no mobile) */
.mega-wrap { position: relative; }
.mega-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; border: none; cursor: pointer;
  font: inherit; color: inherit; text-transform: uppercase;
  letter-spacing: 0.05em; font-weight: 600; padding: 0;
}
.mega-trigger:hover { color: var(--dark-blue, #0a2a66); }
.mega-caret { transition: transform .2s ease; }
.mega-wrap.open .mega-caret { transform: rotate(180deg); }

/* Painel do mega-menu */
.mega-panel {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-8px);
  width: min(560px, 90vw);
  background: #fff; border: 1px solid rgba(10,42,102,0.08); border-radius: 18px;
  box-shadow: 0 24px 60px rgba(10,42,102,0.18);
  padding: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s ease, transform .18s ease; z-index: 60;
}
.mega-wrap.open .mega-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px; border-radius: 12px; text-decoration: none; text-transform: none; letter-spacing: 0;
  transition: background .15s ease;
}
.mega-item:hover { background: rgba(255,199,0,0.10); }
.mega-ico {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,42,102,0.06); color: var(--dark-blue, #0a2a66);
}
.mega-txt { display: flex; flex-direction: column; line-height: 1.25; }
.mega-txt strong { color: var(--dark-blue, #0a2a66); font-size: 0.9rem; font-weight: 800; }
.mega-txt span { color: #64748b; font-size: 0.74rem; }
@media (max-width: 860px) { .mega-panel { grid-template-columns: 1fr; width: min(360px, 90vw); } }

/* =========================================================
   SEÇÃO ECOSSISTEMA (cross-linking)
   ========================================================= */
.eco-section { background: #f8fafc; padding: 56px 0; border-top: 1px solid #e2e8f0; }
.eco-title { font-family: 'Inter', sans-serif; font-weight: 900; letter-spacing: -0.03em;
  color: var(--dark-blue, #0a2a66); font-size: clamp(1.4rem, 3vw, 2rem); text-align: center; }
.eco-sub { text-align: center; color: #64748b; margin: 8px 0 28px; font-size: 0.95rem; }
.eco-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; max-width: 1100px; margin: 0 auto; }
.eco-card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 22px 18px;
  text-decoration: none; display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.eco-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(10,42,102,0.12); border-color: var(--gold, #ffc700); }
.eco-ico {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #051636 0%, #0a2a66 100%); color: var(--gold, #ffc700);
}
.eco-card strong { color: var(--dark-blue, #0a2a66); font-size: 1.02rem; font-weight: 800; }
.eco-card > span { color: #64748b; font-size: 0.85rem; line-height: 1.4; }

/* Header slim (páginas focadas/app — NÃO sticky, pra não conflitar com headers próprios) */
#slim-header { background: #fff; border-bottom: 1px solid #e2e8f0; }
#slim-header .slim-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 9px 16px; }
#slim-header .slim-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--dark-blue, #0a2a66); font-weight: 900; letter-spacing: -0.02em; font-size: 0.95rem; white-space: nowrap; }
#slim-header .slim-logo b { color: var(--gold, #ffc700); font-weight: 900; }
#slim-header .slim-back { color: #475569; text-decoration: none; font-size: 0.8rem; font-weight: 600; white-space: nowrap; }
#slim-header .slim-back:hover { color: var(--dark-blue, #0a2a66); }
