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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

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

.navbar {
    background: #fff;
    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 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b21a8;
    text-decoration: none;
}

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

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #6b21a8;
}

.btn-whatsapp {
    background: #fbbf24;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #f59e0b;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.hero {
    background: linear-gradient(135deg, #6b21a8 0%, #7c3aed 50%, #fbbf24 100%);
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

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

.hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

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

.hero-points li {
    color: #fff;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.hero-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: bold;
}

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

.section {
    padding: 80px 0;
}

.section-white {
    background: #fff;
}

.section-purple {
    background: #f3e8ff;
}

.section-yellow {
    background: #fef3c7;
}

.section-yellow-cards {
    background: #fff;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.section p {
    margin-bottom: 15px;
    color: #4a4a4a;
}

.text-purple {
    color: #6b21a8 !important;
}

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

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

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

.work-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #4a4a4a;
}

.work-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #6b21a8;
    font-weight: bold;
}

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

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

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

.profile-card-yellow {
    background: #fef3c7;
}

.profile-card h3 {
    color: #6b21a8;
    margin-bottom: 20px;
}

.profile-card ul {
    list-style: none;
}

.profile-card li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #4a4a4a;
}

.profile-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6b21a8;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.offer-card {
    background: #f9fafb;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #6b21a8;
}

.offer-card h4 {
    color: #6b21a8;
    margin-bottom: 10px;
}

.offer-card p {
    margin: 0;
    color: #4a4a4a;
}

.steps-list {
    list-style: none;
    max-width: 500px;
    margin: 0 auto 30px;
    text-align: left;
}

.steps-list li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    color: #4a4a4a;
    counter-increment: step;
}

.steps-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background: #6b21a8;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

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

.faq-item {
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
}

.faq-item h4 {
    color: #6b21a8;
    margin-bottom: 10px;
}

.faq-item p {
    margin: 0;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    color: #ccc;
    margin-bottom: 15px;
}

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

.footer-links a {
    color: #fbbf24;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 1001;
}

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

.cookie-banner p {
    margin: 0;
    color: #fff;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-container,
    .work-container,
    .profile-grid,
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}
