/* VARIABLES DE COLOR */
:root {
    --primary-blue: #0056b3;
    --text-light: #ffffff;
    --text-dark: #0a1831;
    --text-muted: #e0e0e0;
    --bg-light: #f4f7fa;
    /* Degradado invertido de Azul a Naranja */
    --gradient-brand: linear-gradient(90deg, #2979ff 0%, #ff6d00 100%);
    --gradient-blue-btn: linear-gradient(90deg, #007bff, #a000ff);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

.nv-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CINTILLO SUPERIOR (TOP BAR) */
.nv-top-bar {
    background-color: #050f21;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nv-top-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.nv-top-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nv-top-item i {
    color: #ffffff;
}

.nv-top-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.nv-top-item a:hover {
    color: #ffffff;
}

/* HEADER / NAVBAR */
.nv-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nv-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 95px; /* Ajustado ligeramente para dar espacio al logo */
}

/* Logo más grande optimizado */
.nv-logo-img {
    height: 85px; 
    width: auto;
    display: block;
}

.nv-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px;
}

.nv-nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    position: relative;
    transition: color 0.3s;
}

.nv-nav-link:hover, .nv-nav-link.active {
    color: var(--primary-blue);
}

/* BOTONES */
.nv-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.nv-btn-nav {
    background: var(--gradient-blue-btn);
    color: var(--text-light);
    border-radius: 8px;
}

.nv-btn-primary {
    background: var(--gradient-blue-btn);
    color: var(--text-light);
}

