/* ==========================================================================
   BOTCONVERSA V3 - CONVERSION FOCUSED CSS (OLI GARDNER EDITION)
   ========================================================================== */

/* 1. RESET & TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap');

:root {
    --primary-blue: #0066FF;
    --primary-dark: #004ecc;
    --primary-green: #10B981;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden; /* Prevent horizontal scroll globally */
    width: 100%;
}

a { text-decoration: none; color: inherit; transition: all 0.2s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%; /* Ensure container respects viewport width */
}

/* 2. HEADER (Minimalist) */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-img {
    height: 36px;
    margin: 0 auto;
    display: block;
}

/* 3. HERO SECTION (Conversion Centered) */
.hero-v3 {
    padding: 80px 0 100px;
    background: radial-gradient(circle at top right, #f1f5f9 0%, #fff 40%);
    overflow: hidden;
}

.hero-flex {
    display: flex;
    align-items: flex-end;
    gap: 60px;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.badge-v3 {
    background: #FEF2F2;
    color: #EF4444;
    border: 1px solid #FECACA;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 24px;
}

.headline {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.headline span {
    color: var(--primary-blue);
    position: relative;
    white-space: nowrap;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-sub strong {
    color: var(--text-main);
    font-weight: 600;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    flex-direction: column; /* Allow stacking widget below video */
    align-items: center;
}

/* VSL Container (Apple Style) */
.vsl-container-v3 {
    width: 100%;
    max-width: 360px; /* Mobile Ratio Limit */
    aspect-ratio: 9 / 16;
    border-radius: 24px;
    background: #000;
    box-shadow: 
        0 0 0 8px #fff, 
        0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    z-index: 10;
}

/* FIX PARA VÍDEO BUGADO (CROP TOP) */
.vsl-container-v3 #smartplayer {
    margin-top: -89% !important; /* Puxa o vídeo para cima para esconder a faixa preta */
}

.vsl-container-v3:hover {
    transform: scale(1.02);
}

/* 4. BUTTONS (High Contrast) */
.btn-main {
    background: var(--primary-green);
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.4);
    background: #059669;
}

/* 5. PROBLEM SECTION (Agitation) */
.robot-section {
    padding: 100px 0;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
}

.robot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.robot-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.01em;
}

.robot-text h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.robot-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.robot-video img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

/* 6. STACK SECTION (Hormozi Style) */
.stack-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.stack-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.stack-item {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 16px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid transparent;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.stack-item:hover {
    border-color: var(--primary-blue);
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.stack-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    background: #EFF6FF;
    padding: 12px;
    border-radius: 12px;
}

.stack-item div strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--text-main);
}

.value-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Total Value Box */
.total-value-box {
    background: #1E293B;
    color: #fff;
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-xl);
}

.total-value-box h3 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-green);
    margin: 15px 0;
}

/* 7. PRICING (Modern Cards) */
.plans-section {
    padding: 100px 0;
    background: #fff;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center; /* Center Vertically */
    margin-top: 60px;
}

.plan-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

/* Hero Card (The Middle One) */
.plan-card.hero {
    border: 2px solid var(--primary-blue);
    box-shadow: 0 25px 50px -12px rgba(0, 102, 255, 0.15);
    z-index: 10;
    transform: scale(1.05);
    background: #fff;
}

.plan-badge-top {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-main);
}

.plan-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    min-height: 40px;
}

.real-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 5px;
}

.price-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.btn-full {
    display: block;
    width: 100%;
    padding: 18px; /* Bigger touch target */
    border-radius: 10px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

/* Primary Action (Green) - REPLACES BLUE */
.btn-main {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4);
    border: none;
}

.btn-main:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(16, 185, 129, 0.5);
}

/* Secondary Action (Dark) - REPLACES GREEN OUTLINE */
.btn-dark {
    background: #1e293b;
    color: white;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.3);
}

