* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SEÇÃO 1: HERO */
.hero {
    position: relative;
    min-height: 110vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: url('images/HERO-THAY.png') center top/cover no-repeat;
    text-align: center;
    padding: 40px 20px 100px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.headline {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.headline .highlight {
    background: linear-gradient(90deg, #dc2626 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: none;
    display: inline-block;
}

.headline .highlight-bold {
    font-weight: 900;
}

.subheadline {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 400;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

.subheadline .highlight-orange {
    background: linear-gradient(90deg, #dc2626 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: none;
    display: inline-block;
}

.subheadline-small {
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

.reinforcement {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #4ade80;
}

.reinforcement i {
    margin-right: 8px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #14532d 0%, #16a34a 100%);
    color: #fff;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 101, 52, 0.5), 0 0 20px rgba(74, 222, 128, 0.3);
    border: 2px solid #15803d;
    border-bottom: 4px solid #f59e0b;
    animation: pulse 2s ease-in-out infinite;
}

.cta-button:hover {
    background: linear-gradient(90deg, #15803d 0%, #22c55e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 101, 52, 0.7), 0 0 30px rgba(74, 222, 128, 0.4);
    border-bottom-color: #fbbf24;
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(22, 101, 52, 0.5), 0 0 20px rgba(74, 222, 128, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(22, 101, 52, 0.7), 0 0 35px rgba(74, 222, 128, 0.5);
    }
}

.cta-button i {
    font-size: 1.4rem;
}

.access-info {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #d1d5db;
}

/* SEÇÃO 2: BENEFÍCIOS */
.benefits {
    background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    margin-top: -50px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: bold;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: #000;
    border: 2px solid #000;
    border-left: 4px solid #4ade80;
    border-radius: 8px;
    padding: 18px 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    flex: 0 1 auto;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-left-color: #22c55e;
}

.card i {
    font-size: 1.3rem;
    color: #4ade80;
    flex-shrink: 0;
}

.card p {
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    margin: 0;
}

/* SEÇÃO 3: PROVA SOCIAL */
.social-proof {
    background: #000;
    padding: 80px 0;
    text-align: center;
}

.social-proof .container {
    padding: 0;
    max-width: 100%;
}

.social-proof .section-title {
    padding: 0 20px;
}

.carousel-container {
    overflow: hidden;
    margin: 50px 0;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    cursor: grab;
    user-select: none;
}

.carousel-container.grabbing {
    cursor: grabbing;
}

.carousel {
    display: flex;
    gap: 20px;
    will-change: transform;
}

.carousel img {
    height: 500px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    pointer-events: none;
    user-select: none;
}

.subheadline-proof {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 500;
    padding: 0 20px;
}

.validity {
    font-size: 1.2rem;
    color: #fbbf24;
    margin-bottom: 30px;
    font-weight: bold;
    padding: 0 20px;
}

.social-proof .cta-button {
    margin: 0 20px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .headline {
        font-size: 2rem;
    }

    .headline .highlight {
        font-weight: 900;
    }

    .subheadline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .cards-grid {
        flex-direction: column;
        align-items: center;
    }

    .card {
        min-width: 100%;
        max-width: 400px;
    }

    .carousel img {
        height: 550px;
    }

    .hero {
        background: url('images/HERO-MOBILE-9.webp') center/cover no-repeat;
        padding: 40px 20px 140px 20px;
    }

    .benefits {
        margin-top: -100px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .carousel img {
        height: 500px;
    }
}
