/* assets/css/main.css */

/* Estilos para la Sección Hero */
.nx-hero {
    background-color: #f4f6f8; /* El mismo gris claro del header para que fluya */
    padding-top: 80px;
    padding-bottom: 80px;
}

.nx-hero-title {
    color: #003366; /* Azul Marino */
    font-size: 3.5rem; /* Letra grande e impactante */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.nx-hero-text {
    color: #666;
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Imagen con bordes redondeados y sombra suave */
.nx-hero-img {
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Botón personalizado */
.btn-nx-primary {
    background-color: #003366;
    color: white !important;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
    border: none;
}

.btn-nx-primary:hover {
    background-color: #00aaff;
    transform: translateY(-3px);
}

/* Ajuste para pantallas pequeñas (Celulares) */
@media (max-width: 991px) {
    .nx-hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    .nx-hero-text {
        text-align: center;
    }
    .mt-4 {
        text-align: center;
    }
}
/* Estilos para los Títulos de Sección */
.nx-section-title {
    color: #003366;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.nx-section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* Tarjetas de Servicio */
.nx-service-card {
    padding: 30px;
    border-radius: 20px;
    background: #ffffff;
    transition: all 0.3s ease;
    height: 100%; /* Para que todas midan lo mismo */
}

.nx-service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.nx-service-icon {
    font-size: 3rem; /* Tamaño del icono */
    color: #00aaff; /* Azul brillante */
    margin-bottom: 20px;
}

.nx-service-card h4 {
    color: #003366;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.nx-service-card p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.5;
}
/* Imagen lateral redondeada */
.nx-side-img {
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    max-height: 500px;
    object-fit: cover;
}

/* Título grande de la parte inferior */
.nx-section-title-large {
    color: #003366;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Lista de Beneficios con Checks */
.nx-check-list {
    list-style: none;
    padding: 0;
}

.nx-check-list li {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.nx-check-list i {
    color: #ff9900; /* Naranja NX */
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 15px;
}

/* Ajuste de tarjetas para que se vean bien en la cuadrícula */
.nx-service-card {
    padding: 20px;
    margin-bottom: 10px;
}

/* Estilos para la Barra de Contacto */
.nx-contact-bar {
    background-color: #ffffff; /* O #f4f6f8 si prefieres el gris clarito */
    border-top: 1px solid #eee;
}

.nx-contact-title {
    color: #000000; /* Negro sólido como en la imagen */
    font-size: 2.2rem;
    font-weight: 800;
}

.nx-contact-item {
    font-size: 1.5rem;
    font-weight: 600;
}

.nx-contact-item .label {
    color: #0044cc; /* El azul de los números */
    margin-right: 5px;
}

.nx-contact-item .number {
    color: #0044cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nx-contact-item .number:hover {
    color: #ff9900; /* Naranja al pasar el mouse para mantener el estilo */
}

/* Responsivo para celulares */
@media (max-width: 768px) {
    .nx-contact-title {
        font-size: 1.6rem;
    }
    .nx-contact-item {
        font-size: 1.2rem;
        width: 100%; /* Se apilan en móvil */
    }
}

/* Ajuste extra para la lista de la sección 4 */
.nx-transform .nx-check-list li {
    font-size: 1rem; /* Un poco más pequeña para que quepa bien el texto largo */
    align-items: flex-start; /* Los checks se alinean arriba si el texto tiene varios renglones */
    margin-bottom: 20px;
    line-height: 1.5;
}

.nx-transform .nx-check-list i {
    margin-top: 5px; /* Baja un poco el check para que alinee con el primer renglón */
}

.bg-light {
    background-color: #f8f9fa !important; /* Un gris muy tenue para diferenciar secciones */
}

/* Estilos Formulario Sección 5 */
.contact-card {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    background: white;
}

.dark-blue-panel {
    background-color: #003366; /* El azul oscuro de NX Pay */
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Estilo de los Inputs (Línea abajo como en tu imagen) */
.nx-input {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 10px 0;
}

.nx-input:focus {
    box-shadow: none;
    border-bottom: 2px solid #003366;
}

.btn-dark-blue {
    background-color: #003366;
    color: white !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 12px 25px;
}

.btn-dark-blue:hover {
    background-color: #002244;
}