/* ===================================================================
   QUINIELA 2026 – MODERN DESIGN SYSTEM
   style_home.css – Landing, Auth, Layout
   =================================================================== */

/* =========== VARIABLES =========== */
:root {
    --q-primary: #6366F1;
    --q-primary-dark: #4F46E5;
    --q-primary-light: #818CF8;
    --q-secondary: #10B981;
    --q-secondary-dark: #059669;
    --q-accent: #F59E0B;
    --q-accent-light: #FCD34D;
    --q-dark: #1E293B;
    --q-dark-2: #334155;
    --q-dark-3: #475569;
    --q-text: #334155;
    --q-text-muted: #64748B;
    --q-text-light: #94A3B8;
    --q-bg: #F8FAFC;
    --q-bg-2: #F1F5F9;
    --q-bg-3: #E2E8F0;
    --q-white: #FFFFFF;
    --q-border: #E2E8F0;
    --q-danger: #EF4444;
    --q-danger-dark: #DC2626;
    --q-radius-sm: 8px;
    --q-radius: 12px;
    --q-radius-lg: 16px;
    --q-radius-xl: 20px;
    --q-radius-full: 9999px;
    --q-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --q-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --q-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --q-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    --q-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --q-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --q-transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========== BASE =========== */
html,
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--q-bg);
    color: var(--q-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    padding-top: 80px;
}

#app.app-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1 1 auto;
}


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

.navbar-mundial {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    padding: 0.4rem 0;
    transition: var(--q-transition);
}

.navbar-logo {
    max-height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: var(--q-transition);
}

.navbar-mundial .navbar-brand span {
    letter-spacing: 1.5px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #fff 0%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-mundial .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    padding: 8px 12px !important;
    border-radius: var(--q-radius-sm);
    transition: var(--q-transition-fast);
}

.navbar-mundial .nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.navbar-mundial .nav-link i {
    font-size: 0.82rem;
    opacity: 0.7;
    transition: var(--q-transition-fast);
}

.navbar-mundial .nav-link:hover i {
    opacity: 1;
}

.navbar-mundial .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.15);
    padding: 6px 10px;
}

/* ACTIVE UNDERLINE */
.navbar .nav-link {
    position: relative;
    padding-bottom: 6px;
    transition: var(--q-transition-fast);
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--q-primary-light);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

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

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

.navbar .nav-link.active-link i {
    opacity: 1;
    color: var(--q-primary-light);
}

/* NAVBAR BUTTONS */
.btn-navbar-logout {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
    border-radius: var(--q-radius-full);
    font-size: 0.85rem;
    transition: var(--q-transition);
}

.btn-navbar-logout:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}

.btn-navbar-register {
    background: linear-gradient(135deg, var(--q-primary), var(--q-primary-dark));
    border: none;
    color: #fff !important;
    border-radius: var(--q-radius-full);
    font-size: 0.85rem;
    transition: var(--q-transition);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-navbar-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    color: #fff !important;
}

.btn-navbar-login {
    background: transparent;
    border: 1.5px solid var(--q-accent);
    color: var(--q-accent) !important;
    border-radius: var(--q-radius-full);
    font-size: 0.85rem;
    transition: var(--q-transition);
}

.btn-navbar-login:hover {
    background: var(--q-accent);
    color: var(--q-dark) !important;
    transform: translateY(-1px);
}

/* NAV-BTN */
.nav-btn {
    position: relative;
    text-decoration: none;
}

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

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

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

