.services_row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columnas */
    gap: 25px;
    /* separación entre tarjetas */
    margin-top: 40px;
}

.service_col {
    display: flex;
    justify-content: center;
}

.service {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 340px;
}

.section_title {
    font-weight: 800;
    font-size: 30px;
    color: #096295;
    margin-top: 5px;
    font-family: 'Arial', sans-serif;
}

.section_sd h1 {
    font-weight: 800;
    font-size: 30px;
    color: #096295;
    margin-top: 26px; 
    font-family: 'Arial', sans-serif;
}

.service-area {
    background: #f9f9f9;
    /* color de fondo suave */
    padding: 60px 0;
    /* espacio arriba y abajo */
    border-radius: 12px;
    /* bordes redondeados opcionales */
}

.services-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}


.service:hover {
    transform: translateY(-8px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.12);
    border-color: #4a90e2;
    /* color celeste */
}

.service_icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.service_title h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service_text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service_button a {
    display: inline-block;
    padding: 10px 20px;
    background: #4a90e2;
    color: #fff;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s;
}

.service_button a:hover {
    background: #357ab8;
}

/* Responsive */
@media (max-width: 992px) {
    .services_row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services_row {
        grid-template-columns: 1fr;
    }
}

/*SERVICIOS DETALLADOS*/
/* Contenedor de servicios */
.row1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columnas */
    gap: 25px;
    /* separación entre tarjetas */
    margin-top: 30px;
}

/* Tarjeta individual */
.single-service {
    background-color: #fff;
    /* fondo inicial */
    border: 2px solid #ddd;
    /* borde inicial gris */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.single-service h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #333;
    /* color inicial del texto */
}

.single-service p {
    font-size: 0.95rem;
    color: #555;
    /* color inicial del texto */
}

/* Hover: fondo celeste y texto blanco */
.single-service:hover {
    background-color: #4a90e2;
    /* fondo celeste */
    color: #fff;
    /* texto blanco */
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
    /* sombra celeste */
    transform: translateY(-6px);
}

/* Para que los títulos y párrafos cambien de color al hover */
.single-service:hover h4,
.single-service:hover p {
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .row1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .row1 {
        grid-template-columns: 1fr;
    }
}

/*FIN DE SERVICIOS DETALLADOS */