.servicios-seccion {
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    padding: 50px 20px 60px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    font-family: 'Open Sans', sans-serif;
}

.servicios-seccion h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
    color: #004687;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.servicios-seccion p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.servicios-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.servicio-item {
    background-color: white;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    max-width: 300px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.servicio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.icono-servicio {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(0,70,135,0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.servicio-item:hover .icono-servicio {
    background-color: #004687;
    svg {
        fill: white;
    }
}

.servicio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-top: 60px; /* espacio para icono */
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    transition: transform 0.35s ease;
}

.servicio-item:hover img {
    transform: scale(1.05);
}

.servicio-text {
    padding: 20px 25px 25px 25px;
}

.servicio-text h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    color: #004687;
    margin-bottom: 12px;
    font-weight: 700;
}

.servicio-text p {
    font-size: 16px;
    line-height: 1.65;
    color: #444;
    text-align: justify;
}

/* Responsivo */
@media (max-width: 768px) {
    .servicios-container {
        flex-direction: column;
        align-items: center;
    }

    .servicio-item {
        max-width: 90%;
        margin-bottom: 30px;
    }
}
.catalogo-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.btn-catalogo {
    background-color: #004687;
    color: white;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.03em;
    box-shadow: 0 6px 18px rgba(0,70,135,0.35);
    transition: all 0.3s ease;
}

.btn-catalogo:hover {
    background-color: #00345f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,70,135,0.45);
}
