:root {
    --primary-color: #2ecc71; /* Neon Green */
    --secondary-color: #1e1e1e; /* Dark Grey */
    --bg-dark: #121212; /* Blackish */
    --text-color: #f1f1f1;
    --accent-color: #00e676; /* Bright Green */
    --discord-color: #7289da;
    --heading-font: 'Inter', sans-serif;
    --body-font: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--body-font);
    letter-spacing: -0.01em;
}

/* Typography Overrides for 'Vape' Style */
h1, h2, h3, h4, h5, h6, .logo, .section-title {
    font-family: var(--heading-font);
    font-weight: 800; /* Extra bold */
    letter-spacing: -0.01em; /* Relaxed from -0.03em */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Background Glow Effect */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(46, 204, 113, 0.02) 0%, transparent 70%); /* Reduced opacity from 0.05 */
    z-index: -2;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .logo, .btn-nav, .btn-cta, .btn-secondary {
    font-family: var(--heading-font);
    /* letter-spacing removed to favor the tighter tracking defined above */
}

/* Navbar */
.navbar {
    background: #000000;
    backdrop-filter: blur(10px); /* Glassmorphism */
    padding: 0.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: none;
}

.hamburger {
    display: none;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo img {
    height: 100px;
    object-fit: contain;
    mix-blend-mode: normal; /* Remove blend mode that was causing contrast issues */
    filter: brightness(0.9) contrast(1.2); /* Adjust brightness/contrast to match pure black background */
}

.highlight {
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: #121212 !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 700 !important;
    transition: background 0.3s;
}

.btn-nav:hover {
    background: var(--accent-color);
}

/* Dropdown Menu */
.dropdown-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-link {
    color: #ccc;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.dropdown-link:hover {
    color: var(--primary-color);
}

.dropdown-toggle {
    cursor: pointer;
    font-size: 0.8rem;
    color: #ccc;
    transition: transform 0.3s ease, color 0.3s;
    padding: 5px; /* Increase click area */
}

.dropdown-toggle:hover {
    color: var(--primary-color);
}

.dropdown-item.active .dropdown-toggle {
    transform: rotate(90deg);
    color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000000;
    border: 1px solid #333;
    border-radius: 5px;
    list-style: none;
    padding: 0.5rem 0;
    display: none;
    flex-direction: column;
    min-width: 180px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    margin-top: 1rem;
    z-index: 1001;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
}

.dropdown-item.active .dropdown-menu {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #ccc;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    font-size: 0.95rem;
}

.dropdown-menu li a:hover {
    background: rgba(46, 204, 113, 0.1);
    color: var(--primary-color);
    padding-left: 2rem; /* Slide effect */
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /* overflow: hidden; Removed to allow player image to overlap */
    padding: 8rem 0 4rem;
    background: #1a1a1a;
    z-index: 10; /* Ensure hero is above next section for image overlap */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/menu.png') no-repeat 40px 118px;
    background-size: cover;
    filter: blur(2.0px);
    z-index: 0;
    transform: scale(1.05);
}

.fog-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

/* Fog Effect */
.fog-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('https://raw.githubusercontent.com/danielstuart14/CSS_FOG_ANIMATION/master/fog1.png') repeat-x;
    background-size: contain;
    opacity: 0.3; /* Reduced opacity */
    z-index: 1;
}

.fog-layer-1 {
    animation: fogAnim 60s linear infinite;
}

.fog-layer-2 {
    background: url('https://raw.githubusercontent.com/danielstuart14/CSS_FOG_ANIMATION/master/fog2.png') repeat-x;
    background-size: contain;
    animation: fogAnim 40s linear infinite reverse;
    opacity: 0.2; /* Reduced opacity */
}

@keyframes fogAnim {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Reduced darkness */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 2rem;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

@keyframes breathe {
    0% { transform: rotate(5deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.02); }
    100% { transform: rotate(5deg) scale(1); }
}

@keyframes floatAndBreathe {
    0% { transform: rotate(-5deg) translateY(0) scale(1); }
    50% { transform: rotate(-5deg) translateY(-15px) scale(1.02); }
    100% { transform: rotate(-5deg) translateY(0) scale(1); }
}

.hero-player-image {
    position: absolute;
    bottom: -120px;
    right: -260px;
    height: 900px;
    transform: rotate(5deg);
    z-index: -1; /* Behind container content */
    pointer-events: none;
    filter: drop-shadow(0 0 30px rgba(46, 204, 113, 0.3)) blur(4px) brightness(0.7);
    opacity: 0.6;
    animation: breathe 6s ease-in-out infinite;
}

@media (max-width: 1200px) {
    .hero-player-image {
        right: -100px;
        height: 625px;
        bottom: 20px;
    }
}

@media (max-width: 900px) {
    .hero-player-image {
        display: none;
    }
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    /* text-shadow removed from here to apply only to highlight */
    text-transform: uppercase;
}

.hero h2 .highlight {
    text-shadow: 0 0 20px rgba(46, 204, 113, 0.6); /* Glow only on FogClient */
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #ccc;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-cta {
    background: var(--primary-color);
    color: #121212;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px; /* Rounded pill shape */
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.4);
    text-transform: uppercase;
}