.nv-btn-outline {
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.nv-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

/* MENÚ MÓVIL */
.nv-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.nv-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

/* HERO SECTION CON CAPA DEGRADADA INTEGRADA */
.nv-hero {
    background: linear-gradient(90deg, #050f21 35%, rgba(5, 15, 33, 0.8) 55%, rgba(5, 15, 33, 0.1) 100%), 
                url('./img/proveedor-de-banderas-en-cdmx.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 110px 0 170px 0;
    color: var(--text-light);
}

.nv-hero-content {
    max-width: 650px;
    text-align: left;
}

.nv-hero-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

/* Degradado de azul a naranja aplicado perfectamente aquí */
.nv-text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.nv-hero-subtitle {
    font-size: 22px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 300;
}

.nv-hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
}

/* ICONOS DE CONFIANZA INFERIORES */
.nv-features-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.nv-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 135px;
}

.nv-feature-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.nv-feature-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

/* SECCIÓN PRODUCTOS (REPLICADO HORIZONTAL) */
.nv-products-preview {
    margin-top: -85px;
    position: relative;
    z-index: 10;
    padding-bottom: 80px;
}

.nv-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.nv-products-container-box {
    background-color: #ffffff;
    border-radius: 24px; /* Orillas redondeadas fluidas */
    padding: 30px;       /* Espaciado interno para que las tarjetas no toquen las orillas */
    
    /* Sombra degradada suave multicapa (Efecto Smooth Glow) */
    box-shadow: 
        0 4px 6px -1px rgba(10, 24, 49, 0.03),
        0 12px 25px -5px rgba(10, 24, 49, 0.08),
        0 30px 60px -10px rgba(10, 24, 49, 0.12);
    
    transition: box-shadow 0.4s ease;
}

/* Opcional: Si quieres que el contenedor reaccione sutilmente cuando el usuario interactúa */
.nv-products-container-box:hover {
    box-shadow: 
        0 4px 6px -1px rgba(10, 24, 49, 0.05),
        0 20px 35px -5px rgba(41, 121, 255, 0.06), /* Sutil destello azul en el degradado de la sombra */
        0 40px 80px -10px rgba(10, 24, 49, 0.15);
}

/* AJUSTE DE LAS TARJETAS INTERNAS */
/* Quitamos la sombra individual previa para evitar saturación visual y dejamos que hereden la limpieza del fondo */
.nv-product-card {
    background: #f8fafc; /* Un gris sumamente sutil para que contrasten hermosamente con el fondo blanco del contenedor */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none; /* Eliminamos la sombra vieja */
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(10, 24, 49, 0.04); /* Borde casi invisible para definir estructura */
}

.nv-product-card:hover {
    background: #ffffff; /* Al pasar el cursor, la tarjeta se vuelve blanca brillante */
    /* El script de main.js seguirá controlando el desplazamiento vertical perfectamente */
}

.nv-card-img-wrapper {
    width: 100%;
    height: 140px; 
    overflow: hidden;
}

.nv-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.nv-product-card:hover .nv-card-img {
    transform: scale(1.08);
}

.nv-card-footer {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-grow: 1;
}

.nv-card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.nv-card-arrow {
    color: #007bff;
    font-size: 16px;
    transition: transform 0.2s;
}

.nv-product-card:hover .nv-card-arrow {
    transform: translateX(4px);
}

/* RESPONSIVE DESIGN EN RANGOS EN PX */
@media (max-width: 1024px) {
    .nv-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .nv-hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .nv-top-wrapper {
        justify-content: center;
        gap: 15px;
    }
    .nv-menu-toggle {
        display: flex;
    }
    .nv-navbar {
        position: absolute;
        top: 95px;
        left: -100%;
        width: 100%;
        background: #ffffff;
        padding: 30px 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: 0.3s ease;
    }
    .nv-navbar.active {
        left: 0;
    }
    .nv-nav-list {
        flex-direction: column;
        gap: 20px;
    }
    .nv-hero {
        background: linear-gradient(180deg, #050f21 60%, rgba(5, 15, 33, 0.9) 100%), 
                    url('./img/proveedor-de-banderas-en-cdmx.jpg');
        padding: 60px 0 120px 0;
    }
    .nv-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nv-top-bar {
        display: none;
    }
    .nv-products-grid {
        grid-template-columns: 1fr;
    }
    .nv-hero-title {
        font-size: 32px;
    }
    .nv-hero-actions {
        flex-direction: column;
    }
}



/* ==========================================
   SECCIÓN ¿POR QUÉ ELEGIR NOVAPRINT?
   ========================================== */
.nv-about-section {
    padding: 100px 0;
    background-color: #f4f7fa;
}

.nv-about-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 60px;
    align-items: center;
}

.nv-section-tag {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #7b1fa2;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.nv-about-title {
    font-size: 42px;
    font-weight: 700;
    color: #0a1831;
    line-height: 1.2;
    margin-bottom: 24px;
}

.nv-text-blue-gradient {
    background: linear-gradient(90deg, #0056b3, #00a0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nv-about-text {
    font-size: 15px;
    color: #55627a;
    line-height: 1.7;
    margin-bottom: 35px;
}

.nv-btn-about {
    background: linear-gradient(90deg, #007bff, #a000ff);
    color: #ffffff;
    border-radius: 8px;
}

/* Contenedor Gráfico de la Derecha */
.nv-about-media-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
}

.nv-main-image-container {
    width: 85%;
    height: 100%;
    margin-left: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.nv-about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Estilo Base de las Tarjetas Flotantes (Badges) */
.nv-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(10, 24, 49, 0.12);
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 5;
}

/* Tarjeta Azul Oscuro (Superior Derecha) */
.nv-badge-dark {
    top: -20px;
    right: -10px;
    background-color: #05142c;
    color: #ffffff;
    padding: 16px 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nv-badge-dark i {
    font-size: 24px;
    color: #00a0ff;
}

.nv-badge-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.nv-badge-sub {
    display: block;
    font-size: 13px;
    color: #b0c4de;
}

/* Tarjetas Blancas Inferiores */
.nv-badge-light {
    background-color: #ffffff;
    padding: 14px 24px;
    border: 1px solid rgba(10, 24, 49, 0.05);
}

.nv-badge-bottom-left {
    bottom: -20px;
    left: 5%;
}

.nv-badge-bottom-right {
    bottom: -20px;
    right: -10px;
}

.nv-badge-img-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.nv-badge-icon-box i {
    font-size: 22px;
    color: #7b1fa2;
}

.nv-badge-title-dark {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0a1831;
}

.nv-badge-desc-dark {
    display: block;
    font-size: 13px;
    color: #55627a;
}

/* ==========================================
   SECCIÓN NUESTROS PRODUCTOS (ICONOS)
   ========================================== */
.nv-solutions-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.nv-solutions-header {
    margin-bottom: 50px;
}

.nv-section-tag-center {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #0056b3;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.nv-solutions-title {
    font-size: 38px;
    font-weight: 700;
    color: #0a1831;
}

.nv-text-orange-gradient {
    background: linear-gradient(90deg, #ff6d00, #ffb300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Grid Horizontal de los 6 Iconos */
.nv-solutions-icons-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.nv-solution-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.nv-sol-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.nv-sol-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Tono oscuro uniforme como la imagen de muestra */
    filter: brightness(0.1) sepia(1) hue-rotate(200deg) saturate(3);
}

.nv-sol-text {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    line-height: 1.3;
}

/* Efectos Hover */
.nv-solution-icon-item:hover {
    transform: translateY(-4px);
}

.nv-solution-icon-item:hover .nv-sol-img {
    filter: none; /* Recupera los colores originales en hover */
}

/* Línea divisoria inferior con degradado */
.nv-divider-gradient {
    width: 120px;
    height: 4px;
    margin: 0 auto;
    border-radius: 2px;
    background: linear-gradient(90deg, #ff6d00, #2979ff, #aa00ff);
}

/* RESPONSIVE DESIGN (MEDIA QUERIES) */
@media (max-width: 1024px) {
    .nv-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .nv-about-media-wrapper {
        height: 350px;
    }
    .nv-main-image-container {
        width: 100%;
    }
    .nv-solutions-icons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .nv-about-title {
        font-size: 32px;
    }
    .nv-solutions-title {
        font-size: 28px;
    }
    .nv-floating-badge {
        padding: 10px 16px;
    }
    .nv-badge-dark {
        top: -10px;
    }
    .nv-solutions-icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   SECCIÓN CARRUSEL (IMPACTA EN GRANDE)
   ========================================== */
.nv-carousel-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    color: #ffffff;
    overflow: hidden;
}

.nv-carousel-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: center;
}

.nv-carousel-text {
    text-align: left;
}

.nv-carousel-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.nv-text-magenta-gradient {
    background: linear-gradient(90deg, #2979ff 0%, #ff007f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.nv-carousel-subtitle {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 300;
}

.nv-btn-carousel-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 6px;
    background: transparent;
}

.nv-btn-carousel-outline:hover {
    border-color: #ff007f;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
}

/* Contenedor e infraestructura del Slider */
.nv-slider-wrapper {
    position: relative;
    width: 100%;
}

.nv-slider-container {
    width: 100%;
    overflow: hidden;
    cursor: grab;
}

.nv-slider-container:active {
    cursor: grabbing;
}

.nv-slider-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Tarjetas Verticales estilizadas */
.nv-slider-item {
    flex: 0 0 calc((100% - 48px) / 4); /* Muestra 4 imágenes exactas en pantallas grandes */
    height: 320px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.nv-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* Previene el bug de arrastre nativo de imágenes */
}

/* Flechas de Navegación Circulares */
.nv-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #2979ff, #aa00ff);
    color: #ffffff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(41, 121, 255, 0.4);
    transition: opacity 0.3s, transform 0.2s;
}

.nv-slider-arrow:hover {
    transform: translateY(-50%) scale(1.1);
}

.nv-arrow-left { left: -22px; }
.nv-arrow-right { right: -22px; }

/* Indicadores de Puntos (Dots) */
.nv-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.nv-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.nv-slider-dot.active {
    background-color: #ffffff;
    transform: scale(1.3);
}

/* ==========================================
   SECCIÓN ESPECIFICACIONES TÉCNICAS (ESTÁNDAR)
   ========================================== */
.nv-specs-section {
    padding: 60px 0px;
    background-color: #ffffff;
}

.nv-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 35px;
}

.nv-specs-box {
    background-color: #ffffff;
}

.nv-specs-heading {
    font-size: 13px;
    font-weight: 700;
    color: #2979ff;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.nv-heading-purple {
    color: #aa00ff;
}

.nv-specs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0px;
    margin: 0px;
}

.nv-specs-list li {
    display: flex;
    align-items: center;
    padding: 16px 0px;
    border-bottom: 1px solid #f1f5f9;
}

.nv-specs-list li:last-child {
    border-bottom: none;
}

.nv-spec-icon {
    width: 36px;
    color: #2979ff;
    font-size: 16px;
}

.nv-specs-box:last-child .nv-spec-icon {
    color: #aa00ff;
}

.nv-spec-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    width: 180px;
    flex-shrink: 0;
}