/* ===== MODERN NAV LINK (icon + label) ===== */
.nav-link-modern {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-link-modern .nav-icon {
    font-size: 0.82rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.nav-link-modern .nav-label {
    font-size: 0.88rem;
}

/* Buttons also use icon+label */
.btn-navbar-logout,
.btn-navbar-register,
.btn-navbar-login {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-navbar-logout .nav-icon,
.btn-navbar-register .nav-icon,
.btn-navbar-login .nav-icon {
    font-size: 0.82rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.nav-item-action {
    margin-top: 0;
}

/* ===== RESPONSIVE NAVBAR ===== */
@media (max-width: 991.98px) {
    .navbar-mundial .navbar-nav {
        padding: 1rem 0;
        gap: 2px !important;
    }

    .nav-link-modern {
        display: flex !important;
        justify-content: center;
        text-align: center;
        padding: 10px 16px !important;
        border-radius: var(--q-radius-sm);
    }

    .nav-link-modern .nav-icon {
        width: 20px;
        font-size: 0.9rem;
    }

    .nav-link-modern .nav-label {
        font-size: 0.95rem;
    }

    /* Botones centrados en mobile */
    .nav-item-action {
        margin-top: 4px;
        text-align: center;
    }

    .btn-navbar-logout,
    .btn-navbar-register,
    .btn-navbar-login {
        display: flex !important;
        justify-content: center;
        width: 100%;
        padding: 10px 16px !important;
    }

    /* Quitar underline en mobile */
    .navbar .nav-link::after {
        display: none;
    }

    /* Hover background más visible */
    .nav-link-modern:hover {
        background: rgba(255, 255, 255, 0.1) !important;
    }

    .nav-link-modern.active-link {
        background: rgba(99, 102, 241, 0.15) !important;
    }
}

/* ===== FOOTER SOCIAL ICONS ===== */
.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--q-transition);
}

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Brand colors on hover */
.footer-social a[aria-label="Facebook"]:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff;
}

.footer-social a[aria-label="Instagram"]:hover {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
    border-color: transparent;
    color: #fff;
}

.footer-social a[aria-label="TikTok"]:hover {
    background: #010101;
    border-color: #25F4EE;
    color: #fff;
    box-shadow: 0 0 15px rgba(37, 244, 238, 0.3);
}


/* LinkedIn */
.footer-social a[aria-label="LinkedIn"]:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    color: #fff;
}

/* WhatsApp */
.footer-social a[aria-label="WhatsApp"]:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.35);
}

@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
    }
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--q-transition-fast);
}

.footer-links a:hover {
    color: var(--q-primary-light);
}



/* ##################### SPONSORS ############################ */
.sponsors-section {
    background: var(--q-bg);
    padding: 3rem 0;
}

.sponsors-box {
    background: var(--q-white);
    border-radius: var(--q-radius-xl);
    padding: 26px 0;
    box-shadow: var(--q-shadow-md);
    border: 1px solid var(--q-border);
    position: relative;
}

.sponsors-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 10px 70px;
}

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

.sponsor-logo img {
    max-height: 100%;
    max-width: 150px;
    width: auto;
    object-fit: contain;
    transition: var(--q-transition);
}

.sponsor-logo img:hover {
    transform: scale(1.1);
}

.sponsor-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--q-white);
    border: 1px solid var(--q-border);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    box-shadow: var(--q-shadow);
    z-index: 10;
    color: var(--q-text);
    transition: var(--q-transition);
}

.sponsor-arrow.left {
    left: -10px;
}

.sponsor-arrow.right {
    right: -10px;
}

.sponsor-arrow:hover {
    background: var(--q-primary);
    color: #fff;
    border-color: var(--q-primary);
    box-shadow: var(--q-shadow-md);
}

@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: var(--q-bg);
    padding: 3rem 0;
    border-top: none;
}

.ads-carousel-wrapper {
    max-width: 1320px;
    margin: 0 auto;
}

.ad-card {
    position: relative;
    width: 100%;
    border-radius: var(--q-radius-xl);
    overflow: hidden;
    background: var(--q-dark);
    box-shadow: var(--q-shadow-lg);
}

.ad-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ad-card:hover img {
    transform: scale(1.03);
}

.ad-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2.5rem;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0));
    color: #fff;
    text-align: center;
}

.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;
}

.ad-overlay .btn {
    font-size: 0.75rem;
    padding: 0.4rem 1.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--q-radius-full);
    transition: var(--q-transition);
    backdrop-filter: blur(4px);
}

.ad-overlay .btn:hover {
    background-color: #fff;
    color: var(--q-dark);
}

.carousel-control-prev,
.carousel-control-next {
    width: 6%;
}

@media (max-width: 768px) {
    .ad-card {
        border-radius: var(--q-radius-lg);
    }

    .ad-overlay {
        padding: 1.6rem;
    }

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


/* ######################### HERO ##################### */
.hero-section {
    min-height: 85vh;
    background:
        linear-gradient(135deg, rgba(30, 41, 59, 0.65), rgba(99, 102, 241, 0.3)),
        url('../../img/inicio/stadium2.png') center/cover no-repeat;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--q-bg), transparent);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-section h2 {
    font-weight: 700;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

.hero-section .btn-success {
    background: linear-gradient(135deg, var(--q-secondary), var(--q-secondary-dark));
    border: none;
    border-radius: var(--q-radius-full);
    padding: 0.9rem 2.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
    transition: var(--q-transition);
}

.hero-section .btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.45);
}

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