.btn-dark:hover {
    background: #0f172a;
    transform: translateY(-2px);
}

/* Tertiary Action (Outline Dark) - REPLACES BLUE OUTLINE */
.btn-outline-dark {
    border: 2px solid #e2e8f0;
    color: var(--text-muted);
    background: transparent;
}

.btn-outline-dark:hover {
    border-color: var(--text-main);
    color: var(--text-main);
    background: transparent;
}

.plan-features {
    text-align: left;
    margin-top: 20px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.plan-features li i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* 8. FOOTER (Organized Grid) */
.footer {
    background: #f8fafc;
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-main);
}

.footer-logo {
    height: 32px;
    margin-bottom: 20px;
}

.footer-text {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 300px;
}

.footer-col p {
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-link {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary-blue);
    text-decoration: none;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    color: #94a3b8;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom a {
    color: #94a3b8;
    margin-left: 20px;
}

.footer-bottom a:hover {
    color: var(--primary-blue);
}

/* 11. WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}
.lead-modal-overlay {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px); /* Oli Gardner Style: Focus on the modal */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Toast Mobile Safety */
@media (max-width: 768px) {
    .toast-container {
        bottom: 90px; /* Above WhatsApp/Nav buttons */
        left: 10px;
        right: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .fake-toast {
        width: 100%;
        max-width: 320px;
    }
}

.lead-modal-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: var(--shadow-xl);
    text-align: center;
    animation: slideUp 0.3s ease-out;
}

@media (max-width: 480px) {
    .lead-modal-box {
        padding: 24px;
        max-height: 85vh; /* Evita colar no topo/fundo */
        overflow-y: auto; /* Scroll se necessário */
    }
    
    .lead-modal-header h3 {
        font-size: 1.25rem; /* Título menor */
    }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.lead-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.lead-modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.form-group { margin-bottom: 15px; }

.form-group input {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.btn-submit-lead {
    width: 100%;
    padding: 16px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
}

.btn-submit-lead:hover {
    background: var(--primary-dark);
}

/* =========================================
   ADDONS V3.1 (TITANS BLOCKS)
   ========================================= */

/* TRUSTED COMPANIES */
.trusted-companies {
    text-align: center;
}
.trusted-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.companies-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s;
}
.companies-logos:hover {
    opacity: 1;
    filter: grayscale(0%);
}
.companies-logos img {
    height: 30px;
    object-fit: contain;
}

/* DEPOIMENTOS */
.depoimentos-section {
    padding: 100px 0;
    text-align: center;
}
.depoimentos-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--text-main);
}
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.depo-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.depo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.depo-card .empresa {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-green);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.depo-card iframe {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    height: 200px;
}
.depo-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-main);
}
.depo-card .texto {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* FAQ SECTION */
.faq-section {
    padding: 100px 0;
    background: #fff;
    border-top: 1px solid var(--border-color);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}
.faq-question {
    width: 100%;
    padding: 24px 0;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: transform 0.3s;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-right: 20px;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}
.faq-answer p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* FOOTER LINKS */
.footer-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}
.footer-link:hover {
    text-decoration: underline;
}