.nv-spec-value {
    font-size: 14px;
    color: #64748b;
    font-weight: 400;
}

/* BANNER COMPLEMENTARIO: MEDIDAS SOBRE PEDIDO */
.nv-monumental-notice-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8fafc;
    border-left: 4px solid #2979ff;
    border-radius: 0px 12px 12px 0px;
    padding: 24px 30px;
    margin-top: 10px;
    box-shadow: 0px 4px 12px rgba(15, 23, 42, 0.03);
}

.nv-monumental-icon {
    width: 46px;
    height: 46px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2979ff;
    font-size: 20px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.nv-monumental-p {
    margin: 0px;
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
}

.nv-monumental-strong {
    color: #0f172a;
    font-weight: 700;
}

/* RESPONSIVE DESIGN (MEDIA QUERIES) */
@media (max-width: 950px) {
    .nv-specs-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .nv-specs-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .nv-spec-name {
        width: 100%;
    }
    .nv-monumental-notice-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px;
    }
}

/* ==========================================
   SECCIÓN PRE-FOOTER (TRIPLE COLUMNA)
   ========================================== */
.nv-prefooter-section {
    padding: 80px 0px;
    background-color: #ffffff;
}

.nv-prefooter-grid {
    display: grid;
    grid-template-columns: 280px 1fr 340px;
    gap: 40px;
    align-items: center;
}

.nv-prefooter-column {
    display: flex;
    flex-direction: column;
}

.nv-prefooter-heading {
    font-size: 12px;
    font-weight: 700;
    color: #6366f1;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

/* Elementos de la columna de servicios */
.nv-aside-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0px;
}

.nv-aside-icon {
    width: 40px;
    height: 40px;
    background-color: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2979ff;
    font-size: 16px;
}

.nv-aside-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

/* Tarjeta Central Destacada (CTA) */
.nv-prefooter-cta-card {
    background: linear-gradient(135deg, #007bff 0%, #ff6d00 100%);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0px 15px 35px rgba(0, 123, 255, 0.2);
}

.nv-cta-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.nv-cta-card-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-weight: 300;
}

