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

:root {
    --yellow: #FFD700;
    --yellow-hover: #FFC000;
    --purple: #6B21A8;
    --purple-dark: #581C87;
    --purple-light: #7C3AED;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray: #666666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-yellow {
    background: var(--yellow);
    color: var(--black);
}

.btn-yellow:hover {
    background: var(--yellow-hover);
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20BD5A;
}

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

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

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--purple);
    text-decoration: none;
}

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

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s;
}

.hero {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    padding: 120px 20px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
}

.section {
    padding: 80px 20px;
}

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

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

.section-purple {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: var(--white);
}

.section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

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

.text-content p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 17px;
}

.image-content img {
    width: 100%;
    max-width: 450px;
}

.role-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.role-list li {
    padding: 20px 30px;
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    font-size: 18px;
    position: relative;
    padding-left: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.role-list li::before {
    content: "✓";
    position: absolute;
    left: 20px;
    color: var(--purple);
    font-weight: bold;
    font-size: 22px;
}

.process-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-block {
    background: var(--gray-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: var(--purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--purple);
}

.process-block p {
    color: var(--gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

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

.benefit-card p {
    color: rgba(255,255,255,0.85);
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--gray-light);
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #EBEBEB;
}

.faq-question::after {
    content: "+";
    font-size: 24px;
    color: var(--purple);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.faq-answer p {
    padding: 20px 25px;
    color: var(--gray);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.cta-section {
    background: var(--yellow);
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--black);
}

.cta-section .btn-yellow {
    background: var(--purple);
    color: var(--white);
}

.cta-section .btn-yellow:hover {
    background: var(--purple-dark);
}

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

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--white);
    flex: 1;
}

@media (max-width: 968px) {
    .hero-container,
    .two-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-image {
        order: -1;
    }

    .image-content {
        order: -1;
    }

    .process-blocks {
        grid-template-columns: 1fr;
    }

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

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .navbar .btn-whatsapp {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .section h2 {
        font-size: 28px;
    }

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

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