/* GLOBAL VARIABLES & RESET */
:root {
    --bg-dark: #0B0E14;
    --bg-card: #151A25;
    --bg-card-hover: #1C2230;

    --text-main: #E0E6ED;
    --text-muted: #8B9BB4;

    --primary-blue: #2B58C9;
    --primary-blue-hover: #3A6CE6;
    --accent-blue-light: #5A8DF0;

    --accent-red: #E63946;
    --accent-gold: #FFD700;
    --accent-gold-hover: #FFC107;
    --accent-gold-glow: rgba(255, 215, 0, 0.4);

    --border-color: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(255, 215, 0, 0.5);

    --font-main: 'Outfit', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-sm {
    margin-top: 1rem;
}

.mt-md {
    margin-top: 2rem;
}

.mt-lg {
    margin-top: 4rem;
}

.highlight-blue {
    color: var(--accent-blue-light);
}

.highlight-gold {
    color: var(--accent-gold);
}

.highlight-red {
    color: var(--accent-red);
}

/* UTIL BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #000;
    box-shadow: 0 4px 14px var(--accent-gold-glow);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.btn-gold {
    background: linear-gradient(135deg, #00C853, #00E676);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
    border: 2px solid transparent;
}

.btn-gold:hover {
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.6);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline-primary:hover {
    background: rgba(43, 88, 201, 0.1);
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

.btn-block {
    width: 100%;
}

.link-secondary {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: underline;
    transition: var(--transition);
}

.link-secondary:hover {
    color: var(--text-main);
}

/* ANIMATIONS */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 230, 118, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
}

.pulse {
    animation: pulseGlow 2s infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* NOTIFICATION BAR */
.notification-bar {
    background: #111;
    color: var(--text-main);
    text-align: center;
    padding: 10px 0;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid var(--accent-red);
}

.scarcity-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.scarcity-top .scarcity-icon {
    font-size: 1.1rem;
}

.scarcity-top .countdown {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-red);
}

@media (max-width: 600px) {
    .notification-bar {
        font-size: 0.75rem;
        padding: 8px 5px;
    }

    .scarcity-top .scarcity-icon,
    .scarcity-top .countdown {
        font-size: 0.8rem;
    }
}

/* HEADER */
.header {
    background: rgba(11, 14, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo img {
    height: 40px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--accent-blue-light);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-inner .cta-sm {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        margin-left: 10px;
    }
}

/* MOBILE MENU OVERLAY */
.mobile-menu-overlay {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50vh;
    background: rgba(11, 14, 20, 0.98);
    backdrop-filter: blur(10px);
    z-index: 99;
    /* Just below header */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: top 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--accent-red);
}

.mobile-menu-overlay.open {
    top: 60px;
    /* Below the 60px header */
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-link {
    font-size: 1.5rem;
    color: var(--text-main);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--accent-gold);
}

/* HERO SECTION (CARD LAYOUT) */
.hero {
    position: relative;
    padding: 1rem 0 3rem;
    overflow: hidden;
    background: #f8f9fa;
    /* Light background to make card pop as requested */
}

.hero {
    position: relative;
    padding: 1rem 0 3rem;
    overflow: hidden;
    background: #f8f9fa;
    /* Light background to make card pop as requested */
}

.hero-bg-glow {
    display: none;
    /* Not needed for card layout */
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    padding: 4px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-gold), rgba(255, 255, 255, 0.8));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-card {
    background-color: #fff;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 1.5rem 1rem;
    z-index: 1;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: -1;
}

.hero-card-content {
    position: relative;
    z-index: 2;
}

.guarantee-badge-top {
    display: inline-block;
    background: #166534;
    border: 2px solid #22c55e;
    color: #FFF;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--accent-gold);
    margin-bottom: 0.25rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.highlight-title {
    color: #f15a24;
    /* Orange tone for "HQs e Mangás" */
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 800;
    color: #E0E6ED;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-img-centered {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.4));
}

.hero-update-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFC107;
    margin: 1.5rem 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.hero-badge-green {
    background: transparent;
    border: none;
    color: #22c55e;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 5px 0;
    display: inline-block;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #FFF;
}

.hero-social-proof .stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.hero-actions-stacked {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.btn-xl {
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    width: 100%;
    border-radius: 8px;
}

.btn-outline-dark {
    background: var(--primary-blue);
    color: #FFF;
    border: 2px solid var(--primary-blue);
    box-shadow: 0 4px 10px rgba(43, 88, 201, 0.4);
}

.btn-outline-dark:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-2px);
    border-color: var(--primary-blue-hover);
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-update-text {
        font-size: 1rem;
    }

    .hero-badge-green {
        font-size: 0.8rem;
    }
}

/* PUBLISHERS CAROUSEL */
.publishers-section {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.publishers-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 10px;
    padding-left: 10px;
    will-change: transform;
}

.track-left {
    animation: marqueeLeft 30s linear infinite;
}

.track-right {
    animation: marqueeRight 30s linear infinite;
    flex-direction: row-reverse;
}