.nv-btn-cta-white {
    background-color: #ffffff;
    color: #0056b3;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.nv-btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 20px rgba(255, 255, 255, 0.3);
}

/* Columna de contacto derecha */
.nv-contact-aside-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nv-contact-aside-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #475569;
    line-height: 1.4;
}

.nv-contact-aside-list i {
    color: #6366f1;
    font-size: 15px;
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.nv-contact-aside-list a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.nv-contact-aside-list a:hover {
    color: #0056b3;
}

/* ==========================================
   FOOTER COMPLETO OPTIMIZADO (4 COLUMNAS)
   ========================================== */
.nv-main-footer {
    background-color: #0a1543;
    color: #94a3b8;
    padding: 80px 0px 0px 0px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nv-footer-grid {
    display: grid;
    /* Ajustado para balancear simétricamente el bloque de marca, 2 de enlaces y el de contacto */
    grid-template-columns: 280px repeat(2, 1fr) 240px;
    gap: 40px;
    padding-bottom: 60px;
}

.nv-footer-logo {
    height: 120px;
    width: auto;
    margin-bottom: 20px;
    display: block;
}

.nv-footer-brand-text {
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 13px;
    color: #64748b;
}

.nv-footer-socials {
    display: flex;
    gap: 12px;
}

.nv-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.nv-social-icon:hover {
    background-color: #2979ff;
    color: #ffffff;
    border-color: #2979ff;
}

/* Listas de enlaces del footer */
.nv-footer-title {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.nv-footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nv-footer-links-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 13px;
}

.nv-footer-links-list a:hover {
    color: #ffffff;
}

/* Datos de contacto del footer */
.nv-footer-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nv-footer-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.4;
}

.nv-footer-info-list i {
    color: #ffffff;
    font-size: 14px;
    margin-top: 2px;
    width: 14px;
}

.nv-footer-info-list a {
    color: #94a3b8;
    text-decoration: none;
}

/* Barra inferior de derechos */
.nv-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0px;
    text-align: center;
    font-size: 12px;
    color: #475569;
}

/* RESPONSIVE DESIGN (MEDIA QUERIES EN PX) */
@media (max-width: 1100px) {
    .nv-prefooter-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .nv-prefooter-cta-card {
        order: -1;
    }
    .nv-footer-grid {
        /* Pasa a 2 columnas en pantallas medianas distribuyendo el espacio equitativamente */
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .nv-footer-brand-block, 
    .nv-footer-contact-info {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .nv-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .nv-footer-brand-block, 
    .nv-footer-contact-info {
        grid-column: span 1;
    }
}


/* ==========================================
   SECCIÓN NOSOTROS (HERO + HISTORIA)
   ========================================== */

/* 1. HEADER HERO GENERAL */
.nv-about-hero {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-color: #050f21;
    padding: 110px 0px 170px 0px; /* Relleno estructural que hereda el comportamiento del inicio */
    overflow: hidden;
}

/* Bloque contenedor del texto del Hero */
.nv-about-hero-content {
    max-width: 540px;
    text-align: left !important;
}

.nv-about-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0px 0px 24px 0px;
    letter-spacing: -0.5px;
    text-align: left !important;
}

/* Colores en degradado idénticos a la maqueta */
.nv-about-text-purple {
    background: linear-gradient(45deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nv-about-text-orange {
    background: linear-gradient(45deg, #ff761b, #ffba43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nv-about-hero-description {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0px 0px 35px 0px;
    font-weight: 400;
    text-align: left !important;
}

/* Elemento de experiencia (Badge) */
.nv-about-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left !important;
}

.nv-about-badge-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818cf8;
    font-size: 20px;
}

.nv-about-badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 14px;
}

.nv-about-badge-text strong {
    color: #ffffff;
    font-weight: 700;
}

.nv-about-badge-text span {
    color: #94a3b8;
}

/* Elemento SVG de Ondas */
.nv-about-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.nv-about-hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.nv-about-wave-fill {
    fill: #ffffff; /* Ajusta este color si el fondo de tu sección historia cambia */
}

/* 2. SECCIÓN HISTORIA */
.nv-history-section {
    padding: 80px 0px;
    background-color: #ffffff;
}

.nv-history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.nv-history-text-block {
    text-align: left !important;
}

.nv-history-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin: 0px 0px 24px 0px;
    letter-spacing: -0.5px;
    text-align: left !important;
}

.nv-history-title-blue {
    color: #2979ff;
}

.nv-history-paragraph {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin: 0px 0px 20px 0px;
    text-align: left !important;
}

.nv-history-paragraph:last-of-type {
    margin-bottom: 0px;
}

/* Caja de Imagen */
.nv-history-image-block {
    width: 100%;
}

.nv-history-img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0px 10px 30px rgba(15, 23, 42, 0.08);
    display: block;
}

