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

:root {
    --primary: #8B2D8B;
    --primary-dark: #6B1D6B;
    --primary-light: #A855A8;
    --secondary: #1a1a1a;
    --text: #ffffff;
    --text-dark: #e0e0e0;
    --accent: #FFD700;
    --bg-dark: #0f0f0f;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a2d 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(139, 45, 139, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(168, 85, 168, 0.2) 0%, transparent 50%);
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--primary);
}

.hero h1 {
    font-size: clamp(32px, 8vw, 64px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.hero-description {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
}

.feature-item .icon {
    font-size: 20px;
}

.cta-button {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: 2px dashed var(--primary);
    background: var(--primary);
    color: var(--text);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px 0;
}

.cta-button:hover {
    background: var(--primary-dark);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 45, 139, 0.3);
}

.cta-button-large {
    padding: 20px 50px;
    font-size: 18px;
}

.cta-subtitle {
    font-size: 14px;
    color: var(--text-dark);
    margin-top: 10px;
}

/* CONTAINER E SEÇÕES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 80px 0;
}

.section-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a2d 100%);
}

.section h2 {
    font-size: clamp(32px, 6vw, 48px);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-intro {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 50px;
    max-width: 700px;
}

/* THREE COLUMNS */
.three-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.column {
    padding: 30px;
    background: rgba(139, 45, 139, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.column:hover {
    background: rgba(139, 45, 139, 0.2);
    transform: translateY(-5px);
}

.column h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 20px;
}

.column p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* TRANSFORMATION BOX */
.transformation-box {
    background: rgba(139, 45, 139, 0.15);
    padding: 40px;
    border-radius: 8px;
    border-left: 6px solid var(--primary);
}

.transformation-box p {
    font-size: 18px;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.benefits-list li {
    font-size: 16px;
    color: var(--text-dark);
    padding: 10px 0;
}

/* KEY PHRASES */
.key-phrases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.phrase-card {
    padding: 30px;
    background: rgba(139, 45, 139, 0.1);
    border-radius: 8px;
    border-top: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.phrase-card:hover {
    background: rgba(139, 45, 139, 0.2);
    transform: translateY(-5px);
}

.phrase-card p {
    font-size: 16px;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
}

/* COMPARISON */
.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.comparison-col h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text);
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comparison-list .item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 6px;
    font-size: 16px;
}

.item.good {
    background: rgba(139, 45, 139, 0.2);
    color: var(--text);
}

.item.bad {
    background: rgba(100, 100, 100, 0.2);
    color: var(--text-dark);
}

.item .icon {
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .comparison {
        grid-template-columns: 1fr;
    }
}

/* MODULES GRID */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.module-card {
    padding: 30px;
    background: rgba(139, 45, 139, 0.1);
    border-radius: 8px;
    border-top: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.module-card:hover {
    background: rgba(139, 45, 139, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 45, 139, 0.2);
}

.module-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    opacity: 0.5;
}

.module-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text);
}

.module-card p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* DELIVERABLES */
.deliverables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.deliverable-item {
    text-align: center;
    padding: 30px;
    background: rgba(139, 45, 139, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.deliverable-item:hover {
    background: rgba(139, 45, 139, 0.2);
    transform: translateY(-8px);
}

.deliverable-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.deliverable-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary);
}

.deliverable-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* CTA FINAL */
.cta-final {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(139, 45, 139, 0.2) 0%, rgba(168, 85, 168, 0.1) 100%);
}

.cta-final h2 {
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

/* FOOTER */
.footer {
    background: var(--secondary);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(139, 45, 139, 0.3);
}

.footer p {
    color: var(--text-dark);
    margin: 5px 0;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 50px 0;
    }

    .hero-content {
        padding: 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-features {
        gap: 15px;
    }

    .feature-item {
        font-size: 12px;
    }

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

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

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