

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* --- 1. HERO SECTION (Encabezado) --- */
/* Mantenemos el Hero oscuro para dar contraste con el menú y fuerza al título */
.services-hero {
    text-align: center;
    padding: 140px 20px 80px;
    background: #000; /* Fondo negro */
    color: white;
    margin-bottom: 60px;
}

.hero-content { max-width: 800px; margin: 0 auto; }

.page-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc { font-size: 1.2rem; color: #ccc; }

/* --- 2. LISTA DE SERVICIOS (Fondo Blanco) --- */
.services-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 120px; /* Más espacio entre items */
    align-items: center;
}

/* Imágenes */
.service-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); /* Sombra gris suave y elegante */
    transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.02);
}

/* Info Texto */
.service-info { flex: 1; padding: 20px; }

.service-number {
    font-size: 5rem;
    font-weight: 900;
    color: #f0f0f0; /* Número gris muy claro de fondo */
    line-height: 1;
    margin-bottom: -30px;
    position: relative;
    z-index: 0;
}

.service-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.service-info p {
    font-size: 1.1rem;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Features */
.service-features { list-style: none; padding: 0; margin-bottom: 30px; }

.service-features li {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* Botones */
.btn-service {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-service:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

/* --- 3. CTA FINAL --- */
.services-cta {
    text-align: center;
    padding: 100px 20px;
    background: #f9f9f9; /* Gris muy tenue para diferenciar del footer */
    border-top: 1px solid #eee;
}

.services-cta h2 { font-size: 2.5rem; margin-bottom: 15px; color: var(--text-dark); }
.services-cta p { color: var(--text-grey); margin-bottom: 30px; font-size: 1.2rem; }

.btn-big-cta {
    background: var(--text-dark); /* Botón negro sólido */
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.2s;
}
.btn-big-cta:hover { transform: scale(1.05); }

/* --- RESPONSIVE DESKTOP --- */
@media (min-width: 992px) {
    .service-item { flex-direction: row; gap: 80px; text-align: left; }
    .service-item.reverse { flex-direction: row-reverse; } /* Zig-Zag */
    .service-image { flex: 1; }
    .page-title { font-size: 4rem; }
}