/* ========== TIPOGRAFÍAS GOTHAM ========== */
@font-face {
    font-family: 'Gotham';
    src: url('/fonts/gotham/Gotham-Black.woff2') format('woff2'),
    url('/fonts/gotham/Gotham-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('/fonts/gotham/Gotham-Book.woff2') format('woff2'),
    url('/fonts/gotham/Gotham-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --vuela-green: #AACC1D;
    --vuela-green-dark: #8FAD15;
    --vuela-black: #000000;
    --vuela-dark: #0A0A0A;
    --vuela-dark-card: #141414;
    --vuela-gray: #1A1A1A;
    --vuela-gray-light: #2A2A2A;
    --vuela-text: #CCCCCC;
    --vuela-white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gotham', 'Roboto', Arial, sans-serif;
    font-weight: 400; /* Gotham Book para texto general */
    background-color: var(--vuela-black);
    color: var(--vuela-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =============================================
   NAVBAR
============================================= */
.navbar-vuela {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 0.8rem 0;
    z-index: 1000;
}

.navbar-vuela .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-vuela .navbar-brand .logo-icon {
    color: var(--vuela-green);
    font-size: 1.6rem;
}

.navbar-vuela .navbar-brand .logo-text {
    font-size: 1.3rem;
    font-weight: 900; /* Gotham Black */
    color: var(--vuela-white);
    letter-spacing: -0.5px;
}

.btn-navbar-vuela {
    font-family: 'Gotham', sans-serif;
    font-weight: 900; /* Gotham Black */
    background-color: var(--vuela-green);
    color: var(--vuela-white);
    font-size: 0.8rem;
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.btn-navbar-vuela:hover {
    background-color: var(--vuela-green-dark);
    color: var(--vuela-white);
}

/* =============================================
   BLOQUE 1: HERO / HEADER PRINCIPAL
============================================= */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: var(--vuela-dark);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    font-family: 'Gotham', sans-serif;
    font-weight: 900; /* Gotham Black */
    display: inline-block;
    background-color: var(--vuela-green);
    color: var(--vuela-black);
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: 'Gotham', sans-serif;
    font-weight: 900; /* Gotham Black */
    font-size: 3rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--vuela-green);
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.hero-features li {
    font-family: 'Gotham', sans-serif;
    font-weight: 400; /* Gotham Book */
    position: relative;
    padding: 0.45rem 0 0.45rem 1.8rem;
    color: var(--vuela-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

.hero-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 8px;
    height: 8px;
    background-color: var(--vuela-green);
    border-radius: 50%;
}

.hero-features li strong {
    color: var(--vuela-white);
}

.hero-price {
    color: var(--vuela-text);
    font-size: 0.95rem;
    padding: 0.45rem 0 0.45rem 1.8rem;
    position: relative;
}

.hero-price::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 8px;
    height: 8px;
    background-color: var(--vuela-green);
    border-radius: 50%;
}

.hero-image-col {
    position: relative;
    z-index: 2;
}

.hero-image-col img {
    width: 100%;
    max-width: 550px;
    border-radius: 12px;
}

.hero-price-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    max-width: 440px;
    margin: 20px 0;
    color: var(--vuela-white);
    border: 2px solid var(--vuela-green);
    border-radius: 8px;
    overflow: hidden;
}

.hero-price-table td {
    width: 50%;
    padding: 14px 18px;
    text-align: center;
    color: var(--vuela-white);
}

.hero-price-cell td + .hero-price-cell td {
    border-left: 2px solid var(--vuela-green);
}

.hero-price-label {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--vuela-white);
}

.hero-price-amount {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 6px;
    color: var(--vuela-white);
}

.hero-price-note {
    font-size: 13px;
    color: var(--vuela-white);
    margin-top: -8px;
}

/* =============================================
           BLOQUE 2: FUNCIONALIDADES (Carrusel individual)
        ============================================= */
.features-section {
    background-color: var(--vuela-black);
    padding: 4rem 0;
}

.features-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.features-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 16px;
}

.feature-slide {
    flex-shrink: 0;
    padding: 0;
    /* 4 cards visibles: (100% - 3 gaps de 16px) / 4 */
    width: calc((100% - 48px) / 4);
}

.feature-card {
    border-radius: 16px;
    padding: 2rem 1.5rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    background: linear-gradient(180deg, #1A3A3A 0%, #4A1A2A 100%);
}

.feature-card h5 {
    font-family: 'Gotham', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.55;
    flex-grow: 1;
    margin-bottom: 0;
}

.feature-card-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 1.2rem;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.feature-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* Dots */
.features-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.features-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.features-dots .dot.active {
    background-color: var(--vuela-green);
    border-color: var(--vuela-green);
}

/* Responsive */
@media (max-width: 991px) {
    .feature-slide {
        width: calc((100% - 16px) / 2);
    }
}

@media (max-width: 575px) {
    .feature-slide {
        width: 85%;
    }
}

/* =============================================
   BLOQUE 3: CANALES (+90 canales)
============================================= */
.channels-section {
    background-color: var(--vuela-black);
    padding: 4rem 0;
}

.channels-title {
    font-family: 'Gotham', sans-serif;
    font-weight: 900; /* Gotham Black para "+90 canales" */
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.channels-title span {
    color: var(--vuela-white);
    font-weight: 900;
}

.channels-subtitle {
    color: var(--vuela-text);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn-channels {
    display: inline-block;
    background-color: var(--vuela-green);
    color: var(--vuela-black);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-channels:hover {
    background-color: var(--vuela-green-dark);
    color: var(--vuela-black);
}

.channel-logo {
    background-color: var(--vuela-white);
    border-radius: 10px;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    transition: transform 0.2s;
}

.channel-logo:hover {
    transform: scale(1.05);
}

.channel-logo img {
    max-height: 35px;
    max-width: 100%;
    object-fit: contain;
}

.channel-logo span {
    font-weight: 700;
    color: var(--vuela-black);
    font-size: 0.75rem;
    text-align: center;
}

/* =============================================
   BLOQUE 4: LA LIGA HYPERMOTION Y MÁS
============================================= */
.laliga-section {
    background-color: var(--vuela-black);
    padding: 4rem 0;
}

.laliga-section .section-tag {
    font-family: 'Gotham', sans-serif;
    font-weight: 900; /* Gotham Black */
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.laliga-section .section-text {
    font-weight: 400;
    color: var(--vuela-text);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 480px;
}

.laliga-section .section-text strong {
    color: var(--vuela-white);
}

.laliga-image-wrapper {
    position: relative;
}

.laliga-image-wrapper .vuela-logo-overlay {
    /* position: absolute; */
    top: 1.5rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    float: inline-end;
}

.laliga-image-wrapper .vuela-logo-overlay .logo-icon {
    color: var(--vuela-green);
    font-size: 2rem;
}

.laliga-image-wrapper .vuela-logo-overlay .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.laliga-image-wrapper img {
    width: 100%;
    border-radius: 12px;
}

/* =============================================
   BLOQUE 5: LALIGA HYPERMOTION (Banner corazón)
============================================= */
.laliga-banner {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(180deg, #000000 0%, #1A1A0A 50%, #0A0A00 100%);
    overflow: hidden;
    border-radius: 16px;
    margin: 0;
}

.laliga-banner-title {
    font-family: 'Gotham', sans-serif;
    font-weight: 900; /* Gotham Black */
    font-size: 3rem;
    color: var(--vuela-green);
    line-height: 1.1;
}

.laliga-banner .heart-image {
    max-width: 100%;
}

/* =============================================
   BLOQUE 6: VIDEOCLUB BY RAKUTEN
============================================= */
.videoclub-section {
    background-color: var(--vuela-dark-card);
    padding: 3rem 0;
    border-radius: 0;
}

.videoclub-section h4 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.videoclub-section p {
    color: var(--vuela-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.videoclub-section p strong {
    color: var(--vuela-white);
    text-decoration: underline;
}

.videoclub-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.videoclub-image::before,
.videoclub-image::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    z-index: 5;
    pointer-events: none;
}

/* Triángulo superior izquierdo */
.videoclub-image::before {
    top: 0;
    left: 0;
    border-top: 50px solid var(--vuela-green);
    border-right: 50px solid transparent;
}

/* Triángulo inferior derecho */
.videoclub-image::after {
    bottom: 0;
    right: 0;
    border-bottom: 50px solid var(--vuela-green);
    border-left: 50px solid transparent;
}

.videoclub-image .carousel-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.videoclub-image .carousel-item {
    transition: opacity 0.8s ease-in-out;
}


.videoclub-image .estrenos-badge {
    position: absolute;
    bottom: 0.1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--vuela-white);
    z-index: 6;
    white-space: nowrap;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.videoclub-image .estrenos-badge .estrenos-logo {
    height: 49px;
    width: auto;
}

/* =============================================
   BLOQUE 7: PREGUNTAS FRECUENTES (Accordion)
============================================= */
.faq-section {
    background-color: var(--vuela-black);
    padding: 4rem 0;
}

.faq-section h2 {
    font-family: 'Gotham', sans-serif;
    font-weight: 900; /* Gotham Black */
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.faq-accordion .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--vuela-green);
}

.faq-accordion .accordion-button {
    font-family: 'Gotham', sans-serif;
    font-weight: 400; /* Gotham Book */
    background-color: transparent;
    color: var(--vuela-white);
    font-size: 0.95rem;
    padding: 1.2rem 0;
    box-shadow: none;
    border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--vuela-green);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    filter: invert(1);
    background-size: 1rem;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(80%) sepia(60%) saturate(500%) hue-rotate(20deg);
}

.faq-accordion .accordion-body {
    color: var(--vuela-text);
    padding: 0 0 1.2rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
}


/* =============================================
   BLOQUE 9: FOOTER
============================================= */
.footer-cta {
    background-color: var(--vuela-black);
    padding: 3rem 0 2rem;
    text-align: center;
    border-bottom: 1px solid var(--vuela-gray-light);
}

.footer-cta p {
    color: var(--vuela-text);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-cta .input-group {
    max-width: 550px;
    margin: 0 auto;
}

.footer-cta .form-control {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--vuela-white);
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    border-radius: 4px 0 0 4px;
}

.footer-cta .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-cta .form-control:focus {
    box-shadow: none;
    border-color: var(--vuela-green);
}

.footer-cta .btn-enter {
    background-color: var(--vuela-green);
    color: var(--vuela-white);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 0 4px 4px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-cta .btn-enter:hover {
    background-color: var(--vuela-green-dark);
    color: var(--vuela-white);
}

.footer-main {
    background-color: var(--vuela-black);
    padding: 2rem 0 3rem;
}

.footer-phone {
    color: var(--vuela-text);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-decoration: underline;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: var(--vuela-green);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .laliga-banner-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding: 1rem 0 3rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-image-col {
        margin-top: 2rem;
        text-align: center;
    }

    .channels-title {
        font-size: 1.5rem;
    }

    .laliga-banner-title {
        font-size: 1.6rem;
    }

    .feature-card {
        min-height: 240px;
    }

}

.logoColor {
    width: 225px;
    height: auto;
}

/* =============================================
   MAGNIFIC POPUP: TODOS LOS CANALES
============================================= */
.mfp-channels .mfp-img {
    max-width: 80vw;
    max-height: 90vh;
}

.mfp-channels .mfp-close {
    color: #fff;
    font-size: 2rem;
    opacity: 0.8;
    right: 0;
    top: 0;
}

.mfp-channels .mfp-close:hover {
    opacity: 1;
}

/* ==========================================
   BLOQUE: BANNER AYUDA / ATENCIÓN AL CLIENTE
   ========================================== */
.help-banner-section {
    padding: 60px 0;
    background-color: #0a0a0a;
}

.help-banner {
    position: relative;
    /* Reemplazar con la imagen real del banner (campo + sillón + balón) */

    border-radius: 20px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    padding: 50px 40px;
}

.help-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Degradado sutil para que el texto se lea bien sobre la imagen */
    background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.35) 50%,
            transparent 100%
    );
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

.help-banner-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    text-align: center;
}

.help-banner-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 15px;
}

.help-banner-text {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 20px;
}

.help-banner-link {
    color: #AACC1D;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.help-banner-link:hover {
    color: #c8e64a;
}

.btn-help-banner {
    display: inline-block;
    padding: 12px 35px;
    background-color: #AACC1D;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 30px;
    border: 2px solid #AACC1D;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-help-banner:hover {
    background-color: var(--vuela-green-dark);
    border-color: var(--vuela-green-dark);
    color: #1a1a1a;
}

.help-banner-slogan {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .help-banner {
        min-height: 300px;
        padding: 30px 20px;
        background-position: right center;
    }

    .help-banner::before {
        background: linear-gradient(
                to right,
                rgba(0, 0, 0, 0.75) 0%,
                rgba(0, 0, 0, 0.5) 70%,
                rgba(0, 0, 0, 0.3) 100%
        );
    }

    .help-banner-content {
        max-width: 100%;
    }

    .help-banner-title {
        font-size: 1.4rem;
    }
}

/* ==========================================
   BLOQUE: CARRUSEL PROMOCIONAL FULL-WIDTH
   ========================================== */
.promo-carousel-section {
    background-color: var(--vuela-black);
    padding: 0;
    overflow: hidden;
}

.promo-carousel-section .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.promo-carousel-section .carousel-item {
    transition: opacity 0.8s ease-in-out;
}

.promo-carousel-section .carousel-indicators {
    margin-bottom: 1rem;
}

.promo-carousel-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: background-color 0.3s ease;
}

.promo-carousel-section .carousel-indicators button.active {
    background-color: var(--vuela-green);
}

/* =============================================
   BLOQUE: GIF / IMAGEN FULL-WIDTH
============================================= */
.gif-section {
    background-color: var(--vuela-black);
    padding: 0;
    line-height: 0;
    overflow: hidden;
}

.gif-section-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* =============================================
   BLOQUE: ACORDEÓN CANALES VUELTA TV
============================================= */
.channels-accordion-section {
    background-color: var(--vuela-black);
    padding: 0;
}

.channels-accordion .accordion-item {
    background-color: transparent;
    border: none;
    border-top: 1px solid var(--vuela-green);
    border-bottom: 1px solid var(--vuela-green);
}

.channels-accordion .accordion-button {
    font-family: 'Gotham', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    background-color: var(--vuela-green);
    color: var(--vuela-black);
    padding: 1.2rem 1.5rem;
    box-shadow: none;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.channels-accordion .accordion-button:not(.collapsed) {
    background-color: var(--vuela-green);
    color: var(--vuela-black);
    box-shadow: none;
}

.channels-accordion .accordion-button::after {
    filter: none;
    background-size: 1rem;
}

.channels-accordion .accordion-button:not(.collapsed)::after {
    filter: none;
}

.channels-accordion .accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.channels-cat-title {
    font-family: 'Gotham', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    color: var(--vuela-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.channels-cat-img {
    width: 100%;
    display: block;
    background-color: #fff;
    border-radius: 10px;
}