/* 3. RESPONSIVE DESIGN (MEDIA QUERIES) */
@media (max-width: 992px) {
    .nv-about-hero {
        padding: 80px 0px 130px 0px;
        background-image: linear-gradient(180deg, #050f21 45%, rgba(5, 15, 33, 0.9) 75%, rgba(5, 15, 33, 0.5) 100%) !important;
    }
    .nv-about-hero-content {
        max-width: 100%;
    }
    .nv-history-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .nv-about-hero-title {
        font-size: 32px;
    }
    .nv-about-hero-description {
        font-size: 15px;
    }
    .nv-history-title {
        font-size: 28px;
    }
}

/* ==========================================
   SECCIONES ADICIONALES DE NOSOTROS (ESENCIA, PROCESO, CTA)
   ========================================== */

/* Cabeceras de Secciones Comunes */
.nv-about-section-header {
    text-align: center !important;
    margin-bottom: 50px;
}

.nv-about-section-title {
    font-size: 28px;
    font-weight: 800;
    color: #0d1b3e;
    margin: 0px 0px 10px 0px;
    letter-spacing: -0.5px;
}

.nv-about-section-subtitle {
    font-size: 15px;
    color: #64748b;
    margin: 0px;
}

.nv-text-blue {
    color: #2979ff;
}

/* 1. SECCIÓN ESENCIA */
.nv-about-essence-section {
    padding: 60px 0px;
    background-color: #f4f4f4;
}

.nv-about-essence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0px; /* Sin separación para simular las líneas divisorias */
}

.nv-about-essence-card {
    padding: 0px 40px;
    text-align: center !important;
    border-right: 1px dashed #e2e8f0;
}

.nv-about-essence-card:last-child {
    border-right: none;
}

.nv-about-essence-icon-wrapper {
    width: 54px;
    height: 54px;
    background-color: #f0f4ff;
    color: #2979ff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.nv-about-essence-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0px 0px 16px 0px;
}

.nv-about-essence-card-p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0px;
}

