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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0B1220;
    color: #D6DCE5;
    overflow-x: hidden;
}

.gradient-text {
    background: linear-gradient(135deg, #C9A461, #E8D4A0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #C9A461;
    margin-bottom: 12px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    background: rgba(11, 18, 32, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 100;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #FAFAFA;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.nav-cta {
    color: #0B1220;
    background-color: #C9A461;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.nav-cta:hover {
    transform: scale(1.04);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 20px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1758448756207-54505680d130?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11,18,32,0.9) 0%, rgba(11,18,32,0.75) 50%, rgba(11,18,32,0.97) 100%);
}

.badge {
    position: relative;
    font-size: 0.85rem;
    padding: 6px 16px;
    border: 1px solid rgba(201, 164, 97, 0.4);
    border-radius: 20px;
    background: rgba(201, 164, 97, 0.12);
    color: #E8D4A0;
    margin-bottom: 28px;
}

.hero h1 {
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    line-height: 1.05;
    font-weight: 700;
    color: #FAFAFA;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero .subtitulo {
    position: relative;
    font-size: 1.15rem;
    color: #B8C0CC;
    max-width: 560px;
    margin-bottom: 40px;
}

.cta-btn {
    background-color: #C9A461;
    color: #0B1220;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(201, 164, 97, 0.3);
}

/* Barra de estadísticas */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #101A2E;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat {
    text-align: center;
    padding: 48px 32px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.stat:last-child {
    border-right: none;
}

.stat .numero {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #C9A461;
    margin-bottom: 10px;
}

.stat p {
    color: #9CA3AF;
    font-size: 0.9rem;
    max-width: 220px;
    margin: 0 auto;
}

/* Sección Servicios */
.servicios {
    padding: 120px 48px;
    text-align: center;
    background-color: #0B1220;
}

.servicios h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #FAFAFA;
    margin-bottom: 56px;
    letter-spacing: -0.02em;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.servicio-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 28px;
    border-radius: 16px;
    text-align: left;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.servicio-card:hover {
    border-color: rgba(201, 164, 97, 0.5);
    transform: translateY(-6px);
}

.card-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 20px;
}

.servicio-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #FAFAFA;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.servicio-card p {
    color: #9CA3AF;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Sección Proceso */
.proceso {
    padding: 120px 48px;
    text-align: center;
    background-color: #101A2E;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.proceso h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #FAFAFA;
    margin-bottom: 56px;
    letter-spacing: -0.02em;
}

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

.proceso-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #C9A461;
    color: #0B1220;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.proceso-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: #FAFAFA;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.proceso-item p {
    color: #9CA3AF;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Testimonios */
.testimonios {
    padding: 120px 48px;
    text-align: center;
    background-color: #0B1220;
}

.testimonios h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #FAFAFA;
    margin-bottom: 56px;
    letter-spacing: -0.02em;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonio-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: left;
}

.testimonio-card p {
    color: #D6DCE5;
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonio-autor {
    color: #C9A461;
    font-size: 0.85rem;
    font-weight: 600;
}

/* CTA Final */
.cta-final {
    padding: 140px 48px;
    text-align: center;
    background-color: #101A2E;
}

.cta-final h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    line-height: 1.1;
    font-weight: 700;
    color: #FAFAFA;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-final p {
    font-size: 1.05rem;
    color: #9CA3AF;
    margin-bottom: 32px;
}

/* Footer */
.footer {
    padding: 60px 48px 40px;
    text-align: center;
    background-color: #0B1220;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer .logo {
    display: block;
    margin-bottom: 16px;
}

.footer p {
    color: #6B7280;
    font-size: 0.85rem;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 28px;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #C9A461;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 2.6rem;
    }
    .stats-row,
    .servicios-grid,
    .proceso-grid,
    .testimonios-grid {
        grid-template-columns: 1fr;
    }
    .cta-final h2 {
        font-size: 2.2rem;
    }
}