/* ===============================
   SERVICIOS – DISEÑO PROFESIONAL
   =============================== */

.servicios-main {
    max-width: 1300px;
    margin: 100px auto 0; /* ← ESTA ES LA CLAVE */
    padding: 60px 20px;
}

.servicios-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: #222;
}

/* GRID RESPONSIVE REAL */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

/* CARD */
.servicio-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.servicio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,.15);
}

/* IMAGEN GRANDE */
.servicio-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.servicio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENIDO */
.servicio-content {
    padding: 22px 24px;
    flex: 1;
}

.servicio-content h2 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #111;
}

.servicio-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* BOTÓN */
.servicio-btn {
    display: block;
    text-align: center;
    margin: 0 24px 24px;
    padding: 14px;
    border-radius: 10px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background .2s ease;
}

.servicio-btn:hover {
    background: #005ec4;
}

/* ===============================
   MOBILE AJUSTES FINOS
   =============================== */
@media (max-width: 600px) {

    .servicios-main {
        padding: 40px 16px;
    }

    .servicios-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .servicio-img {
        height: 200px;
    }

    .servicio-content h2 {
        font-size: 1.25rem;
    }
}