/* 10. RESPONSIVE */
@media (max-width: 1024px) {
    .headline { font-size: 2.5rem; }
    .hero-flex { flex-direction: column; text-align: center; }
    .hero-left { margin-bottom: 40px; }
    .hero-right { width: 100%; display: flex; justify-content: center; } /* Garante centralização */
    
    .vsl-container-v3 {
        margin: 0 auto; /* Centraliza o container */
        width: 100%;
        max-width: 340px; /* Um pouco menor para caber em telas estreitas */
        /* Aspect ratio mantido, mas reforçado */
        aspect-ratio: 9/16; 
    }

    /* Ajuste fino para mobile: talvez precise de menos crop se o player renderizar diferente */
    .vsl-container-v3 #smartplayer {
        margin-top: -88% !important; 
    }

    .stack-grid { grid-template-columns: 1fr; }
    .total-value-box { display: none; /* Hide visual total on mobile to save space, focus on list */ }
    .plans-grid { grid-template-columns: 1fr; max-width: 400px; margin: 40px auto 0; }
    .plan-card.hero { transform: scale(1); }
    .robot-grid { grid-template-columns: 1fr; }

    /* Footer Mobile Fix */
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important; /* Fallback */
        text-align: center;
        gap: 40px;
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-col {
        width: 100%;
    }
    .footer-col p, .footer-text {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* SMALL MOBILE FIXES (Title Safety) */
@media (max-width: 480px) {
    .headline {
        font-size: 2rem !important; /* Smaller on phone */
        word-wrap: break-word; /* Prevent cut-off */
    }
    
    .section-title, h1, h2 {
        font-size: 1.8rem !important; /* Safe size for H1/H2 */
        word-wrap: break-word;
        padding: 0 10px; /* Safety padding */
    }
    
    .hero-v3, .plans-section {
        padding-top: 40px; /* Reduce top spacing */
    }
}

/* SYSTEM ALERT WIDGET (Lote 2) */
.price-alert-box {
    margin-top: 20px;
    background: #FFF;
    border-radius: 12px;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.2);
    overflow: hidden;
    width: 100%;
    max-width: 360px; /* Mesmo max do vídeo */
    animation: slideUpWidget 0.8s ease-out;
    border: 2px solid #DC2626; /* Red Border */
}

@keyframes slideUpWidget {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.alert-header {
    background: #DC2626;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.alert-body {
    padding: 20px;
    text-align: center;
}

.alert-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #94a3b8;
}

.new-offer {
    background: #ECFDF5;
    border: 1px solid #10B981;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.offer-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #059669;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.offer-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1;
}

.scarcity-text {
    font-size: 0.85rem;
    color: #DC2626; /* Red for scarcity */
    margin-top: 5px;
    font-weight: 600;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.btn-alert {
    display: block;
    width: 100%;
    padding: 14px;
    background: #10B981;
    color: white;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.4);
}

.btn-alert:hover {
    background: #059669;
    color: white;
}

/* UTILS */
.hidden-delayed {
    display: none !important;
}

.visible-delayed {

    display: block !important;

}



/* SOCIAL PROOF WIDGETS */



/* 1. People Online Sticky Bar (Mobile Only usually, or Desktop corner) */

.online-counter-fixed {

    position: fixed;

    top: 80px; /* Below header */

    right: 20px;

    background: rgba(0, 0, 0, 0.8);

    color: #fff;

    padding: 8px 16px;

    border-radius: 50px;

    font-size: 0.8rem;

    font-weight: 600;

    z-index: 99;

    backdrop-filter: blur(5px);

    display: flex;

    align-items: center;

    gap: 8px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.1);

    border: 1px solid rgba(255,255,255,0.1);

}



.live-dot {

    width: 8px;

    height: 8px;

    background-color: #2ecc71;

    border-radius: 50%;

    display: block;

    box-shadow: 0 0 5px #2ecc71;

    animation: pulseGreen 1.5s infinite;

}



@keyframes pulseGreen {

    0% { transform: scale(0.95); opacity: 0.7; }

    50% { transform: scale(1.1); opacity: 1; }

    100% { transform: scale(0.95); opacity: 0.7; }

}



/* 2. Fake Sales Toast */

.toast-container {

    position: fixed;

    bottom: 20px;

    left: 20px;

    z-index: 1000;

    pointer-events: none; /* Let clicks pass through */

}



.fake-toast {

    background: #fff;

    color: var(--text-main);

    padding: 12px 20px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    gap: 15px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);

    border: 1px solid var(--border-color);

    margin-top: 10px;

    width: 280px;

    transform: translateX(-150%); /* Hidden Left */

    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    opacity: 0;

}



