/* HERO */
.servicios-hero {
    background: #0f172a;
    color: #fff;
    padding: 100px 0;
}

.servicios-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
}

.servicios-hero p {
    color: rgba(255,255,255,0.7);
}

/* DETALLE */
.servicios-detalle {
    background: #ffffff;
    padding: 100px 0;
}

.servicio-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 10px;
    transition: all .3s ease;
}

.servicio-box:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

/* TITULO */
.servicio-box h3 {
    color: #0f172a;
    margin-bottom: 10px;
}

/* TEXTO */
.servicio-box p {
    color: #4b5563;
}

/* LISTA */
.servicio-box ul {
    padding-left: 18px;
    margin-top: 10px;
}

.servicio-box li {
    margin-bottom: 6px;
}

/* CTA */
.servicios-cta {
    background: #0b1120;
    color: #fff;
    padding: 80px 0;
}

.servicios-cta h2 {
    font-family: 'Playfair Display', serif;
}