/* Estilos para la sección de políticas - Diseño moderno con colores corporativos */
.policies-section {
    padding: 70px 0;
    background-color: #f5f8fa;
    position: relative;
}

.policies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #60aeda, #4285b9, #2b5c8a);
}

.policy-section .row,
.policies-section .row {
    display: flex;
    flex-wrap: wrap;
}

.policy-section .col-md-4,
.policies-section .col-md-4 {
    display: flex;
}

.policy-card {
    background-color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(44, 90, 140, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.policy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(44, 90, 140, 0.15);
    background: linear-gradient(to bottom right, #ffffff, #f0f7fc);
}

.policy-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #60aeda, #2b5c8a);
    transition: width 0.35s ease;
}

.policy-card:hover::after {
    width: 100%;
}

.policy-card h4 {
    color: #2b5c8a;
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 600;
    position: relative;
    padding-left: 35px;
    font-family: 'Source Sans Pro', 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.5px;
}

.policy-card h4 i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #60aeda;
}

.policy-card p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
    flex-grow: 1;
    font-family: 'Source Sans Pro', 'Segoe UI', Roboto, sans-serif;
}

.policy-icon {
    color: #60aeda;
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.w3l_header span.line {
    display: block;
    background: linear-gradient(to right, #60aeda, #2b5c8a);
    width: 80px;
    height: 3px;
    margin: 0 auto;
    margin-top: 10px;
    border-radius: 2px;
}

/* Estilos para los títulos de sección */
.w3l_header.w3_agileits_header {
    font-family: 'Source Sans Pro', 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.w3l_header.w3_agileits_header span {
    font-weight: 600;
    color: #2b5c8a;
}

.sub_para_agile {
    font-family: 'Source Sans Pro', 'Segoe UI', Roboto, sans-serif;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Animación para los iconos - más sutil y elegante */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

.policy-card:hover .policy-icon {
    animation: float 2s ease infinite;
    color: #4285b9;
}

/* Estilos adicionales para mejorar aspecto visual */
.policy-icon::before {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background-color: rgba(96, 174, 218, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.policy-card:hover .policy-icon::before {
    background-color: rgba(96, 174, 218, 0.2);
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .policy-card {
        padding: 20px;
    }
    
    .policy-icon {
        font-size: 28px;
    }
    
    .policy-card h4 {
        font-size: 18px;
        padding-left: 30px;
    }
    
    .policy-card p {
        font-size: 15px;
    }
}

/* Estilo para pantallas pequeñas */
@media (max-width: 480px) {
    .policies-section {
        padding: 40px 0;
    }
    
    .policy-card {
        padding: 18px;
    }
    
    .policy-icon {
        margin-bottom: 15px;
    }
}