/* Estilos para la sección de Valores de la Industria 5.0 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0b1528;
    color: #ffffff;
    overflow-x: hidden;
}

.valores-section {
    position: relative;
    padding: 90px 20px;
    background: linear-gradient(180deg, #0d1b35 0%, #060c18 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Badge de Sección */
.badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.08);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.25);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Encabezados */
h2 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #90b3e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.05rem;
    color: #8fa0dd;
    line-height: 1.6;
    max-width: 720px;
    margin-bottom: 55px;
}

/* Grid de Valores (3 columnas en escritorio) */
.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

/* Tarjeta individual de valor */
.valor-card {
    background: rgba(18, 30, 56, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.valor-card:hover {
    transform: translateY(-6px);
    background: rgba(24, 40, 72, 0.7);
    border-color: rgba(0, 212, 255, 0.35);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.12);
}

/* Icono del valor */
.valor-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.valor-card:hover .valor-icon {
    background: rgba(0, 212, 255, 0.18);
    border-color: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.valor-card h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.valor-card p {
    font-size: 0.92rem;
    color: #a3b3db;
    line-height: 1.6;
}

/* Fondo decorativo con resplandor azul */
.glow-effect-bottom {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0) 70%);
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(40px);
}

/* Diseño adaptativo para dispositivos móviles */
@media (max-width: 768px) {
    h2 {
        font-size: 2.1rem;
    }
    .valores-grid {
        grid-template-columns: 1fr;
    }
}