/*=======================================INICIO CORPORATIVO==========================================*/

.container7 {
    padding-top: 100px;
    /* Espacio superior para evitar el desbordamiento */
    padding-bottom: 50px;
    width: 100%;
    background-color: transparent;
    background-image: url('../img/fpl.jpg');
    /* Verifica la ruta */
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.service-row {
    margin-bottom: 60px;
    /* Espacio entre cada servicio */
}

.service-img {
    width: 100%;
    max-width: 400px;
    /* Ajusta el tamaño máximo para mejorar la escala en diferentes dispositivos */
    margin: 0 auto;
    border-radius: 15px;
    background-color: transparent;
}

.service-text h2 {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 15px;
    text-align: center;
}

.service-text p {
    font-size: 16px;
    color: #555;
    text-align: justify;
    line-height: 1.6;
    /* Mejora la legibilidad */
    padding: 0 15px;
}

.btn-primary {
    background-color: #004080;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #003366;
}



/* Efecto hover en Links de Seguridad */
.container4 .col-xs-6.col-sm-4.col-md-2 img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.container4 .col-xs-6.col-sm-4.col-md-2:hover img {
    transform: scale(1.1);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}