.hero-section {
    min-height: 85vh;
    background:
        linear-gradient(90deg, rgba(90, 90, 90, 0.2), rgba(90, 90, 90, 0.2)),
        url('../../img/inicio/stadium2.png') center/cover no-repeat;
}

.card img {
    height: 180px;
    object-fit: cover;
}

.navbar-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}


/* ######################## NAVBAR ######################### */
/* FIX NAVBAR COLLAPSE */
.navbar-collapse {
    visibility: visible !important;
}

.navbar-mundial {
    position: fixed !important;
    /* fuerza que sea fijo */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #2A398D;
    /* azul del mundial */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Evitar que el contenido quede debajo del navbar */
body {
    padding-top: 80px;
    /* ajusta según la altura del navbar */
}

/* Estilos del navbar */
.navbar-mundial .navbar-brand span {
    letter-spacing: 0.5px;
}

.navbar-mundial .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-mundial .nav-link:hover {
    color: #ffffff;
}

.navbar-mundial .navbar-toggler {
    border-color: rgba(255, 255, 255, .3);
}


/* NAVBAR ACTIVE UNDERLINE */
.navbar .nav-link {
    position: relative;
    padding-bottom: 6px;
    transition: color 0.3s ease;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #ffc107;
    /* amarillo Bootstrap */
    transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active-link::after {
    width: 100%;
}

.navbar .nav-link.active-link {
    color: #ffc107;
}

/* ===== BOTONES NAVBAR ===== */
.nav-btn {
    position: relative;
    text-decoration: none;
}

/* línea */
.nav-btn::after {
    content: "";
    position: absolute;
    left: 15%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

/* hover */
.nav-btn:hover::after {
    width: 70%;
}

/* activo */
.nav-btn.active-btn::after {
    width: 70%;
}
































/* ##################### SPONSORS ############################ */

.sponsors-section {
    background-color: #f4f6fb;
}

/* Caja principal */
.sponsors-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 0;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.2),
        0 2px 6px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Carrusel */
.sponsors-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    /* 👈 centra cuando hay pocos logos */
    gap: 48px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 10px 70px;
    /* espacio para flechas */
}

/* Logo individual */
.sponsor-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
}

/* Imagen */
.sponsor-logo img {
    max-height: 100%;
    max-width: 150px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sponsor-logo img:hover {
    transform: scale(1.08);
    opacity: 0.95;
}

/* Flechas */
.sponsor-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    z-index: 10;
}

.sponsor-arrow.left {
    left: 0;
}

.sponsor-arrow.right {
    right: 0;
}

.sponsor-arrow:hover {
    background-color: #e9ecef;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
    .sponsors-carousel {
        gap: 32px;
        padding: 10px 50px;
    }

    .sponsor-logo {
        height: 52px;
    }

    .sponsor-logo img {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .sponsors-carousel {
        gap: 26px;
        padding: 10px 45px;
    }

    .sponsor-logo {
        height: 48px;
    }

    .sponsor-logo img {
        max-width: 100px;
    }
}





































/* ##################### ALIADOS COMERCIALES ############## */
.section-carousel {
    background-color: #f8f9fa;
    padding: 4rem 0 3.5rem;
    border-top: 1px solid #e5e5e5;
}

/* WRAPPER */
.ads-carousel-wrapper {
    max-width: 1320px;
    margin: 0 auto;

}

/* CARD */
.ad-card {
    position: relative;
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}



/* IMAGEN FULL */
.ad-card img {
    width: 100%;
    height: auto;
    /* 🔥 CLAVE ABSOLUTA */
    display: block;
}


/* OVERLAY SOLO ABAJO */
.ad-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 2.5rem;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0));

    color: #fff;
    text-align: center;
}


/* TEXTO */
.ad-overlay h5 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
}

.ad-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

/* BOTÓN DISCRETO */
.ad-overlay .btn {
    font-size: 0.75rem;
    padding: 0.35rem 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
    transition: all 0.25s ease;
}

.ad-overlay .btn:hover {
    background-color: #fff;
    color: #000;
    opacity: 1;
}

/* FLECHAS DENTRO DEL CARD */
.carousel-control-prev,
.carousel-control-next {
    width: 6%;
}

/* MOBILE */
@media (max-width: 768px) {
    .ad-card {
        border-radius: 16px;
    }

    .ad-overlay {
        padding: 1.6rem;
    }

    .ad-overlay h5 {
        font-size: 1.25rem;
    }

    .ad-overlay p {
        font-size: 0.9rem;
    }
}
































/* ######################### COUNTDOWN MUNDIAL ##################### */
.countdown-section {
    background-color: #f8f9fa;
    padding: 4rem 0 3.5rem;
    border-top: 1px solid #e5e5e5;
}

