:root {
    --primary: #FF6B00;
    --secondary: #00FF85;
    --dark: #0A0A0A;
    --gray-dark: #121212;
    --gray-light: #1A1A1A;
    --text-main: #FFFFFF;
    --text-dim: #A0A0A0;
    --accent-glow: rgba(255, 107, 0, 0.2);
    --border: rgba(255, 255, 255, 0.05);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; }
.gradient-text {
    background: linear-gradient(90deg, #FFF, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

section { padding: 160px 0; }

/* Components */
.btn {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px var(--accent-glow);
}

.btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px var(--accent-glow);
    background: #e66000;
}

/* Animations & Interactivity */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

.float { animation: floating 4s ease-in-out infinite; }
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.glow-on-hover { transition: 0.4s; }
.glow-on-hover:hover { box-shadow: 0 0 30px rgba(255, 107, 0, 0.4); transform: scale(1.03); }

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 100px; /* Space for the header */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

/* Background Slider Animation */
.hero-bg-slider {
    position: absolute;
    top: 50%; left: 0; right: 0;
    transform: translateY(-50%);
    width: 200vw;
    z-index: 0;
    display: flex;
    align-items: center;
    opacity: 0.4;
    pointer-events: none;
}
.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(10,10,10,0.3) 0%, var(--dark) 90%);
    z-index: 1;
}
.hero-track {
    display: flex;
    gap: 30px;
    animation: scrollBg 30s linear infinite;
    padding-left: 30px;
}
.hero-track img {
    height: 45vh;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    transform: rotate(10deg);
}
@keyframes scrollBg {
    0% { transform: translateX(0); }
    100% { transform: translateX(min(-50vw, -1000px)); }
}

.hero-content { max-width: 900px; z-index: 2; text-align: center; margin: 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; }
.hero h1 { text-transform: none; font-size: clamp(1.4rem, 2.5vw, 2.2rem); line-height: 1.3; margin-bottom: 25px; padding: 0 15px; }
.hero p { font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--text-dim); margin-bottom: 40px; text-align: center; padding: 0 15px; max-width: 800px; }

/* Grid / Bento */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bento-card {
    background: var(--gray-light);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s;
}

.bento-card:hover { border-color: var(--primary); transform: translateY(-5px); }

/* Courses Section */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background: var(--gray-dark);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.course-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: 0.5s transform;
}
.course-card:hover .course-img {
    transform: scale(1.05);
}

.course-info { padding: 25px; }
.course-info h3 { margin-bottom: 15px; }
.course-price { font-size: 1.5rem; color: var(--secondary); font-weight: 700; margin-bottom: 20px; }

/* Forms */
.lead-form {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--primary);
    max-width: 600px;
    margin: 40px auto;
}

.lead-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: white;
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-dim);
}

/* Feature Cards Section (IRONFLOW IA) */
.viral-section { background: #fdfaf5; color: #1a1a1a; padding: 80px 0; }
.viral-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin: 40px 0; }
.viral-card { background: #fffcf8; border-radius: 24px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.05); }
.viral-card .icon-circle { width: 48px; height: 48px; background: #b000b0; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; color: white; font-size: 24px; }
.viral-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: #222; text-transform: none; }
.viral-card p { color: #666; font-size: 1.1rem; line-height: 1.5; }
.viral-footer { text-align: center; font-weight: 700; color: #444; font-size: 1.1rem; }

    /* Examples Section */
    .examples-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    .example-card {
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid var(--border);
        background: var(--gray-light);
        transition: 0.4s;
    }
    .example-card img {
        width: 100%;
        height: auto;
        display: block;
        transition: 0.5s;
    }
    .example-card:hover img { transform: scale(1.05); }

    /* Pricing Card */
    .price-card {
        background: linear-gradient(145deg, var(--gray-light), var(--dark));
        border: 2px solid var(--primary);
        padding: 60px;
        border-radius: 30px;
        text-align: center;
        max-width: 500px;
        margin: 50px auto;
        box-shadow: 0 20px 50px rgba(255, 107, 0, 0.15);
    }
    .price-tag { font-size: 4rem; font-weight: 700; color: var(--primary); margin: 20px 0; }
    .price-features { list-style: none; margin-bottom: 40px; text-align: left; display: inline-block; }
    .price-features li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
    .price-features li::before { content: '✓'; color: var(--secondary); font-weight: 700; }

    /* FAQ */
    .faq-item { background: var(--gray-light); border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border); overflow: hidden; }
    .faq-question { padding: 20px; cursor: pointer; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; }
    .faq-question::-webkit-details-marker { display: none; }
    .faq-question::after { content: '+'; color: var(--primary); font-size: 1.5rem; transition: 0.3s; }
    .faq-item[open] .faq-question::after { content: '−'; transform: rotate(180deg); }
    .faq-answer { padding: 0 20px 20px; color: var(--text-dim); border-top: 1px solid var(--border); padding-top: 15px; }

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .bento-grid, .viral-grid { grid-template-columns: 1fr; }
}