/* Lista de Valores */
.nv-about-valores-list {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.nv-about-valores-list li {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nv-about-valores-list li i {
    color: #6366f1; /* Icono check púrpura violeta */
    font-size: 16px;
}

/* 2. SECCIÓN ¿POR QUÉ ELEGIR? */
.nv-about-why-section {
    padding: 60px 0px;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.nv-about-why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0px;
}

.nv-about-why-item {
    padding: 10px 20px;
    text-align: center !important;
    border-right: 1px solid #f1f5f9;
}

.nv-about-why-item:last-child {
    border-right: none;
}

.nv-about-why-icon {
    font-size: 28px;
    color: #2979ff;
    margin-bottom: 18px;
}

.nv-about-why-text {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
    margin: 0px;
    font-weight: 500;
}

/* 3. SECCIÓN ASÍ TRABAJAMOS (PROCESO) */
.nv-about-how-section {
    padding: 60px 0px 100px 0px;
    background-color: #f4f4f4;
}

.nv-about-process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    padding: 0px 40px;
}

/* Línea horizontal punteada que conecta los círculos */
.nv-about-process-line {
    position: absolute;
    top: 35px;
    left: 80px;
    right: 80px;
    height: 1px;
    border-top: 2px dashed #cbd5e1;
    z-index: 1;
}

.nv-about-process-step {
    position: relative;
    z-index: 2;
    text-align: center !important;
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nv-about-process-circle {
    position: relative;
    width: 70px;
    height: 70px;
    background-color: #050f21; /* Círculo azul marino muy oscuro */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    box-shadow: 0px 4px 10px rgba(5, 15, 33, 0.15);
}

/* Pequeña burbuja con el número secuencial */
.nv-about-process-number {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.nv-about-process-step-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0px 0px 4px 0px;
}

.nv-about-process-step-desc {
    font-size: 13px;
    color: #64748b;
    margin: 0px;
}

/* 4. BANNER DE LLAMADO A LA ACCIÓN (CTA) */
.nv-about-cta-banner {
    background: linear-gradient(90deg, #0266ff 0%, #ff4e72 100%); /* Hermoso gradiente nítido */
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 8px 30px rgba(2, 102, 255, 0.15);
}

.nv-about-cta-left {
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left !important;
}

.nv-about-cta-circle-icon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    color: #0266ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.nv-about-cta-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0px 0px 6px 0px;
}

.nv-about-cta-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0px;
}

.nv-about-cta-button {
    background-color: #ffffff;
    color: #3b82f6;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nv-about-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 992px) {
    .nv-about-essence-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .nv-about-essence-card {
        border-right: none;
        border-bottom: 1px dashed #e2e8f0;
        padding-bottom: 30px;
    }
    .nv-about-essence-card:last-child {
        border-bottom: none;
    }
    .nv-about-why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .nv-about-why-item {
        border-right: none;
    }
    .nv-about-process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .nv-about-process-line {
        display: none; /* Ocultamos la línea en vertical móvil */
    }
    .nv-about-cta-banner {
        flex-direction: column;
        gap: 24px;
        text-align: center !important;
    }
    .nv-about-cta-left {
        flex-direction: column;
        text-align: center !important;
    }
}



/* ==========================================
   HERO DE LA PÁGINA DE CONTACTO (100% ENCAPSULADO)
   ========================================== */
.nv-contact-hero {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-color: #050f21;
    padding: 120px 0px 180px 0px; /* Relleno en px para control exacto */
    overflow: hidden;
}

.nv-contact-hero .nv-contact-hero-content {
    max-width: 520px;
    text-align: left !important;
}

.nv-contact-hero .nv-contact-hero-title {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0px 0px 24px 0px;
    letter-spacing: -0.5px;
    text-align: left !important;
}

/* Degradado del texto "para ayudarte" */
.nv-contact-hero .nv-contact-text-gradient {
    background: linear-gradient(90deg, #a855f7 0%, #ff761b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nv-contact-hero .nv-contact-hero-description {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0px 0px 40px 0px;
    font-weight: 400;
    text-align: left !important;
}

/* Contenedor de características */
.nv-contact-hero .nv-contact-hero-features {
    display: flex;
    align-items: center;
    gap: 32px;
    text-align: left !important;
}

.nv-contact-hero .nv-contact-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Burbujas de iconos de Font Awesome 6 */
.nv-contact-hero .nv-contact-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.nv-contact-hero .nv-icon-purple {
    background-color: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.nv-contact-hero .nv-icon-blue {
    background-color: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.nv-contact-hero .nv-icon-cyan {
    background-color: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
}

/* Textos informativos de los iconos */
.nv-contact-hero .nv-contact-feature-text {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    line-height: 1.3;
}

.nv-contact-hero .nv-contact-feature-text strong {
    color: #ffffff;
    font-weight: 700;
}

.nv-contact-hero .nv-contact-feature-text span {
    color: #94a3b8;
}

/* Divisor de Ondas Inferior */
.nv-contact-hero .nv-contact-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.nv-contact-hero .nv-contact-hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.nv-contact-hero .nv-contact-wave-fill {
    fill: #ffffff; /* Ajusta si el fondo del siguiente bloque no es blanco puro */
}

/* Media Queries Responsivas */
@media (max-width: 768px) {
    .nv-contact-hero {
        padding: 90px 0px 140px 0px;
        background-image: linear-gradient(180deg, #050f21 45%, rgba(5, 15, 33, 0.9) 75%, rgba(5, 15, 33, 0.4) 100%) !important;
    }
    .nv-contact-hero .nv-contact-hero-content {
        max-width: 100%;
    }
    .nv-contact-hero .nv-contact-hero-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .nv-contact-hero .nv-contact-hero-title {
        font-size: 34px;
    }
    .nv-contact-hero .nv-contact-hero-description {
        font-size: 15px;
    }
}


/* ==========================================
   SECCIÓN DE FORMULARIO DE CONTACTO (ENCAPSULADA)
   ========================================== */
.nv-contact-body-section {
    padding: 80px 0px;
    background-color: #fafbfe; /* Color de fondo claro idéntico a la maqueta */
}

.nv-contact-body-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr; /* Formulario más ancho, tarjeta más angosta */
    gap: 50px;
    align-items: start;
}

/* Columna Izquierda (Texto y Formulario) */
.nv-contact-body-form-block {
    text-align: left !important;
}

.nv-contact-body-title {
    font-size: 28px;
    font-weight: 800;
    color: #0d1b3e;
    margin: 0px 0px 14px 0px;
    letter-spacing: -0.5px;
    text-align: left !important;
}

.nv-contact-body-subtitle {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0px 0px 35px 0px;
    max-width: 480px;
    text-align: left !important;
}

/* Estructura interna del Formulario */
.nv-contact-main-form {
    width: 100%;
}

.nv-contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.nv-contact-input-group {
    margin-bottom: 16px;
    width: 100%;
}

/* Inputs, Select y Textarea Estilizados */
.nv-contact-input,
.nv-contact-select,
.nv-contact-textarea {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 14px;
    color: #334155;
    outline: none;
    box-sizing: border-box;
    box-shadow: 0px 2px 4px rgba(15, 23, 42, 0.01);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nv-contact-input::placeholder,
.nv-contact-select::placeholder,
.nv-contact-textarea::placeholder {
    color: #94a3b8;
}

.nv-contact-input:focus,
.nv-contact-select:focus,
.nv-contact-textarea:focus {
    border-color: #cbd5e1;
    box-shadow: 0px 4px 10px rgba(15, 23, 42, 0.03);
}

/* Ajuste específico para el select nativo */
.nv-contact-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
}

.nv-contact-textarea {
    resize: none;
}

/* Checkbox de Privacidad */
.nv-contact-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    text-align: left !important;
}

.nv-contact-checkbox {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    cursor: pointer;
}

.nv-contact-checkbox-label {
    font-size: 13px;
    color: #475569;
    cursor: pointer;
    user-select: none;
}

/* Botón de Enviar con Degradado Exacto */
.nv-contact-submit-btn {
    background: linear-gradient(90deg, #1d4ed8 0%, #a855f7 100%);
    color: #ffffff;
    border: none;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 4px 15px rgba(29, 78, 216, 0.2);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nv-contact-submit-btn:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

/* COLUMNA DERECHA: TARJETA DE INFORMACIÓN BLANCA */
.nv-contact-body-info-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0px 10px 40px rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(241, 245, 249, 0.8);
    text-align: left !important;
}

.nv-contact-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0px 0px 30px 0px;
}

.nv-contact-card-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.nv-contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* Iconos de la tarjeta */
.nv-contact-card-icon {
    width: 40px;
    height: 40px;
    background-color: #f0f4ff;
    color: #2979ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* Ajustes de texto de la tarjeta */
.nv-contact-card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    line-height: 1.5;
}

.nv-contact-card-text strong {
    color: #0f172a;
    font-weight: 700;
}

.nv-contact-card-text span {
    color: #475569;
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 992px) {
    .nv-contact-body-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .nv-contact-body-info-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .nv-contact-form-row {
        grid-template-columns: 1fr;
        gap: 0px;
    }
    .nv-contact-body-title {
        font-size: 24px;
    }
}

/* ==========================================
   SECCIÓN MAPA Y UBICACIÓN (ENCAPSULADO)
   ========================================== */
.nv-contact-map-section {
    padding: 60px 0px 80px 0px;
    background-color: #fafbfe; /* Mantiene la coherencia de fondo de la página de contacto */
    text-align: center !important;
    /* Línea de separación superior exacta a la maqueta */
    border-top: 2px solid #e2e8f0;
}

/* Encabezado */
.nv-contact-map-header {
    margin-bottom: 35px;
    text-align: center !important;
}

.nv-contact-map-title {
    font-size: 28px;
    font-weight: 800;
    color: #0d1b3e;
    margin: 0px 0px 10px 0px;
    letter-spacing: -0.5px;
}

.nv-contact-map-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0px;
}

/* Caja del Mapa (Simula el borde limpio de la imagen) */
.nv-contact-map-container {
    width: 100%;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden; /* Obliga al mapa a heredar el redondeado de las esquinas */
    box-shadow: 0px 10px 30px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(241, 245, 249, 0.9);
    line-height: 0; /* Remueve espacios fantasmas debajo del iframe */
    margin-bottom: 40px;
}

.nv-contact-map-container iframe {
    display: block;
    width: 100%;
}

/* Tarjeta de Envíos Inferior */
.nv-contact-map-shipping-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px 40px;
    box-shadow: 0px 6px 20px rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(241, 245, 249, 0.8);
    gap: 20px;
    max-width: 540px;
    width: 100%;
    box-sizing: border-box;
    text-align: left !important; /* Alineación de los textos internos de la tarjeta */
}

/* Icono del camión azul */
.nv-contact-map-shipping-icon {
    font-size: 32px;
    color: #2979ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Textos de la tarjeta */
.nv-contact-map-shipping-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nv-contact-map-shipping-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0px;
}

.nv-contact-map-shipping-text p {
    font-size: 13px;
    color: #64748b;
    margin: 0px;
    line-height: 1.4;
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 768px) {
    .nv-contact-map-section {
        padding: 40px 0px 60px 0px;
    }
    .nv-contact-map-container iframe {
        height: 320px; /* Mapa ligeramente más bajo en tablets y móviles */
    }
    .nv-contact-map-shipping-card {
        padding: 20px;
        flex-direction: column;
        text-align: center !important;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .nv-contact-map-title {
        font-size: 24px;
    }
}

/* ==========================================
   HERO DE LA PÁGINA DE BANDERAS (100% ENCAPSULADO)
   ========================================== */
.nv-flags-hero {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-color: #050f21;
    padding: 130px 0px 190px 0px; /* Relleno estricto en px */
    overflow: hidden;
}

.nv-flags-hero .nv-flags-hero-content {
    max-width: 540px;
    text-align: left !important;
}

.nv-flags-hero .nv-flags-hero-title {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0px 0px 24px 0px;
    letter-spacing: -0.5px;
    text-align: left !important;
}

/* El degradado exacto de color del texto "que representan tu identidad" */
.nv-flags-hero .nv-flags-text-gradient {
    background: linear-gradient(90deg, #3b82f6 0%, #a855f7 45%, #ff761b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nv-flags-hero .nv-flags-hero-description {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0px 0px 40px 0px;
    font-weight: 400;
    text-align: left !important;
}

/* Contenedor tipo barra con borde cristal translúcido */
.nv-flags-hero .nv-flags-hero-stats-bar {
    display: inline-flex;
    align-items: center;
    gap: 35px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 28px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-align: left !important;
}

.nv-flags-hero .nv-flags-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Burbujas de iconos circulares */
.nv-flags-hero .nv-flags-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.nv-flags-hero .nv-stat-purple {
    background-color: rgba(168, 85, 247, 0.2);
    color: #c084fc;
}

.nv-flags-hero .nv-stat-blue {
    background-color: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.nv-flags-hero .nv-stat-cyan {
    background-color: rgba(6, 182, 212, 0.2);
    color: #22d3ee;
}

/* Textos informativos dentro de la barra de estadísticas */
.nv-flags-hero .nv-flags-stat-text {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    line-height: 1.3;
}

.nv-flags-hero .nv-flags-stat-text strong {
    color: #ffffff;
    font-weight: 700;
}

.nv-flags-hero .nv-flags-stat-text span {
    color: #94a3b8;
}

/* Divisor de Ondas Inferior */
.nv-flags-hero .nv-flags-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.nv-flags-hero .nv-flags-hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.nv-flags-hero .nv-flags-wave-fill {
    fill: #ffffff; /* Ajusta este color si el bloque que sigue no es blanco puro */
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 768px) {
    .nv-flags-hero {
        padding: 90px 0px 140px 0px;
        background-image: linear-gradient(180deg, #050f21 50%, rgba(5, 15, 33, 0.9) 80%, rgba(5, 15, 33, 0.4) 100%) !important;
    }
    .nv-flags-hero .nv-flags-hero-content {
        max-width: 100%;
    }
    .nv-flags-hero .nv-flags-hero-stats-bar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 576px) {
    .nv-flags-hero .nv-flags-hero-title {
        font-size: 34px;
    }
    .nv-flags-hero .nv-flags-hero-description {
        font-size: 15px;
    }
}

/* ==========================================
   SECCIÓN GALERÍA DINÁMICA Y LIGHTBOX
   ========================================== */
.nv-gallery-section {
    padding: 80px 0px;
    background-color: #ffffff;
    text-align: center !important;
}

.nv-gallery-header {
    margin-bottom: 30px;
}

.nv-gallery-title {
    font-size: 28px;
    font-weight: 800;
    color: #0d1b3e;
    margin: 0px;
    letter-spacing: -0.5px;
}

.nv-text-gradient-gallery {
    background: linear-gradient(90deg, #2979ff 0%, #a855f7 50%, #ff761b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Fila de Botones */
.nv-gallery-filter-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.nv-gallery-btn {
    background-color: #f1f5f9;
    color: #475569;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nv-gallery-btn:hover {
    background-color: #e2e8f0;
    color: #0f172a;
}

.nv-gallery-btn.active {
    background: linear-gradient(90deg, #4f46e5 0%, #a855f7 100%);
    color: #ffffff;
    box-shadow: 0px 4px 12px rgba(168, 85, 247, 0.2);
}

/* Rejilla de Imágenes */
.nv-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.nv-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    background-color: #f8fafc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nv-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 24px rgba(15, 23, 42, 0.08);
}

.nv-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Bloque CTA Inferior */
.nv-gallery-cta-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0px auto 60px auto;
    text-align: left !important;
}

.nv-gallery-cta-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #f0f4ff;
    color: #2979ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.nv-gallery-cta-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0px 0px 8px 0px;
}

.nv-text-purple-light {
    color: #a855f7;
}

.nv-gallery-cta-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0px 0px 16px 0px;
}

.nv-gallery-cta-btn {
    background: linear-gradient(90deg, #2979ff 0%, #a855f7 100%);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0px 4px 12px rgba(41, 121, 255, 0.2);
}

/* Fila de Características Finales */
.nv-gallery-features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid #e2e8f0;
    padding-top: 40px;
}

.nv-gallery-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left !important;
}

.nv-gallery-feature-box i {
    font-size: 20px;
    color: #2979ff;
    margin-top: 2px;
}

.nv-gallery-feature-box-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
}

.nv-gallery-feature-box-text strong {
    color: #0f172a;
    font-weight: 700;
}

.nv-gallery-feature-box-text span {
    color: #64748b;
    line-height: 1.4;
}

/* ==========================================
   ESTILOS INTERNOS DEL LIGHTBOX (MODAL)
   ========================================== */
.nv-lightbox-modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 99999;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 15, 33, 0.95); /* Color corporativo oscuro profundo */
    align-items: center;
    justify-content: center;
}

.nv-lightbox-content-wrapper {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nv-lightbox-active-image {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

/* Botón de Cerrar (Tachecito) */
.nv-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s;
}

.nv-lightbox-close:hover {
    color: #ff761b;
}

/* Flechas de Navegación */
.nv-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nv-lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nv-arrow-left { left: 40px; }
.nv-arrow-right { right: 40px; }

/* Responsive Grid */
@media (max-width: 992px) {
    .nv-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .nv-gallery-features-row { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .nv-gallery-cta-block { flex-direction: column; text-align: center !important; }
}

@media (max-width: 576px) {
    .nv-gallery-grid { grid-template-columns: 1fr; }
    .nv-gallery-features-row { grid-template-columns: 1fr; }
    .nv-lightbox-arrow { padding: 10px 15px; font-size: 20px; }
    .nv-arrow-left { left: 15px; }
    .nv-arrow-right { right: 15px; }
}