.btn-cta:hover {
    background: var(--accent-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(46, 204, 113, 0.8);
}

.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    background: rgba(46, 204, 113, 0.05);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #121212;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.6);
}

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

/* Sections General */
.section {
    padding: 3rem 1.5rem; /* Reduced from 6rem 2rem */
    position: relative;
    /* overflow: hidden; Removed to allow floating images */
}

.floating-player-left {
    position: absolute;
    left: -550px;
    bottom: -150px;
    height: 650px;
    transform: rotate(-5deg);
    z-index: 10; /* Por cima do container */
    pointer-events: none;
    filter: drop-shadow(0 0 30px rgba(46, 204, 113, 0.3)) drop-shadow(0 0 50px rgba(241, 196, 15, 0.2));
    opacity: 0.95;
    animation: floatAndBreathe 6s ease-in-out infinite;
}

@media (max-width: 1700px) {
    .floating-player-left {
        left: -320px;
        height: 550px;
    }
}

@media (max-width: 1600px) {
    .floating-player-left {
        left: -280px;
        height: 500px;
        z-index: -1; /* Move behind content on smaller screens to prevent text obstruction */
        opacity: 0.6;
    }
}

@media (max-width: 900px) {
    .floating-player-left {
        display: none;
    }
}

.dark-bg {
    background: linear-gradient(to bottom, #1a1a1a, #121212);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem; /* Reduced from 4rem */
    color: var(--primary-color);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.2); /* Reduced glow from 15px/0.4 */
    position: relative;
    /* Removed manual centering that was causing offset */
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 10px auto 0;
    box-shadow: 0 0 5px var(--primary-color); /* Reduced from 10px */
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-top: -1.5rem; /* Adjusted from -2.5rem */
    margin-bottom: 2rem; /* Reduced from 3rem */
    color: #888;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.advantage-card {
    background: rgba(37, 37, 37, 0.6);
    backdrop-filter: blur(5px);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(46, 204, 113, 0.05), transparent 40%); /* Reduced from 0.1 */
    opacity: 0;
    transition: opacity 0.4s;
}

.advantage-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 10px rgba(46, 204, 113, 0.1); /* Reduced from 20px/0.2 */
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.3); /* Reduced from 15px/0.5 */
    transition: transform 0.4s;
}

.advantage-card:hover i {
    transform: scale(1.1);
}

.advantage-card h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #fff;
}

/* Module Showcase */
.module-showcase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5rem;
    gap: 3rem;
    opacity: 0; /* Hidden for JS reveal */
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

.module-showcase.visible {
    opacity: 1;
    transform: translateY(0);
}

.module-showcase.reverse {
    flex-direction: row-reverse;
}

.module-text {
    flex: 1;
}

.module-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.module-benefits {
    list-style: none;
    margin-top: 1rem;
}

.module-benefits li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Estilo específico para itens com sublistas complexas */
.module-benefits li.multiline-benefit {
    display: block; /* Remove o flex row padrão */
}

.module-benefits li.multiline-benefit .benefit-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.module-benefits li.multiline-benefit ul {
    list-style-type: none;
    padding-left: 2rem; /* Recuo para alinhar com o texto acima */
    margin-top: 0.5rem;
}

.module-benefits li.multiline-benefit ul li {
    display: block; /* Garante que cada subitem fique em sua linha */
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.module-benefits li.multiline-benefit ul li::before {
    content: "•"; /* Bullet customizado */
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.module-benefits i {
    color: var(--primary-color);
}

.module-visual {
    flex: 1;
    background: #000;
    border: 2px solid #333;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.module-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    box-shadow: inset 0 0 20px rgba(46, 204, 113, 0.05); /* Reduced from 0.1 */
    pointer-events: none;
    border: 1px solid rgba(46, 204, 113, 0.1); /* Reduced from 0.2 */
}

.module-visual:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.15); /* Reduced from 30px/0.3 */
    transform: scale(1.02);
}

.gif-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1; /* Fully visible */
}

.placeholder-text {
    display: none; /* Hide placeholder text */
}

/* Module Separator */
.module-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    width: 80%;
    margin: 4rem auto;
    opacity: 0.3;
}