/* ######################### COUNTDOWN ##################### */
.countdown-section {
    background: var(--q-bg);
    padding: 4rem 0 3.5rem;
    position: relative;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--q-border), transparent);
}

.countdown-section h3 {
    letter-spacing: 2px;
    color: var(--q-dark);
    font-weight: 800;
}

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

.time-box {
    background: var(--q-white);
    border-radius: var(--q-radius-lg);
    width: 120px;
    padding: 1.4rem 0.5rem;
    box-shadow: var(--q-shadow-md);
    border: 1px solid var(--q-border);
    transition: var(--q-transition);
}

.time-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--q-shadow-lg);
    border-color: var(--q-primary-light);
}

.time-box span {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--q-primary), var(--q-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.time-box small {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--q-text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

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

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


/* ######################### FOOTER ##################### */
.footer {
    background: linear-gradient(135deg, var(--q-dark), #0F172A);
    color: rgba(255, 255, 255, 0.85);
    padding: 2rem 0 1.5rem;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand strong {
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: #fff;
}

.footer-brand-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.footer-brand-title strong {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-brand-title img {
    transition: transform .2s ease;
}

.footer-brand-title img:hover {
    transform: scale(1.08);
}

.footer-tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 4px 0 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--q-transition-fast);
}

.footer-links a:hover {
    color: var(--q-primary-light);
}

.footer-copy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}


/* ######################### REGISTRO ##################### */
.bg-quiniela {
    background: linear-gradient(135deg, var(--q-bg), var(--q-bg-2));
}

.card-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--q-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--q-shadow-lg);
}

.gradient-title {
    background: linear-gradient(135deg, var(--q-primary), var(--q-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* PILLS */
.custom-pills .nav-link {
    border-radius: var(--q-radius-full);
    padding: 10px 28px;
    font-weight: 600;
    color: var(--q-text-muted);
    border: 2px solid transparent;
    transition: var(--q-transition);
}

.custom-pills .nav-link:hover {
    background: var(--q-bg-2);
    color: var(--q-primary);
}

.custom-pills .nav-link.active {
    background: linear-gradient(135deg, var(--q-primary), var(--q-primary-dark));
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* FORM */
.form-control {
    border-radius: var(--q-radius);
    border: 1.5px solid var(--q-border);
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    transition: var(--q-transition);
    background: var(--q-white);
}

.form-control:focus {
    border-color: var(--q-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--q-text);
    margin-bottom: 0.4rem;
}

/* INFO CARD */
.card-info {
    border-radius: var(--q-radius-xl);
    overflow: hidden;
    background: linear-gradient(160deg, var(--q-primary), var(--q-primary-dark));
    border: none;
}

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

.feature-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--q-accent-light);
}

.tip-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: var(--q-radius);
    border-left: 4px solid var(--q-accent);
    backdrop-filter: blur(4px);
}

.card-glass,
.card-info {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.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;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hero:hover img {
    transform: scale(1.05);
}

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

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

.hero-text h3 {
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.5px;
}


/* ###################### LOGIN ########################## */
.q26-login-section {
    background: linear-gradient(135deg, var(--q-bg), var(--q-bg-2));
}

.q26-login-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--q-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--q-shadow-lg);
}

.q26-login-title {
    font-weight: 800;
    background: linear-gradient(135deg, var(--q-primary), var(--q-primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.q26-login-input {
    border-radius: var(--q-radius);
    border: 1.5px solid var(--q-border);
}

.q26-login-input:focus {
    border-color: var(--q-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

/* BOTÓN LOGIN */
.q26-login-btn {
    background: linear-gradient(135deg, var(--q-primary), var(--q-primary-dark));
    color: #ffffff !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: var(--q-radius-full);
    padding: 0.9rem 2.8rem;
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--q-transition);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

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

.q26-login-btn:hover,
.q26-login-btn:focus {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--q-primary-light), var(--q-primary));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

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

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

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

.q26-info-body::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 100% 38px;
    z-index: 0;
}

.q26-info-body::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 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: var(--q-radius-xl);
    overflow: hidden;
    border: none;
    background: linear-gradient(160deg,
            var(--q-primary-dark) 0%,
            var(--q-primary) 45%,
            var(--q-dark) 100%);
}

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

.q26-info-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.q26-info-hero:hover img {
    transform: scale(1.05);
}

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

.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;
}

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

.q26-info-list li {
    margin-bottom: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.q26-info-tip {
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--q-accent);
    padding: 16px 20px;
    border-radius: var(--q-radius);
    backdrop-filter: blur(4px);
}

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