/* ===========================
   VALORES - ARQUITECTURA FINAL
   =========================== */

#nosotros_valores {
    background-color: #0b111a;
    background-image: url('../../assets/img/fondos-hexadecimales-para-redes.jpg');
    background-size: cover;
    padding: 150px 0;
    position: relative;
    overflow: hidden; 
}

/* Capa oscura de fondo */
#nosotros_valores::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(35, 35, 35, 0.7);
    z-index: 1;
}

/* Degradado superior */
#nosotros_valores::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, #000000, transparent);
    z-index: 2;
}

#nosotros_valores .container {
    position: relative;
    z-index: 10;
    max-width: 1600px;
}

/* Título centrado y blanco */
#nosotros_valores .section-title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 100px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.valores-wrapper {
    position: relative;
    width: 100%;
}

/* LÍNEA PUNTEADA ÚNICA E INFINITA */
.valores-line-connector {
    position: absolute;
    top: 55px; 
    left: -50vw;
    right: -50vw;
    height: 2px;
    background-image: linear-gradient(to right, rgba(255,255,255,0.2) 50%, transparent 50%);
    background-size: 15px 2px;
    z-index: 3;
}

.valores-grid {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.valor-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--valor-color);
}

/* SECCIÓN 1: ICONOS */
.valor-header {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    width: 100%;
}

.valor-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--valor-bg);
    border: 4px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 20;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

.valor-icon img {
    width: 45px;
    filter: brightness(0) invert(1);
}

/* NODOS INTERMEDIOS RESPONSIVOS */
.valor-node {
    position: absolute;
    top: 55px;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--valor-color);
    background: #0b111a;
    z-index: 15;
}

/* SECCIÓN 2 Y 3: TEXTOS ALINEADOS */
.valor-body {
    min-height: 200px; 
}

.valor-body h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.valor-body p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    max-width: 260px;
    margin: 0 auto;
}

/* SECCIÓN 4*/
.valor-footer {
    margin-top: auto;
    padding-top: 30px;
}

.decor-group {
    display: flex;
    align-items: center;
    color: var(--valor-color);
}

.decor-circle { width: 10px; height: 10px; border: 2px solid currentColor; border-radius: 50%; }
.decor-line { width: 60px; height: 2px; background: currentColor; }

/* RESPONSIVO PARA MÓVILES */
@media (max-width: 1024px) {
    .valores-line-connector, .valor-node {
        display: none; 
    }
    .valores-grid {
        flex-direction: column;
        gap: 60px;
    }
    .valor-body {
        min-height: auto;
    }
    #nosotros_valores {
        padding: 80px 0;
    }
}