.fake-toast.show {

    transform: translateX(0);

    opacity: 1;

}



.toast-img {

    width: 40px;

    height: 40px;

    background: #e2e8f0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.2rem;

}



.toast-content h4 {

    font-size: 0.85rem;

    margin: 0;

    font-weight: 700;

}



.toast-content p {

    font-size: 0.75rem;

    color: var(--text-muted);

    margin: 0;

}



.toast-time {

    font-size: 0.7rem;

    color: #94a3b8;

    position: absolute;

    top: 10px;

    right: 15px;

}


/* =========================================
   ARTICLE / TUTORIAL PAGE STYLES (NEW)
   ========================================= */

/* Shared Article Styles for consistency across all pages */
.article-highlight, .tutorial-step {
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.15s ease-in-out;
    margin-bottom: 2rem;
}

.article-highlight:hover, .tutorial-step:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.article-content p, .article-content li {
    font-size: 1.125rem; /* 18px */
    line-height: 1.75;
    color: #374151;
    margin-bottom: 1.25rem;
}

/* Utilities (Tailwind-like adaptations) */
.bg-gray-50 { background-color: #f9fafb; }
.bg-white { background-color: #ffffff; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-red-50 { background-color: #fef2f2; }
.bg-yellow-50 { background-color: #fefce8; }
.bg-gray-900 { background-color: #111827; }

.text-center { text-align: center; }
.text-left { text-align: left; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.pl-5 { padding-left: 1.25rem; }
.pl-6 { padding-left: 1.5rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }

.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-white { color: #ffffff; }

.text-green-500 { color: #22c55e; }
.text-green-600 { color: #16a34a; }
.text-green-800 { color: #166534; }

.text-blue-700 { color: #1d4ed8; }
.text-blue-800 { color: #1e40af; }

.text-red-500 { color: #ef4444; }
.text-red-800 { color: #991b1b; }

.text-yellow-800 { color: #854d0e; }

.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-r-lg { border-top-right-radius: 0.5rem; border-bottom-right-radius: 0.5rem; }

.border { border-width: 1px; border-style: solid; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-blue-100 { border-color: #dbeafe; }
.border-l-4 { border-left-width: 4px; }
.border-green-500 { border-color: #22c55e; }
.border-yellow-400 { border-color: #facc15; }
.border-red-500 { border-color: #ef4444; }
.border-dashed { border-style: dashed; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

.block { display: block; }
.inline-block { display: inline-block; }

.transform { transform: var(--tw-transform); }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: background-color, border-color, color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

/* Responsive Grid */
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Custom Components */
.article-page {
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.badge-green {
    background-color: #dcfce7;
    color: #166534;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.step-number-badge {
    background-color: var(--primary-green);
    color: white;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.img-placeholder {
    transition: all 0.3s ease;
}

.toc-list a {
    text-decoration: none;
    color: #4b5563;
    display: block;
    padding: 0.25rem 0;
}

.toc-list a:hover {
    color: var(--primary-green);
    transform: translateX(4px);
}

.step-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Group Hover Implementation */
.group:hover .group-hover\:text-green-600 {
    color: #16a34a;
}
.group:hover {
    border-color: #22c55e;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hover\:scale-\[1\.02\]:hover {
    transform: scale(1.02);
}

.hover\:-translate-y-1:hover {
    transform: translateY(-0.25rem);
}

.footer-link {
    color: #d2d9df;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}
.footer-link:hover {
    color: #76d94b;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* === SAFETY OVERRIDE: FORCE LIGHT FOOTER === */
.footer {
    background-color: var(--bg-light) !important;
    color: var(--text-muted) !important;
    border-top: 1px solid var(--border-color);
}
.footer-col h4 {
    color: var(--text-main) !important;
}
.footer-bottom {
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}
.footer-link {
    color: var(--text-muted) !important;
}
.footer-link:hover {
    color: var(--primary-blue) !important;
}
