/* Color corporativo */
.color-nx {
    color: #003366;
}

/* El gris clarito que ya usamos en las otras páginas */
.bg-light-nx {
    background-color: #f4f6f8 !important;
}

/* Espacio para tus imágenes */
.img-placeholder {
    background-color: #e9ecef;
    border: 2px dashed #adb5bd;
    border-radius: 30px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.img-placeholder i {
    font-size: 4rem;
}

/* Títulos */
.nx-section-title-large {
    color: #003366;
    font-size: 3rem;
    font-weight: 800;
}

.nx-section-title {
    color: #003366;
    font-weight: 800;
    font-size: 2.2rem;
}

/* Tarjetas de seguridad */
.security-card {
    border-left: 5px solid #ff9d5c; /* Detalle naranja NX */
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* Espaciado uniforme para cada bloque */
.ecom-section {
    padding-top: 90px;
    padding-bottom: 90px;
}