/* ------------------------------
   SECCIÓN - NUESTROS SERVICIOS
--------------------------------*/
body{
    background-color: #0e0e0e;
}
/* Fondo general */
.servicios-principales {
    width: 100%;
    padding: 50px 20px;
    background-color: #0e0e0e; /* fondo negro elegante */
    display: flex;
    justify-content: center;
}

.servicios-contenedor {
    max-width: 1100px;
    width: 100%;
}

/* ------------------------------
   ENCABEZADO
--------------------------------*/
.servicios-encabezado {
    text-align: center;
    margin-bottom: 40px;
}

.servicios-encabezado h2 {
    font-size: 40px;
    color: #d4af37; /* dorado */
    font-weight: 700;
    margin-bottom: 5px;
}

.servicios-subtitulo {
    font-size: 18px;
    color: #e6e6e6;
    letter-spacing: 2px;
}

/* ------------------------------
   GRID DE SERVICIOS
--------------------------------*/
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* TARJETA */
.servicio-card {
    background: #111;
    border: 1px solid #b48a2b;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10 25px rgba(0,0,0,0.6), 0 0 12px rgba(212,175,55,0.4);
}

/* Imagen */
.servicio-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 15px;
}

/* Título */
.servicio-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

/* Descripción */
.servicio-descripcion {
    color: #dcdcdc;
    font-size: 16px;
    line-height: 1.4rem;
    min-height: 60px; /* mantiene la altura para que las tarjetas queden parejas */
    margin-bottom: 15px;
}

/* Precio (si lo activas después) */
.servicio-precio {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 15px;
}

/* BOTÓN */
.btn-servicio {
    display: inline-block;
    padding: 10px 22px;
    background: #d4af37;
    color: #111;
    font-weight: 700;
    font-size: 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-servicio:hover {
    background: #b48a2b;
}

/* ------------------------------
   RESPONSIVO
--------------------------------*/
@media (max-width: 900px) {
    .servicios-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .servicio-img img {
        height: 200px;
    }

    .servicios-encabezado h2 {
        font-size: 32px;
    }
}