.publisher-card {
    min-width: 150px;
    width: 150px;
    height: 230px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    transition: var(--transition);
}

.publisher-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.publisher-card:hover {
    border-color: var(--accent-gold);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.publisher-card:hover img {
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .publisher-card {
        min-width: 120px;
        width: 120px;
        height: 180px;
    }
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* COMMON SECTION STYLES */
.section-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-subheading {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* HOW IT WORKS (VIDEO) */
.how-it-works {
    padding: 2rem 0;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    background: #000;
}

.review-card {
    min-width: 250px;
    width: 250px;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    background: transparent;
    border: none;
}

.review-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 600px) {
    .review-card {
        min-width: 200px;
        width: 200px;
        height: 380px;
    }
}

/* BENEFITS */
.benefits {
    padding: 4rem 0;
    background: radial-gradient(circle at center, rgba(43, 88, 201, 0.05) 0%, var(--bg-dark) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(90, 141, 240, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    border-radius: 12px;
}

.benefit-icon-lg {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin: 0 auto 1.5rem auto;
    border-radius: 12px;
    display: block;
}

.benefit-card.text-center {
    text-align: center;
}

.benefit-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #FFF;
}

.benefit-desc {
    color: var(--text-muted);
}

/* CONTENT SHOWCASE */
.content-showcase {
    padding: 4rem 0;
}

.cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge-gold {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.content-showcase h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content-showcase p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #00C853;
    font-size: 1.2rem;
}

.cover-stack {
    position: relative;
    height: 400px;
}

.cover {
    width: 250px;
    height: 380px;
    background: #1e1e2f;
    border-radius: 12px;
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.c1 {
    top: 0;
    left: 0;
    z-index: 1;
    transform: rotate(-5deg);
}

.c2 {
    top: 20px;
    left: 60px;
    z-index: 2;
    background: #2a2a40;
}

.c3 {
    top: 40px;
    left: 120px;
    z-index: 3;
    transform: rotate(5deg);
    background: #3a1c1c;
    border-color: rgba(230, 57, 70, 0.3);
}

@media (max-width: 900px) {
    .cols-2 {
        grid-template-columns: 1fr;
    }

    .cover-stack {
        height: 300px;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    .c1,
    .c2,
    .c3 {
        position: static;
        transform: none;
        margin: -20px;
        width: 150px;
        height: 230px;
    }

    .c2 {
        z-index: 2;
        transform: translateY(-20px) scale(1.1);
    }
}

/* BONUSES */
.bonuses {
    padding: 4rem 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}

.bonus-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.bonus-card:hover {
    background: rgba(255, 215, 0, 0.05);
    border-style: solid;
}

.bonus-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.bonus-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.bonus-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* PRICING */
.pricing {
    padding: 4rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 2rem auto;
    align-items: center;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.complete {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.15), rgba(0, 230, 118, 0.05));
    border-color: #00E676;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    margin-top: 1rem;
}

.pricing-guarantee {
    display: inline-block;
    background: #00C853;
    color: #FFF;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-top: 1rem;
    box-shadow: 0 4px 10px rgba(0, 200, 83, 0.3);
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-main);
}

.feature-list svg {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-list .disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

/* Highlighted Pricing Card */
.pricing-card.complete {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.15), rgba(0, 230, 118, 0.15));
    border: 2px solid #00E676;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 200, 83, 0.15);
}

.best-seller-ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00E676;
    color: #111;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.3);
    white-space: nowrap;
}

.basic-offer-arrow {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.secure-payment {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card.complete .pricing-header {
    border-color: rgba(0, 230, 118, 0.2);
}

.gold-text {
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.green-text {
    color: #00E676;
    text-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
}

.guarantee-content-box {
    margin: 3rem auto 0 auto;
    max-width: 700px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.guarantee-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
}

.guarantee-risk-free {
    color: var(--text-main);
    font-size: 1.05rem;
    line-height: 1.5;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .pricing-card.complete {
        transform: scale(1);
    }

    .pricing-grid {
        margin: 2rem auto;
    }
}

/* FAQ */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-card);
}

.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-blue-light);
}

.faq-question .icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    color: var(--accent-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
}

/* FOOTER */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    height: 40px;
    margin: 0 auto 1.5rem;
    opacity: 0.5;
    filter: grayscale(1);
    transition: var(--transition);
}

.footer-logo:hover {
    opacity: 1;
    filter: none;
}

.footer-disclaimer {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-main);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-blue-light);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* SALES POPUP */
.sales-popup {
    position: fixed;
    bottom: 20px;
    left: -400px;
    background: rgba(22, 101, 52, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: left 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 220px;
}

.sales-popup.show {
    left: 20px;
}

.popup-img {
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    color: #FFF;
}

.popup-info {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    color: #FFF;
}

.buyer-name {
    font-weight: 800;
    color: #FFF;
}

.buyer-action {
    color: rgba(255, 255, 255, 0.9);
}

.buyer-action strong {
    color: #FFF;
    font-weight: 800;
}

.buyer-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    margin-top: 2px;
}