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

:root {
    --yellow: #FACC15;
    --purple: #7C3AED;
    --purple-light: #EDE9FE;
    --purple-dark: #5B21B6;
    --black: #111111;
    --white: #FFFFFF;
    --yellow-light: #FEF9C3;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--black);
}

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

.nav {
    background: var(--white);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--purple);
}

.btn-whatsapp {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #E5B800;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4);
}

.btn-whatsapp-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.hero {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.1;
}

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

.hero-content {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.hero-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.hero-benefits li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.hero-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: bold;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.section {
    padding: 80px 0;
}

.section-white {
    background: var(--white);
}

.section-purple {
    background: var(--purple-light);
}

.section-yellow {
    background: var(--yellow-light);
}

.section-cta {
    background: var(--purple-dark);
    color: var(--white);
    text-align: center;
}

.section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--purple);
}

.section-purple h2,
.section-cta h2 {
    color: var(--purple-dark);
}

.section p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.role-list {
    list-style: none;
    margin-top: 20px;
}

.role-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.role-list li:last-child {
    border-bottom: none;
}

.role-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-weight: bold;
}

.role-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

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

.timeline-marker {
    width: 50px;
    height: 50px;
    background: var(--purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.timeline-content h3 {
    color: var(--purple);
    margin-bottom: 10px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.offer-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.offer-card h3 {
    color: var(--purple);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

.faq-item {
    background: var(--purple-light);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.faq-item h3 {
    color: var(--purple-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--black);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.footer {
    background: var(--black);
    color: var(--white);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black);
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1001;
}

.cookie-banner.hidden {
    display: none;
}

.btn-cookie {
    background: var(--yellow);
    color: var(--black);
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie:hover {
    background: #E5B800;
}

@media (max-width: 900px) {
    .hero-grid,
    .role-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

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

    .nav-menu {
        display: none;
    }
}

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}