.countdown-section h3 {
    letter-spacing: 2px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.time-box {
    background-color: #ffffff;
    border-radius: 14px;
    width: 120px;
    padding: 1.2rem 0.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.time-box span {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #3CAC3B;
    /* color corporativo */
    line-height: 1;
}

.time-box small {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
    .time-box {
        width: 95px;
    }

    .time-box span {
        font-size: 1.8rem;
    }
}



















/* ######################### FOOTER ##################### */
html,
body {
    background: linear-gradient(135deg, #e9f5ef, #f8f9fa);
}

#app.app-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* toda la pantalla */
}

/* Contenido principal ocupa todo el espacio restante */
.content {
    flex: auto;

}

/* ---------------- Footer ---------------- */
.footer {
    background-color: #2A398D;
    color: #ffffff;
    padding: 1.2rem 0;
    text-align: center;
    font-size: 0.9rem;
}







































/* ######################### REGISTRO ##################### */
/* ===== BACKGROUND SECTION ===== */

/* Fondo general */
.bg-quiniela {
    background: linear-gradient(135deg, #e9f5ef, #f8f9fa);
}

/* ===== GLASS CARD ===== */
.card-glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* ===== TITULO ===== */
.gradient-title {
    background: linear-gradient(90deg, #198754, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== PILLS ===== */
.custom-pills .nav-link {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    color: #555;
}

.custom-pills .nav-link.active {
    background: linear-gradient(90deg, #198754, #28a745);
}

/* ===== FORM ===== */
.form-control {
    border-radius: 12px;
}

.form-control:focus {
    box-shadow: 0 0 0 .2rem rgba(25, 135, 84, .25);
}

/* ===== INFO CARD ===== */
.card-info {
    border-radius: 22px;
    overflow: hidden;

    background: linear-gradient(135deg, #198754, #157347);
}


.hero-text span {
    font-size: .9rem;
    opacity: .85;
}

/* FEATURES */
.feature-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

/* TIP BOX */
.tip-box {
    background: rgba(255, 255, 255, .15);
    padding: 15px;
    border-radius: 12px;
    border-left: 4px solid #4ade80;
}

/* ===== CARDS MISMA ALTURA ===== */
.card-glass,
.card-info {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* El body ocupa el resto del card */
.card-glass .card-body,
.card-info .card-body {
    flex: 1;
}

/* ===== HERO CARD INFO ===== */
.card-hero {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.75));
}

.hero-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
}

.hero-text h3 {
    margin: 0;
    font-weight: 800;
}

































/* ###################### LOGIN ########################## */

/* CARD LOGIN */
.q26-login-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    border: none;
}

/* TÍTULO */
.q26-login-title {
    font-weight: 800;
    background: linear-gradient(90deg, #b30000, #ff1a1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* INPUTS */
.q26-login-input {
    border-radius: 14px;
    border: 1px solid #ddd;
}

.q26-login-input:focus {
    border-color: #b30000;
    box-shadow: 0 0 0 0.15rem rgba(179, 0, 0, 0.25);
}

/* BOTÓN LOGIN */
.q26-login-btn {
    background: linear-gradient(135deg,
            #c0392b,
            #8c1d18);
    color: #ffffff !important;
    /* 👈 CLAVE */
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    padding: 0.9rem 2.8rem;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* texto interno */
.q26-login-btn span {
    color: #ffffff;
    position: relative;
    z-index: 2;
}

/* hover */
.q26-login-btn:hover,
.q26-login-btn:focus {
    color: #ffffff !important;
    background: linear-gradient(135deg,
            #d6453a,
            #9c241d);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(140, 29, 24, 0.35);
}

/* efecto luz */
.q26-login-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-20deg);
    z-index: 1;
}

.q26-login-btn:hover::before {
    left: 125%;
    transition: left 0.6s ease;
}


/* INFO CARD */
.q26-info-body {
    position: relative;
    z-index: 2;
}

/* líneas horizontales */
.q26-info-body::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px,
            transparent 1px);
    background-size: 100% 38px;
    /* separación entre líneas */
    z-index: 0;
}

/* líneas desplazadas adicionales */
.q26-info-body::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px,
            transparent 1px);
    background-size: 100% 64px;
    background-position: 0 20px;
    z-index: 0;
}

.q26-info-body>* {
    position: relative;
    z-index: 1;
}


.q26-info-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    border: none;
    background: linear-gradient(160deg,
            #8c0f14 0%,
            #b11217 45%,
            #7a0c0c 100%);
}



/* HERO */
.q26-info-hero {
    position: relative;
    height: 220px;
}

.q26-info-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.q26-info-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.75));
}


.q26-info-text {
    position: absolute;
    bottom: 20px;
    left: 24px;
    color: #fff;
}

.q26-info-text h3 {
    margin: 0;
    font-weight: 800;
    letter-spacing: 1px;
}

.q26-info-text span {
    font-size: 0.9rem;
    opacity: 0.85;
}


/* LISTA */
.q26-info-list {
    list-style: none;
    padding: 0;
}

.q26-info-list li {
    margin-bottom: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}


/* TIP */
.q26-info-tip {
    background: rgba(255, 255, 255, 0.12);
    border-left: 4px solid rgba(255, 255, 255, 0.65);
    padding: 14px 18px;
    border-radius: 12px;
    backdrop-filter: blur(2px);
}



.q26-info-card img {
    height: 100% !important;
    object-fit: cover;
}