@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
}

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

/* Hero */
.hero {
    background-image: url('images/banner-desktop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 24px;
}

.badge {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(48px, 12vw, 120px);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.hero h1 span {
    color: #FFD700;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.subtitle {
    font-size: clamp(20px, 4vw, 32px);
    margin-bottom: 16px;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.description {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.btn-primary {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 20px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 215, 0, 0.5);
}

.urgency {
    margin-top: 24px;
    color: #FFD700;
    font-weight: 600;
    font-size: 14px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Módulos Carousel */
.modulos-section {
    padding: 120px 0;
    background: #fafafa;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    flex: 0 0 33.333%;
    padding: 0 12px;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #FFD700;
    color: #000;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
}

.carousel-btn:hover {
    background: #000;
    color: #FFD700;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* Diney Section */
.diney-section {
    padding: 120px 0;
    background: #fff;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-placeholder {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    aspect-ratio: 1/1;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-text {
    font-size: 24px;
    font-weight: 700;
    color: #999;
}

.text-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #000;
}

.big-text {
    font-size: 20px;
    margin-bottom: 32px;
    color: #666;
}

.check-list {
    list-style: none;
}

.check-list li {
    padding: 16px 0;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    color: #333;
}

/* Curso Section */
.curso-section {
    padding: 120px 0;
    background: #fafafa;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    color: #000;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.card {
    background: #fff;
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: #FFD700;
}

.card-number {
    font-size: 14px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Transformação */
.transformacao-section {
    padding: 120px 0;
    background: #fff;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-item {
    background: #fafafa;
    padding: 48px 40px;
    border-radius: 12px;
}

.comparison-item h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
}

.antes h3 {
    color: #ff4444;
}

.depois h3 {
    color: #00C851;
}

.comparison-item ul {
    list-style: none;
}

.comparison-item li {
    padding: 12px 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
}

.arrow-divider {
    font-size: 48px;
    color: #FFD700;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Oferta e Bônus */
.oferta-bonus-section {
    padding: 80px 0;
    background: #fafafa;
}

.oferta-bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.oferta-box {
    background: #fff;
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border: 2px solid #FFD700;
    display: flex;
    flex-direction: column;
}

/* Bônus Box */
.bonus-box {
    background: #000;
    border-radius: 12px;
    padding: 40px 32px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.bonus-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 32px;
    text-align: center;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bonus-item-compact {
    background: #1a1a1a;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s;
}

.bonus-item-compact:hover {
    border-color: #FFD700;
    transform: translateY(-2px);
}

.bonus-tag {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.bonus-item-compact h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.bonus-item-compact p {
    color: #999;
    font-size: 13px;
    line-height: 1.5;
}

.oferta-header {
    text-align: center;
    margin-bottom: 32px;
}

.oferta-header h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
}

.subtitulo {
    font-size: 16px;
    color: #666;
}

.price-box {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px;
    background: #fafafa;
    border-radius: 8px;
}

.de {
    font-size: 16px;
    color: #999;
}

.old-price {
    text-decoration: line-through;
}

.por {
    font-size: 18px;
    color: #666;
    margin: 8px 0;
}

.price-main {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 16px 0;
}

.price-main span {
    font-size: 48px;
    color: #FFD700;
    font-weight: 900;
}

.price-vista {
    font-size: 16px;
    color: #666;
}

.includes {
    margin-bottom: 28px;
}

.includes h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.includes ul {
    list-style: none;
}

.includes li {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.btn-comprar {
    display: block;
    background: #FFD700;
    color: #000;
    text-align: center;
    padding: 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 24px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-comprar:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 215, 0, 0.4);
}

.garantia {
    text-align: center;
    padding: 16px;
    background: #f0f9ff;
    border-radius: 8px;
}

.garantia strong {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #000;
}

.garantia p {
    font-size: 13px;
    color: #666;
}

/* FAQ */
.faq-section {
    padding: 120px 0;
    background: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 24px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.question {
    padding: 24px;
    font-weight: 700;
    font-size: 16px;
    background: #fafafa;
    cursor: pointer;
}

.answer {
    padding: 24px;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 48px 24px;
    text-align: center;
}

footer p {
    opacity: 0.6;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        background-image: url('images/banner-mobile.png');
        align-items: flex-end;
        padding-bottom: 60px;
    }

    .carousel-container {
        padding: 0 50px;
    }

    .carousel-wrapper {
        margin: 0;
    }

    .carousel-slide {
        flex: 0 0 100%;
        padding: 0;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .comparison {
        grid-template-columns: 1fr;
    }

    .arrow-divider {
        transform: rotate(90deg);
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .oferta-bonus-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .oferta-box {
        padding: 40px 24px;
    }

    .section-title {
        font-size: 36px;
    }
}
