/* assets/css/tpv.css */

.tpv-hero {
    background-size: cover;
    background-position: center;
    /* Cambiamos 'fixed' por 'scroll' o simplemente borramos la línea */
    background-attachment: scroll; 
    min-height: 550px;
    display: flex;
    align-items: center;
}

.tpv-hero h1 {
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* SECCIÓN 2: ÚNETE A NOSOTROS */
.tpv-join {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.nx-join-text {
    color: #003366; /* El azul marino de NX Pay */
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.nx-join-text strong {
    font-weight: 800;
}

/* Ajuste para que en móvil el texto no sea gigante */
@media (max-width: 768px) {
    .nx-join-text {
        font-size: 1.6rem;
    }
}

/* Ajuste para que en móvil no sea tan alta la franja */
@media (max-width: 768px) {
    .tpv-hero {
        min-height: 350px;
        background-attachment: scroll; /* En móvil el fixed a veces falla */
    }
}

/* SECCIÓN 3: TARJETAS INFORMATIVAS */
.bg-light-nx {
    background-color: #f4f6f8 !important;
}

/* Opcional: Si quieres que los cuadros tengan un borde blanco finito 
   para que resalten más sobre el fondo gris */
.info-box-blue, .info-box-orange {
    border: 2px solid #ffffff;
}

.info-box-blue, .info-box-orange {
    padding: 30px;
    border-radius: 15px;
    color: white;
    text-align: center;
    height: 100%;
}

/* El azul oscuro corporativo */
.info-box-blue {
    background-color: #003366;
    box-shadow: 0 10px 20px rgba(0, 51, 102, 0.2);
}

/* El naranja brillante del lanzamiento */
.info-box-orange {
    background-color: #ff9d5c; /* Ajustado al tono de tu imagen */
    box-shadow: 0 10px 20px rgba(255, 157, 92, 0.2);
}

.info-box-blue h3, .info-box-orange h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.info-box-blue p, .info-box-orange p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Aseguramos que los checks de esta página sigan el estilo naranja */
.tpv-features .nx-check-list i {
    color: #ff9d5c;
}

/* SECCIÓN 4: PÍLDORAS DE BENEFICIOS */

.nx-feature-pill {
    background-color: #e9f2ff; /* Azul muy clarito */
    border-radius: 15px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    max-width: 450px;
}

.nx-feature-pill:hover {
    transform: translateX(10px); /* Efecto sutil al pasar el mouse */
}

.pill-icon {
    background-color: #ff9d5c; /* El naranja que estamos usando */
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.nx-feature-pill span {
    color: #003366;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Ajuste para que la lista de la derecha se vea igual que las anteriores */
.tpv-details .nx-check-list i {
    color: #ff9d5c;
}

/* Ajustes para la Sección 5 */
.tpv-ecommerce {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}

/* Reutilizamos el estilo de imagen redondeada que creamos para la Home */
.nx-hero-img {
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* SECCIÓN 6: TIENDA EN LÍNEA */

.tpv-store {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.nx-large-illustration {
    /* Mantenemos el tamaño imponente */
    max-width: 100%; /* Ajustamos al 100% para que no invada si no es necesario */
    height: auto;
    /* BORRAMOS la línea de 'transition' y todo el bloque ':hover' que estaba abajo */
}

/* Ajuste para que la lista de la derecha tenga buen espacio */
.tpv-store .nx-check-list li {
    margin-bottom: 18px;
}