/* Discord Section */
.discord-bg {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('assets/discord-bg.jpg'); /* Optional bg image */
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

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

.discord-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.discord-info {
    max-width: 400px;
    text-align: left;
}

.discord-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.discord-info p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #ccc;
}

.btn-cta.glow {
    box-shadow: 0 0 15px var(--primary-color);
}

.discord-widget-mockup {
    background: #2f3136;
    width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    text-align: left;
}

.mockup-header {
    background: #202225;
    padding: 1rem;
    color: #fff;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.online-count {
    font-size: 0.8rem;
    color: #43b581;
}

.mockup-body {
    padding: 1rem;
}

.channel {
    color: #8e9297;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.channel:hover {
    background: #36393f;
    color: #dcddde;
}

/* Partners Section */
#partners .btn-secondary {
    margin-top: 2rem;
}

/* Footer */
footer {
    background: #000;
    padding: 2rem;
    text-align: center;
    color: #555;
    border-top: 1px solid #222;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.scroll-arrow {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 1rem auto 1rem; /* Reduced bottom margin from 3rem */
    display: block;
    animation: bounce 2s infinite;
}

/* Promo Banner */
.promo-container {
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(46, 204, 113, 0.2); /* Reduced from 0.3 */
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 3rem auto;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(46, 204, 113, 0.02); /* Reduced from 0.05 */
    position: relative;
    z-index: 2; /* Ensure it stays above the player image */
    overflow: hidden;
    animation: glowPulse 4s infinite ease-in-out;
}

.promo-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(46, 204, 113, 0.08), transparent 50%);
    pointer-events: none;
    animation: rotateLight 10s linear infinite;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(46, 204, 113, 0.02);
        border-color: rgba(46, 204, 113, 0.2);
    }
    50% {
        box-shadow: 0 0 60px rgba(46, 204, 113, 0.2), inset 0 0 50px rgba(46, 204, 113, 0.05);
        border-color: rgba(46, 204, 113, 0.4);
    }
    100% {
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(46, 204, 113, 0.02);
        border-color: rgba(46, 204, 113, 0.2);
    }
}

@keyframes rotateLight {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.promo-header {
    margin-bottom: 1.5rem;
}

.badge {
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.2rem;
    display: inline-block;
}

.badge.pulse {
    animation: pulse 2s infinite;
}

.price-box {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.5rem;
}

.new-price {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.time-block {
    background: #222;
    padding: 1rem;
    border-radius: 8px;
    min-width: 80px;
    border: 1px solid #333;
}

.time-block span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.time-block small {
    color: #888;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.promo-expiry {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: #ccc;
}

.method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.method i {
    color: var(--primary-color);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.btn-cta.pulse-green {
    animation: pulse-green 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .navbar .container {
        flex-wrap: wrap;
    }

    .hamburger {
        display: block;
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
        background: #000000;
        padding: 1rem 0;
        border-top: 1px solid #333;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .dropdown-menu {
        position: relative;
        background: transparent;
        box-shadow: none;
        border: none;
        margin-top: 0.5rem;
        opacity: 1;
        transform: none;
        padding: 0;
        display: none;
    }

    .dropdown-item.active .dropdown-menu {
        display: flex;
        flex-direction: column;
    }

    .dropdown-menu li a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    /* Hero Section Adjustments */
    .hero {
        padding-top: 6rem;
    }

    .hero h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Promo Container Mobile */
    .promo-container {
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
    }

    .badge {
        font-size: 1rem; /* Smaller badge on mobile */
        padding: 0.5rem 1rem;
        white-space: normal;
        line-height: 1.4;
    }

    .price-box {
        flex-direction: column;
        gap: 0.5rem;
    }

    .new-price {
        font-size: 2.2rem;
    }

    .countdown {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .time-block {
        min-width: 60px;
        padding: 0.5rem;
    }

    .time-block span {
        font-size: 1.5rem;
    }

    .time-block small {
        font-size: 0.7rem;
    }

    /* Buttons */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn-lg, .btn-cta {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        justify-content: center;
    }

    .promo-actions {
        width: 100%;
    }

    /* Module Showcase */
    .module-showcase {
        flex-direction: column !important;
        text-align: left;
        gap: 2rem;
    }
    
    .module-visual {
        width: 100%;
        height: 250px;
    }

    .module-benefits li {
        justify-content: flex-start;
        text-align: left;
    }

    /* Ajuste para multiline no mobile */
    .module-benefits li.multiline-benefit .benefit-header {
        justify-content: flex-start;
    }
    
    .module-benefits li.multiline-benefit ul {
        padding-left: 0;
        text-align: left; 
        display: block;
    }
    
    .discord-panel {
        flex-direction: column;
    }
    
    .discord-info {
        text-align: center;
    }
}