/* ==========================================================================
   MÉTODO CONCURSO PM - STYLESHEET PRINCIPAL
   Estilo Tático / Dark Mode / Alta Conversão (Sem Dependência de Imagens)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIÁVEIS DE DESIGN SYSTEM & ROOT
   -------------------------------------------------------------------------- */
:root {
    --bg-dark-100: #0a0b0e;
    --bg-dark-200: #12141a;
    --bg-dark-300: #1a1d26;
    --bg-card: #161821;
    --bg-card-hover: #1e212d;

    --red-primary: #ff1a1a;
    --red-dark: #b30000;
    --red-glow: rgba(255, 26, 26, 0.4);
    
    --green-action: #00e676;
    --green-dark: #00a850;
    --green-glow: rgba(0, 230, 118, 0.4);

    --blue-siren: rgba(0, 102, 255, 0.25);
    
    --text-main: #f0f2f5;
    --text-muted: #a0a5b5;
    --text-light: #ffffff;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-red: rgba(255, 26, 26, 0.3);

    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.tactical-body {
    background-color: var(--bg-dark-100);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark-100);
}
::-webkit-scrollbar-thumb {
    background: #2a2d3a;
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--red-primary);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --------------------------------------------------------------------------
   3. ANIMAÇÕES KEYFRAMES & UTILITIES
   -------------------------------------------------------------------------- */
@keyframes sirenGlowRed {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.65; transform: scale(1.15); filter: blur(40px); }
}

@keyframes sirenGlowBlue {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); filter: blur(45px); }
}

@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 26, 26, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 26, 26, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 26, 26, 0); }
}

