
        /* === ESTILOS GLOBALES === */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: #ffffff;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* === HEADER === */
        header {
            background: #000000;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffffff;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #ffffff;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #ffffff33;
        }

        .cta-nav {
            background: #ffffff33;
            color: white;
            padding: 10px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }

        .cta-nav:hover {
            background: #ffffff33;
        }

        /* === HERO SECTION === */
        .hero {
            background: #000000;
            color: white;
            padding: 160px 0 100px;
            text-align: center;
            position: relative;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-badge {
            display: inline-block;
            background: #ffffff33;
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #ffffff33;
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px #1c1e8a;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 15px 35px;
            border: 2px solid white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background 0.3s;
        }

        .btn-secondary:hover {
            background: #ffffff33;
        }

        /* === SERVICIOS === */
        .services {
            padding: 100px 0;
            background: #000000;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: #fafafa;
            margin-bottom: 1rem;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #d1dbeb;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: #000000;
            padding: 3rem 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px #00000014;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #ffffff;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px #ffffff33;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background:  #ffffff33;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .service-card p {
            color: #caced3;
            margin-bottom: 1.5rem;
        }

        .price {
            font-size: 2rem;
            font-weight: bold;
            color: #fdfdff;
            margin-bottom: 1rem;
        }

        .price-period {
            font-size: 1rem;
            color: #ffffff;
            font-weight: normal;
        }

        /* === PROCESO === */
        .process {
            padding: 100px 0;
            background: #000000;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .process-step {
            text-align: center;
            padding: 2rem;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: #ffffff33;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1.5rem;
        }

        /* === POR QUÉ ELEGIRNOS === */
        .why-us {
            padding: 100px 0;
            background: #000000;
            color: white;
        }

        .why-us .section-title h2 {
            color: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .feature-icon {
            background: #ffffff33;
            padding: 12px;
            border-radius: 10px;
            flex-shrink: 0;
        }

        /* === TESTIMONIOS === */
        .testimonials {
            padding: 100px 0;
            background: #000000;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            border: #ffffff 1px solid;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            position: relative;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }

        .testimonial-author {
            font-weight: bold;
            color: #ffffff;
        }

        /* === FAQ (Preguntas Frecuentes) === */
        /* === FAQ (Preguntas Frecuentes) con Acordeón === */
.faq {
    background: #000000;
    color: #ffffff;
    padding: 100px 0;
}

.faq .section-title h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fafafa;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #0a0a0a;
    border: 1px solid #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    cursor: pointer;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #ffffff;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #111111;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem 2rem 1.5rem;
}

.faq-item.active {
    border-color: #3a3a3a;
    background: #0f0f0f;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #888;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .faq .section-title h2 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }
}


/* === CTA FINAL (Contacto) === */
.final-cta {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 100px 0;
    border-top: 1px solid #1e1e1e;
}

.final-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #fafafa;
}

.final-cta p {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.final-cta ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem auto 2rem;
    max-width: 600px;
    text-align: left;
}

.final-cta ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #1e1e1e;
    color: #cbd5e1;
    font-size: 1rem;
}

.final-cta ul li:last-child {
    border-bottom: none;
}

.final-cta a.btn-primary {
    display: inline-block;
    background: #1a1a1a;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.final-cta a.btn-primary:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .faq .section-title h2,
    .final-cta h2 {
        font-size: 2rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .final-cta ul {
        text-align: left;
        padding: 0 1rem;
    }
}


        /* === CTA FINAL === */
        .final-cta {
            background: #000000;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        /* === FOOTER === */
        footer {
            background: #000000;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: #f8fafc;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #ffffff33;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #334155;
            color: #94a3b8;
        }

        /* === RESPONSIVE === */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
        }