@keyframes pulseButton {
    0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(0, 230, 118, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

@keyframes buttonShine {
    0% { left: -100%; }
    20%, 100% { left: 200%; }
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Animações de Scroll (Classes de Apoio para JS) */
[data-anim] {
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
    will-change: transform, opacity;
}

[data-anim="fade-up"] { transform: translateY(40px); }
[data-anim="fade-down"] { transform: translateY(-30px); }
[data-anim="fade-left"] { transform: translateX(50px); }
[data-anim="fade-right"] { transform: translateX(-50px); }
[data-anim="zoom-in"] { transform: scale(0.9); }

[data-anim].animated {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Helper Classes */
.text-red { color: var(--red-primary); }
.highlight-red {
    color: var(--red-primary);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 15px var(--red-glow);
}

/* --------------------------------------------------------------------------
   4. SIREN LIGHTS (Luzes de Polícia de Fundo)
   -------------------------------------------------------------------------- */
.siren-light {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.siren-left {
    top: 5%;
    left: -100px;
    background: radial-gradient(circle, var(--red-primary) 0%, transparent 70%);
    animation: sirenGlowRed 4s infinite ease-in-out;
}

.siren-right {
    top: 15%;
    right: -100px;
    background: radial-gradient(circle, #0055ff 0%, transparent 70%);
    animation: sirenGlowBlue 4s infinite ease-in-out 2s;
}

/* --------------------------------------------------------------------------
   5. TOP ANNOUNCEMENT BAR
   -------------------------------------------------------------------------- */
.top-announcement {
    background: linear-gradient(90deg, #800000 0%, var(--red-primary) 50%, #800000 100%);
    color: #fff;
    padding: 10px 0;
    font-size: 0.85rem;
    text-align: center;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    letter-spacing: 0.5px;
}

.top-announcement .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 1.5s infinite;
}

/* --------------------------------------------------------------------------
   6. HEADER / NAVBAR
   -------------------------------------------------------------------------- */
.main-header {
    background-color: rgba(18, 20, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 90;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skull-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.skull-badge i {
    color: var(--red-primary);
    font-size: 1.6rem;
    filter: drop-shadow(0 0 8px var(--red-glow));
}

.instagram-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.instagram-nav-link i {
    color: #e1306c;
    font-size: 1.1rem;
}

.instagram-nav-link:hover {
    background: rgba(225, 48, 108, 0.15);
    border-color: #e1306c;
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   7. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 60px 0 80px;
    background: radial-gradient(circle at center, #1e2230 0%, var(--bg-dark-100) 80%);
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 26, 26, 0.12);
    border: 1px solid var(--border-red);
    color: var(--red-primary);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.15);
}

.main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle strong {
    color: var(--text-light);
}

/* CTA Wrapper & Botões */
.cta-wrapper {
    margin-bottom: 25px;
}

.btn-cta-primary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 550px;
    padding: 18px 30px;
    background: linear-gradient(180deg, #00ff84 0%, #00b354 100%);
    color: #003314;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--green-glow);
    animation: pulseButton 2s infinite;
    transition: var(--transition-fast);
}

.btn-cta-primary small {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: none;
    opacity: 0.9;
    margin-top: 2px;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    animation: buttonShine 4s infinite ease-in-out;
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 230, 118, 0.6);
    background: linear-gradient(180deg, #1aff93 0%, #00cc60 100%);
}

.security-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.security-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.security-badges i {
    color: var(--green-action);
}

/* --------------------------------------------------------------------------
   8. DELIVERABLES SECTION ("O QUE VOCÊ RECEBE HOJE")
   -------------------------------------------------------------------------- */
.deliverables-section {
    padding: 90px 0;
    background-color: var(--bg-dark-200);
    position: relative;
    border-top: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.title-glow {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.divider-line {
    width: 80px;
    height: 4px;
    background: var(--red-primary);
    margin: 15px auto 0;
    border-radius: var(--radius-full);
    box-shadow: 0 0 10px var(--red-glow);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.list-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.list-title i {
    color: var(--red-primary);
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--bg-card);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.check-list li:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.check-icon {
    color: var(--green-action);
    font-size: 1.4rem;
    margin-top: 2px;
}

.check-icon-red {
    color: var(--red-primary);
    font-size: 1.4rem;
    margin-top: 2px;
}

.check-list strong {
    color: var(--text-light);
    font-size: 1.05rem;
    display: block;
}

.check-list p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Bloco de Bônus */
.bonus-box {
    margin-top: 35px;
    background: linear-gradient(145deg, rgba(255, 26, 26, 0.08) 0%, rgba(22, 24, 33, 0.9) 100%);
    border: 1px solid var(--border-red);
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.bonus-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.bonus-header i {
    color: var(--red-primary);
    font-size: 1.6rem;
}

.badge-today {
    background: var(--red-primary);
    color: #fff;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    vertical-align: middle;
}

.bonus-list li {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 26, 26, 0.2);
}

/* CARD DE ECOSSISTEMA DIGITAL (SUBSTITUI IMAGEM DE MOCKUP) */
.deliverables-mockup {
    position: relative;
}

.platform-display-card {
    background: linear-gradient(145deg, var(--bg-card-hover), var(--bg-card));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.platform-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.platform-dots {
    display: flex;
    gap: 6px;
}

.platform-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.platform-dots span:nth-child(1) { background: #ff5f56; }
.platform-dots span:nth-child(2) { background: #ffbd2e; }
.platform-dots span:nth-child(3) { background: #27c93f; }

.platform-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.platform-title i {
    color: var(--red-primary);
}

.platform-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.platform-feature-item {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
    padding: 20px 15px;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: var(--transition-fast);
}

.platform-feature-item:hover {
    border-color: var(--red-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 26, 26, 0.15);
}

.platform-feature-item i {
    font-size: 1.8rem;
    color: var(--red-primary);
    margin-bottom: 10px;
}

.platform-feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.platform-feature-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.app-badge {
    background: rgba(18, 20, 26, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--green-action);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-light);
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    animation: floatElement 3s infinite ease-in-out;
}

.app-badge i {
    font-size: 1.8rem;
    color: var(--green-action);
}

/* --------------------------------------------------------------------------
   9. PRICING SECTION (Tabela de Preços/Oferta)
   -------------------------------------------------------------------------- */
.pricing-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, #1f1113 0%, var(--bg-dark-100) 80%);
    position: relative;
    overflow: hidden;
}

.pricing-card {
    max-width: 650px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid var(--red-primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 26, 26, 0.25), inset 0 0 20px rgba(255, 26, 26, 0.05);
    position: relative;
    z-index: 10;
}

.card-header {
    margin-bottom: 20px;
}

.old-price {
    font-size: 1.3rem;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: var(--red-primary);
    text-decoration-thickness: 3px;
    font-weight: 700;
}

.offer-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.main-price-box {
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid var(--green-action);
    border-radius: var(--radius-md);
    padding: 25px 15px;
    margin: 20px 0;
}

.installment-highlight {
    font-family: var(--font-heading);
    color: var(--text-light);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.installment-highlight .times {
    font-size: 2rem;
    font-weight: 700;
}

.installment-highlight .currency {
    font-size: 2rem;
    color: var(--green-action);
}

.installment-highlight .amount {
    font-size: clamp(3.2rem, 7vw, 4.5rem);
    font-weight: 900;
    color: var(--green-action);
    line-height: 1;
}

.installment-highlight .period {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.or-divider {
    font-family: var(--font-heading);
    color: var(--red-primary);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin: 15px 0;
}

.cash-price-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.cash-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
}

.cash-amount small {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features p {
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--green-action);
}

.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 22px;
    background: linear-gradient(180deg, #00ff84 0%, #00b354 100%);
    color: #003314;
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px var(--green-glow);
    transition: var(--transition-fast);
    animation: pulseButton 2s infinite;
}

.btn-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 230, 118, 0.7);
    background: linear-gradient(180deg, #1aff93 0%, #00cc60 100%);
}

/* BADGES DE FORMAS DE PAGAMENTO EM CSS (SUBSTITUI IMAGEM) */
.card-footer-info {
    margin-top: 20px;
}

.payment-methods-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.payment-methods-pills span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.payment-methods-pills span:hover {
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.payment-methods-pills span i {
    color: var(--green-action);
}

/* --------------------------------------------------------------------------
   10. MENTOR SECTION & INSTAGRAM
   -------------------------------------------------------------------------- */
.mentor-section {
    padding: 90px 0;
    background-color: var(--bg-dark-200);
    border-top: 1px solid var(--border-color);
}

.mentor-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.mentor-image-box {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

/* CARD DE AUTORIDADE DO MENTOR (SUBSTITUI FOTO) */
.mentor-authority-card {
    background: linear-gradient(160deg, #1d202b 0%, var(--bg-card) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 35px 25px 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.mentor-avatar-badge {
    width: 85px;
    height: 85px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 0 25px var(--red-glow);
    border: 3px solid var(--bg-card);
}

.mentor-card-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 1px;
}

.verified-icon {
    color: #00b0ff;
    font-size: 1.1rem;
}

.mentor-card-title {
    font-size: 0.9rem;
    color: var(--red-primary);
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.mentor-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.stat-box strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.1;
}

.stat-box span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.mentor-authority-card .followers-badge {
    position: static;
    background: rgba(225, 48, 108, 0.08);
    border: 1px solid rgba(225, 48, 108, 0.3);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: left;
}

.followers-badge i {
    font-size: 2rem;
    color: #e1306c;
}

.followers-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1;
}

.followers-badge small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sub-tag {
    font-family: var(--font-heading);
    color: var(--red-primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.mentor-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin: 10px 0 20px;
}

.mentor-bio {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 15px;
}

.instagram-box-action {
    margin-top: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.insta-profile-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.insta-icon {
    font-size: 2.2rem;
    color: #e1306c;
}

.insta-profile-info strong {
    display: block;
    color: var(--text-light);
    font-size: 1.1rem;
}

.insta-profile-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
    opacity: 0.95;
}

/* --------------------------------------------------------------------------
   11. FAQ ACCORDION SECTION
   -------------------------------------------------------------------------- */
.faq-section {
    padding: 90px 0;
    background-color: var(--bg-dark-100);
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    color: var(--red-primary);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, padding 0.35s ease;
    padding: 0 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    padding: 15px 25px 25px;
    max-height: 200px;
}

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */
.main-footer {
    background-color: #060709;
    padding: 50px 0 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo i {
    color: var(--red-primary);
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    max-width: 700px;
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   13. POPUP DE PROVA SOCIAL & FLOATING INSTAGRAM
   -------------------------------------------------------------------------- */
.social-proof-toast {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: rgba(22, 24, 33, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 230, 118, 0.4);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    max-width: 340px;
    transform: translateY(150px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.social-proof-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.close-toast {
    position: absolute;
    top: 5px;
    right: 8px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
}

.toast-icon {
    background: rgba(0, 230, 118, 0.15);
    color: var(--green-action);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-content p {
    font-size: 0.82rem;
    color: var(--text-main);
    line-height: 1.3;
}

.toast-content strong {
    color: var(--green-action);
}

/* Floating Instagram Button */
.float-instagram {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 55px;
    height: 55px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.5);
    z-index: 999;
    transition: var(--transition-fast);
}

.float-instagram:hover {
    transform: scale(1.1) rotate(8deg);
}

.float-tooltip {
    position: absolute;
    left: 70px;
    background: rgba(18, 20, 26, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    border: 1px solid var(--border-color);
}

.float-instagram:hover .float-tooltip {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   14. RESPONSIVIDADE (MEDIA QUERIES)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .deliverables-grid, .mentor-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .deliverables-mockup {
        order: -1;
    }

    .mentor-image-box {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .top-announcement p {
        font-size: 0.75rem;
    }

    .main-header {
        padding: 12px 0;
    }

    .skull-badge {
        font-size: 1.1rem;
    }

    .hero-section {
        padding: 40px 0 60px;
    }

    .btn-cta-primary {
        font-size: 1.3rem;
        padding: 16px 20px;
    }

    .platform-features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 25px 20px;
    }

    .btn-checkout {
        font-size: 1.3rem;
        padding: 18px 15px;
    }

    .social-proof-toast {
        bottom: 90px;
        right: 15px;
        left: 15px;
        max-width: none;
    }
}