/* CSS Document */

/* =========================================================
   LOTERÍA EL ÑERO
   ========================================================= */
@font-face {
    font-family: 'Cocogoose Pro';
    src: url('../fonts/Cocogoose-Pro-Regular-trial.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cocogoose Pro';
    src: url('../fonts/Cocogoose-Pro-Light-trial.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cocogoose Pro';
    src: url('../fonts/Cocogoose-Pro-Bold-trial.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}




:root {

    /*
    COLORES TEMPORALES

    Cambiaremos estos valores cuando
    tengamos el logo oficial.
    */

    --primary: #FFCE08;
    --primary-dark: #E5B800;

    --brand-blue: #00AFD8;
    --brand-blue-dark: #008CAD;
    --brand-gray: #4D4D4F;
    --brand-green-dark: #0E8141;
    --brand-green: #17AD3E;

    --secondary: #151515;

    --dark: #080808;
    --dark-soft: #111111;

    --white: #ffffff;

    --gray: #777777;
    --light-gray: #f5f5f5;

}


/* =========================================================
   GENERAL
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {

    margin: 0;

    font-family: 'Montserrat', sans-serif;

    color: #222;

    background: #ffffff;

    overflow-x: hidden;

}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* =========================================================
   NAVBAR
   ========================================================= */

#mainNavbar {

    padding: 18px 0;

    background: rgba(0, 175, 216, 0.18);

    transition:
        transform .35s ease,
        background .3s ease,
        padding .3s ease,
        box-shadow .3s ease;

    z-index: 9999;

}


/* Cuando hacemos scroll */

#mainNavbar.navbar-scrolled {

    padding: 10px 0;

    background: rgba(0, 175, 216, 0.97);

    box-shadow:
        0 8px 30px
        rgba(0, 0, 0, 0.15);

}


.navbar-logo {

    width: auto;

    height: 85px;

    object-fit: contain;

}


.logo-text {

    font-weight: 900;

    font-size: 25px;

    letter-spacing: 1px;

    color: var(--white);

}


.navbar-nav {
    gap: 7px;
}


.navbar-nav .nav-link {

    color: rgba(255,255,255,.90);

    font-size: 14px;

    font-weight: 600;

    padding: 10px 12px !important;

    transition: all .25s ease;

}


.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {

    color: var(--primary);

}


.btn-navbar {

    background: var(--primary);

    color: var(--dark);

    border-radius: 50px;

    padding: 11px 22px;

    font-size: 13px;

    font-weight: 800;

    border: 2px solid var(--primary);

    transition: .25s;

}


.btn-navbar:hover {

    background: transparent;

    color: var(--white);

    border-color: var(--white);

}


/* =========================================================
   HERO
   ========================================================= */

.hero-slider {

    position: relative;

    background: var(--brand-blue);

}


.hero-slider .carousel-item {

    position: relative;

    height: clamp(580px, 75vh, 850px);

    min-height: 580px;

}


.hero-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}


.hero-content {

    top: 0;

    bottom: 0;

    left: 0;

    right: 0;

    padding: 0;

    text-align: left;

}


.hero-content .container {

    height: 100%;

    display: flex;

    align-items: center;

}


.hero-text {

    max-width: 680px;

}


.hero-small {

    display: inline-block;

    color: var(--primary);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 16px;

}


.hero-text h1,
.hero-text h2 {

    color: #fff;

    font-size:
        clamp(42px, 5vw, 76px);

    font-weight: 900;

    line-height: 1;

    letter-spacing: -2px;

    margin-bottom: 20px;

}


.hero-text p {

    color: rgba(255,255,255,.85);

    font-size: 17px;

    line-height: 1.7;

    max-width: 580px;

    margin-bottom: 30px;

}


.btn-nero {

    background: var(--primary);

    color: var(--dark);

    padding: 14px 30px;

    border-radius: 50px;

    font-weight: 800;

    font-size: 14px;

    border: 2px solid var(--primary);

    transition: all .25s ease;

}


.btn-nero:hover {

    background: transparent;

    border-color: #fff;

    color: #fff;

}


/* Carousel */

.carousel-control-prev,
.carousel-control-next {

    width: 8%;

}


.carousel-indicators {

    bottom: 25px;

}


.carousel-indicators [data-bs-target] {

    width: 35px;

    height: 4px;

    border: 0;

}


/* =========================================================
   PLACEHOLDER SECTION
   ========================================================= */

.placeholder-section {

    padding: 110px 0;

    background: #fff;

}


.section-eyebrow {

    color: var(--primary-dark);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;

}


.placeholder-section h2 {

    font-size: clamp(32px, 4vw, 50px);

    font-weight: 900;

    margin-top: 12px;

    margin-bottom: 15px;

}


.placeholder-section p {

    max-width: 620px;

    margin: 0 auto;

    color: var(--gray);

    line-height: 1.7;

}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {

    background: var(--brand-blue);

    color: rgba(255,255,255,.72);

    padding: 75px 0 25px;

}


.footer-logo {

    max-width: 170px;

    max-height: 80px;

    object-fit: contain;

    margin-bottom: 20px;

}


.footer-description {

    max-width: 330px;

    line-height: 1.7;

    font-size: 14px;

}


.site-footer h5 {

    color: #fff;

    font-size: 15px;

    font-weight: 800;

    margin-bottom: 22px;

}


.footer-links {

    list-style: none;

    margin: 0;

    padding: 0;

}


.footer-links li {

    margin-bottom: 11px;

}


.footer-links a {

    color: rgba(255,255,255,.62);

    font-size: 14px;

    transition: all .2s ease;

}


.footer-links a:hover {

    color: var(--primary);

    padding-left: 3px;

}


.social-links {

    display: flex;

    gap: 10px;

    margin-top: 22px;

}


.social-links a {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255,255,255,.08);

    color: #fff;

    transition: all .25s ease;

}


.social-links a:hover {

    background: var(--primary);

    color: var(--dark);

}


.footer-contact {

    display: flex;

    gap: 10px;

    align-items: center;

    font-size: 14px;

}


.footer-contact i {

    color: var(--primary);

}


.footer-divider {

    border-color: rgba(255,255,255,.10);

    margin: 50px 0 25px;

}


.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    font-size: 12px;

    color: rgba(255,255,255,.45);

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    #mainNavbar {

        background: rgba(0,175,216,.97);

        padding: 10px 0;

    }

    .navbar-collapse {

        padding: 20px 0;

    }

    .navbar-nav {

        align-items: stretch !important;

    }

    .navbar-nav .nav-link {

        padding:
            10px 0 !important;

    }

    .hero-slider .carousel-item {

        height: 650px;

        min-height: 650px;

    }

    .hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,.78),
                rgba(0,0,0,.35)
            );

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .navbar-logo {

        height: 44px;

    }


    .hero-slider .carousel-item {

        height: 620px;

        min-height: 620px;

    }


    .hero-image {

        object-position: center;

    }


    .hero-overlay {

        background:
            linear-gradient(
                0deg,
                rgba(0,0,0,.88),
                rgba(0,0,0,.28)
            );

    }


    .hero-content .container {

        align-items: flex-end;

        padding-bottom: 100px;

    }


    .hero-text {

        max-width: 100%;

    }


    .hero-text h1,
    .hero-text h2 {

        font-size: 40px;

        letter-spacing: -1px;

    }


    .hero-text p {

        font-size: 15px;

        line-height: 1.6;

    }


    .carousel-control-prev,
    .carousel-control-next {

        display: none;

    }


    .placeholder-section {

        padding: 75px 0;

    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

    }

}

/* =========================================================
RESULTADOS
========================================================= */

.results-section {
    background: #f7f7f7;
}

.section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    color: #666;
}


/* CARD */

.result-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    height: 100%;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.result-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.13);
}


/* HEADER */

.result-card-header {
    text-align: center;
}

.result-status {
    display: inline-block;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    padding: 6px 12px;
    border-radius: 20px;

    background: #f2f2f2;

    margin-bottom: 15px;
}

.result-card h3 {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 5px;
}

.result-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}


/* NÚMEROS */

.result-numbers {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 12px;

    margin: 25px 0;
}

.lottery-ball {
    width: 58px;
    height: 58px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 20px;
    font-weight: 800;

    background: var(--brand-blue);
    color: #fff;

    box-shadow:
        0 6px 15px rgba(0, 0, 0, 0.18);
}


/* FOOTER CARD */

.result-footer {
    border-top: 1px solid #eeeeee;

    margin-top: 25px;
    padding-top: 18px;

    text-align: center;

    font-size: 12px;
    font-weight: 600;
    color: #999;

    text-transform: uppercase;
    letter-spacing: 1px;
}


/* RESPONSIVE */

@media (max-width: 767px) {

    .results-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .section-title {
        font-size: 30px;
    }

    .result-card {
        padding: 25px 20px;
    }

    .lottery-ball {
        width: 52px;
        height: 52px;

        font-size: 18px;
    }

}


/* =========================================================
RESULTADOS PREMIUM
========================================================= */

.results-premium {

    position: relative;

    padding: 110px 0 0;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(245,180,0,.10),
            transparent 35%
        ),
        var(--dark);

    color: var(--white);

    overflow: hidden;

}


/* DECORACIÓN DE FONDO */

.results-premium::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(255,255,255,.04);

    border-radius: 50%;

    right: -160px;
    top: -180px;

}

.results-premium::after {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border: 1px solid rgba(245,180,0,.10);

    border-radius: 50%;

    right: 40px;
    top: 20px;

}


/* CONTENIDO PRINCIPAL */

.results-main {

    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(280px, .8fr)
        minmax(500px, 1.3fr);

    gap: 80px;

    align-items: center;

    padding-bottom: 90px;

}


/* =========================================================
INTRO
========================================================= */

.results-intro {

    max-width: 420px;

}


.results-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 20px;

}


.results-eyebrow::before {

    content: "";

    display: block;

    width: 42px;
    height: 2px;

    background: var(--primary);

}


.results-intro h2 {

    font-size:
        clamp(46px, 5vw, 76px);

    line-height: .95;

    font-weight: 900;

    letter-spacing: -3px;

    margin: 0 0 28px;

    color: var(--white);

}


.results-intro h2 span {

    display: block;

    color: var(--primary);

}


.results-intro p {

    max-width: 390px;

    color: rgba(255,255,255,.60);

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 35px;

}


.results-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: var(--white);

    font-size: 13px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: all .25s ease;

}


.results-link i {

    color: var(--primary);

    font-size: 17px;

    transition: transform .25s ease;

}


.results-link:hover {

    color: var(--primary);

}


.results-link:hover i {

    transform: translateX(5px);

}


/* =========================================================
ÚLTIMO SORTEO
========================================================= */

.latest-draw {

    position: relative;

    padding: 45px 48px 35px;

    border:

        1px solid rgba(255,255,255,.10);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.065),
            rgba(255,255,255,.015)
        );

    backdrop-filter: blur(12px);

    border-radius: 26px;

    box-shadow:

        0 30px 70px
        rgba(0,0,0,.32);

}


.latest-draw::before {

    content: "";

    position: absolute;

    width: 5px;

    height: 70px;

    background: var(--primary);

    left: 0;

    top: 45px;

    border-radius: 0 5px 5px 0;

}


/* CABECERA */

.latest-draw-top {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 30px;

}


.draw-label {

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

}


.latest-draw h3 {

    margin: 9px 0 0;

    font-size: 30px;

    font-weight: 900;

    color: var(--white);

}


.draw-date {

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    line-height: 1;

}


.draw-date span {

    font-size: 54px;

    font-weight: 900;

    color: var(--white);

    letter-spacing: -3px;

}


.draw-date small {

    color: rgba(255,255,255,.45);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-top: 5px;

}


/* =========================================================
NÚMEROS GANADORES
========================================================= */

.winning-numbers {

    display: flex;

    justify-content: center;

    gap: 24px;

    padding: 55px 0;

}


.winning-ball {

    position: relative;

    width: 112px;

    height: 112px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        radial-gradient(
            circle at 35% 25%,
            #ffd75b 0%,
            var(--primary) 40%,
            var(--primary-dark) 100%
        );

    color: var(--dark);

    font-size: 34px;

    font-weight: 900;

    box-shadow:

        0 18px 35px
        rgba(0,0,0,.40),

        inset 0 2px 3px
        rgba(255,255,255,.45);

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


.winning-ball::after {

    content: "";

    position: absolute;

    width: 76%;

    height: 76%;

    border-radius: 50%;

    border:
        1px solid
        rgba(0,0,0,.08);

}


.winning-ball:hover {

    transform:
        translateY(-6px)
        scale(1.03);

    box-shadow:

        0 25px 45px
        rgba(0,0,0,.45);

}


/* PIE */

.latest-draw-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(255,255,255,.09);

    color: rgba(255,255,255,.45);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.5px;

}


.draw-status {

    color: var(--primary);

}


/* =========================================================
RESULTADOS ANTERIORES
========================================================= */

.previous-results {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        .8fr 1.2fr 1.2fr .6fr;

    min-height: 120px;

    background: var(--primary);

    color: var(--dark);

}


.previous-title,
.previous-draw,
.previous-action {

    display: flex;

    align-items: center;

    padding: 28px 32px;

}


.previous-title {

    border-right:
        1px solid
        rgba(0,0,0,.12);

}


.previous-title span {

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;

}


.previous-draw {

    justify-content: space-between;

    gap: 20px;

    border-right:
        1px solid
        rgba(0,0,0,.12);

}


.previous-info {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.previous-info small {

    font-size: 10px;

    font-weight: 800;

    opacity: .60;

    letter-spacing: 1px;

}


.previous-info strong {

    font-size: 12px;

    font-weight: 900;

}


.previous-numbers {

    display: flex;

    gap: 8px;

}


.previous-numbers span {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--brand-blue);

    color: var(--white);

    font-size: 12px;

    font-weight: 800;

}


.previous-action {

    justify-content: center;

}


.previous-action a {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--dark);

    font-size: 12px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.previous-action i {

    font-size: 17px;

    transition:
        transform .25s ease;

}


.previous-action a:hover i {

    transform:
        translate(3px,-3px);

}


/* =========================================================
TABLET RESULTADOS
========================================================= */

@media (max-width: 991px) {

    .results-premium {

        padding-top: 85px;

    }


    .results-main {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .results-intro {

        max-width: 600px;

    }


    .latest-draw {

        padding:
            40px 35px 32px;

    }


    .previous-results {

        grid-template-columns:
            1fr 1fr;

    }


    .previous-title {

        border-bottom:
            1px solid
            rgba(0,0,0,.12);

    }


    .previous-draw {

        border-bottom:
            1px solid
            rgba(0,0,0,.12);

    }

}


/* =========================================================
MOBILE RESULTADOS
========================================================= */

@media (max-width: 767px) {

    .results-premium {

        padding-top: 70px;

    }


    .results-main {

        gap: 40px;

        padding-bottom: 65px;

    }


    .results-intro h2 {

        font-size: 48px;

        letter-spacing: -2px;

    }


    .latest-draw {

        padding:
            32px 22px 25px;

        border-radius: 20px;

    }


    .latest-draw-top {

        gap: 15px;

    }


    .latest-draw h3 {

        font-size: 24px;

    }


    .draw-date span {

        font-size: 40px;

    }


    .winning-numbers {

        gap: 12px;

        padding: 40px 0;

    }


    .winning-ball {

        width: 78px;

        height: 78px;

        font-size: 24px;

    }


    .latest-draw-bottom {

        flex-direction: column;

        align-items: flex-start;

    }


    .previous-results {

        grid-template-columns: 1fr;

    }


    .previous-title,
    .previous-draw,
    .previous-action {

        padding:
            23px 22px;

        border-right: 0;

        border-bottom:
            1px solid
            rgba(0,0,0,.12);

    }


    .previous-draw {

        justify-content:
            space-between;

    }


    .previous-action {

        justify-content:
            flex-start;

    }

}
/* =========================================================
CÓMO JUGAR PREMIUM
========================================================= */

.how-play-premium {

    position: relative;

    padding: 120px 0 105px;

    background: var(--white);

    overflow: hidden;

}


/* HEADER */

.how-play-header {

    display: grid;

    grid-template-columns: 1.3fr .7fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 85px;

}


.how-play-header h2 {

    max-width: 760px;

    margin: 14px 0 0;

    font-size:
        clamp(42px, 5vw, 70px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -3px;

    color: var(--dark);

}


.how-play-header h2 span {

    display: block;

    color: var(--primary-dark);

}


.how-play-header > p {

    max-width: 360px;

    margin: 0 0 8px auto;

    font-size: 16px;

    line-height: 1.8;

    color: var(--gray);

}


/* =========================================================
PASOS
========================================================= */

.how-play-steps {

    position: relative;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

}


/* LÍNEA SUPERIOR */

.how-play-steps::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 1px;

    background: #e6e6e6;

}


.how-step {

    position: relative;

    min-height: 300px;

    padding:
        65px 42px 40px;

    border-right:
        1px solid #e6e6e6;

    overflow: hidden;

}


.how-step:first-child {

    border-left:
        1px solid #e6e6e6;

}


/* ACENTO AMARILLO */

.how-step::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0;

    height: 4px;

    background: var(--primary);

    transition:
        width .35s ease;

}


.how-step:hover::before {

    width: 100%;

}


/* NÚMERO GIGANTE */

.how-step-number {

    position: absolute;

    right: 20px;

    bottom: -30px;

    font-size: 180px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: -12px;

    color: rgba(0,0,0,.035);

    pointer-events: none;

    transition:
        color .3s ease,
        transform .3s ease;

}


.how-step:hover .how-step-number {

    color:
        rgba(245,180,0,.10);

    transform:
        translateY(-5px);

}


/* CONTENIDO */

.how-step-content {

    position: relative;

    z-index: 2;

    max-width: 280px;

}


.how-step-label {

    display: inline-block;

    margin-bottom: 22px;

    color: var(--primary-dark);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2.5px;

}


.how-step h3 {

    margin-bottom: 16px;

    font-size: 25px;

    font-weight: 900;

    letter-spacing: -1px;

    color: var(--dark);

}


.how-step p {

    margin: 0;

    font-size: 14px;

    line-height: 1.8;

    color: var(--gray);

}


/* =========================================================
FOOTER DE SECCIÓN
========================================================= */

.how-play-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 45px;

    padding-top: 28px;

    border-top:
        1px solid #e6e6e6;

}


.how-play-footer > span {

    font-size: 13px;

    font-weight: 800;

    color: var(--dark);

}


.how-play-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: var(--dark);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition:
        color .25s ease;

}


.how-play-link i {

    color: var(--primary-dark);

    font-size: 17px;

    transition:
        transform .25s ease;

}


.how-play-link:hover {

    color: var(--primary-dark);

}


.how-play-link:hover i {

    transform:
        translateX(5px);

}


/* =========================================================
TABLET
========================================================= */

@media (max-width: 991px) {

    .how-play-premium {

        padding: 90px 0;

    }


    .how-play-header {

        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 60px;

    }


    .how-play-header > p {

        margin-left: 0;

    }


    .how-play-steps {

        grid-template-columns: 1fr;

    }


    .how-step {

        min-height: 230px;

        border-left:
            1px solid #e6e6e6;

        border-bottom:
            1px solid #e6e6e6;

    }

}


/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

    .how-play-premium {

        padding: 70px 0;

    }


    .how-play-header {

        margin-bottom: 45px;

    }


    .how-play-header h2 {

        font-size: 44px;

        letter-spacing: -2px;

    }


    .how-step {

        min-height: 215px;

        padding:
            45px 28px 35px;

    }


    .how-step-number {

        font-size: 130px;

        right: 15px;

    }


    .how-play-footer {

        flex-direction: column;

        align-items: flex-start;

    }

}
/* =========================================================
SOBRE NOSOTROS
========================================================= */

.about-section {
    position: relative;
    padding: 120px 0;
    background: #f7f7f7;
    overflow: hidden;
}

.about-title {
    margin: 15px 0 25px;

    font-size:
        clamp(42px, 5vw, 68px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -3px;

    color: var(--dark);
}

.about-title span {
    display: block;
    color: var(--primary-dark);
}

.about-lead {
    max-width: 560px;

    font-size: 18px;
    line-height: 1.8;

    font-weight: 500;

    color: #333;

    margin-bottom: 22px;
}

.about-text {
    max-width: 560px;

    font-size: 15px;
    line-height: 1.8;

    color: var(--gray);

    margin-bottom: 35px;
}


/* VALORES */

.about-values {
    display: flex;
    flex-wrap: wrap;

    gap: 30px;

    margin-top: 35px;
}

.about-value {
    display: flex;
    flex-direction: column;

    min-width: 100px;
}

.about-value strong {
    font-size: 13px;

    color: var(--primary-dark);

    letter-spacing: 2px;

    margin-bottom: 5px;
}

.about-value span {
    font-size: 14px;

    font-weight: 800;

    color: var(--dark);
}


/* BLOQUE VISUAL */

.about-visual {
    position: relative;

    min-height: 520px;

    border-radius: 28px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(245,180,0,.35),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            var(--brand-blue),
            var(--brand-blue-dark)
        );

    box-shadow:
        0 30px 70px rgba(0,0,0,.18);
}


/* CÍRCULO DECORATIVO */

.about-visual::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.08);

    right: -100px;
    top: -100px;
}

.about-visual::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: var(--primary);

    right: 60px;
    bottom: -80px;

    opacity: .9;
}


/* TEXTO VISUAL */

.about-visual-content {
    position: absolute;

    left: 55px;
    bottom: 55px;

    z-index: 2;
}

.about-visual-content span {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;
}

.about-visual-content h3 {
    margin: 0;

    color: #fff;

    font-size:
        clamp(38px, 4vw, 60px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -2px;
}


/* TABLET */

@media (max-width: 991px) {

    .about-section {
        padding: 90px 0;
    }

    .about-visual {
        min-height: 430px;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .about-section {
        padding: 70px 0;
    }

    .about-title {
        font-size: 44px;

        letter-spacing: -2px;
    }

    .about-values {
        gap: 20px;
    }

    .about-visual {
        min-height: 360px;

        border-radius: 22px;
    }

    .about-visual-content {
        left: 28px;
        bottom: 35px;
    }

    .about-visual-content h3 {
        font-size: 40px;
    }

}
/* =========================================================
CONTACTO
========================================================= */

.contact-section {
    position: relative;
    padding: 120px 0;
    background: var(--brand-blue);
    color: var(--white);
    overflow: hidden;
}


/* DECORACIÓN */

.contact-section::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(245,180,0,.12),
            transparent 65%
        );

    left: -200px;
    top: -200px;

    pointer-events: none;
}


/* =========================================================
INFORMACIÓN
========================================================= */

.contact-info {
    position: relative;
    z-index: 2;

    height: 100%;

    padding-right: 35px;
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 4px;

    margin-bottom: 22px;
}

.contact-eyebrow::before {
    content: "";

    width: 40px;
    height: 2px;

    background: var(--primary);
}


.contact-info h2 {
    margin: 0 0 28px;

    font-size:
        clamp(44px, 5vw, 68px);

    line-height: .98;

    font-weight: 900;

    letter-spacing: -3px;

    color: var(--white);
}

.contact-info h2 span {
    display: block;
    color: var(--primary);
}


.contact-intro {
    max-width: 460px;

    margin-bottom: 45px;

    font-size: 15px;
    line-height: 1.8;

    color: rgba(255,255,255,.62);
}


/* =========================================================
DATOS
========================================================= */

.contact-details {
    display: flex;
    flex-direction: column;

    gap: 22px;
}

.contact-detail {
    display: flex;
    align-items: center;

    gap: 18px;
}

.contact-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.07);

    color: var(--primary);

    font-size: 18px;
}

.contact-detail div:last-child {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.contact-detail small {
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: rgba(255,255,255,.42);
}

.contact-detail strong {
    font-size: 14px;
    font-weight: 700;

    color: var(--white);
}


/* =========================================================
REDES
========================================================= */

.contact-social {
    margin-top: 45px;
}

.contact-social > span {
    display: block;

    margin-bottom: 15px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: rgba(255,255,255,.45);
}

.contact-social-links {
    display: flex;

    gap: 10px;
}

.contact-social-links a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 50%;

    color: var(--white);

    transition: all .25s ease;
}

.contact-social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);

    color: var(--dark);

    transform: translateY(-3px);
}


/* =========================================================
FORMULARIO
========================================================= */

.contact-form-box {
    position: relative;
    z-index: 2;

    height: 100%;

    padding: 50px;

    border-radius: 28px;

    background: var(--white);

    color: var(--dark);

    box-shadow:
        0 30px 80px rgba(0,0,0,.30);
}


.form-label-top {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--primary-dark);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 3px;
}


.contact-form-box h3 {
    margin-bottom: 35px;

    font-size: 32px;
    font-weight: 900;

    letter-spacing: -1px;

    color: var(--dark);
}


/* CAMPOS */

.form-group label {
    display: block;

    margin-bottom: 9px;

    font-size: 11px;
    font-weight: 800;

    color: #333;
}


.contact-form-box .form-control,
.contact-form-box .form-select {

    min-height: 54px;

    padding: 14px 16px;

    border:
        1px solid #e4e4e4;

    border-radius: 12px;

    background: #fafafa;

    font-size: 14px;

    color: var(--dark);

    box-shadow: none;

    transition: all .2s ease;
}


.contact-form-box textarea.form-control {
    min-height: 145px;
    resize: vertical;
}


.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {

    border-color: var(--primary);

    background: var(--white);

    box-shadow:
        0 0 0 4px
        rgba(245,180,0,.10);
}


/* BOTÓN */

.contact-submit {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-height: 54px;

    padding: 0 28px;

    border: 2px solid var(--primary);

    border-radius: 50px;

    background: var(--primary);

    color: var(--dark);

    font-size: 13px;
    font-weight: 900;

    transition: all .25s ease;
}


.contact-submit i {
    transition: transform .25s ease;
}


.contact-submit:hover {
    background: var(--brand-blue);
    border-color: var(--dark);

    color: var(--white);
}


.contact-submit:hover i {
    transform: translateX(5px);
}


/* =========================================================
TABLET
========================================================= */

@media (max-width: 991px) {

    .contact-section {
        padding: 90px 0;
    }

    .contact-info {
        padding-right: 0;
    }

}


/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

    .contact-section {
        padding: 70px 0;
    }

    .contact-info h2 {
        font-size: 46px;
        letter-spacing: -2px;
    }

    .contact-form-box {
        padding: 32px 22px;
        border-radius: 22px;
    }

    .contact-form-box h3 {
        font-size: 27px;
    }

    .contact-submit {
        width: 100%;
    }

}
/* =========================================================
TESTIMONIALES
========================================================= */

.testimonials-section {
    position: relative;

    padding: 110px 0;

    background: #f5f5f5;

    overflow: hidden;
}


/* HEADER */

.testimonials-header {

    display: grid;

    grid-template-columns: 1.3fr .7fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 65px;

}


.testimonials-header h2 {

    margin: 14px 0 0;

    font-size:
        clamp(42px, 5vw, 66px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -3px;

    color: var(--dark);
}


.testimonials-header h2 span {

    display: block;

    color: var(--primary-dark);
}


.testimonials-header > p {

    max-width: 360px;

    margin: 0 0 7px auto;

    font-size: 15px;

    line-height: 1.8;

    color: var(--gray);
}


/* CARD */

.testimonial-card {

    position: relative;

    height: 100%;

    padding: 35px;

    background: var(--white);

    border: 1px solid #ececec;

    border-radius: 22px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.testimonial-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(245,180,0,.45);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.08);
}


/* CARD DESTACADO */

.testimonial-card.featured {

    border-top:
        4px solid var(--primary);
}


/* PARTE SUPERIOR */

.testimonial-top {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;
}


.testimonial-stars {

    display: flex;

    gap: 4px;

    color: var(--primary-dark);

    font-size: 12px;
}


.testimonial-quote {

    font-size: 70px;

    line-height: .65;

    font-family: Georgia, serif;

    color:
        rgba(245,180,0,.18);
}


/* TEXTO */

.testimonial-card > p {

    min-height: 105px;

    margin-bottom: 30px;

    font-size: 15px;

    line-height: 1.8;

    color: #555;
}


/* USUARIO */

.testimonial-user {

    display: flex;

    align-items: center;

    gap: 14px;

    padding-top: 22px;

    border-top:
        1px solid #eeeeee;
}


.testimonial-avatar {

    width: 46px;
    height: 46px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--brand-blue);

    color: var(--primary);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1px;
}


.testimonial-user > div:last-child {

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.testimonial-user strong {

    font-size: 13px;

    font-weight: 900;

    color: var(--dark);
}


.testimonial-user span {

    font-size: 11px;

    color: #999;
}


/* TABLET */

@media (max-width: 991px) {

    .testimonials-section {

        padding: 85px 0;

    }


    .testimonials-header {

        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 50px;

    }


    .testimonials-header > p {

        margin-left: 0;

    }

}


/* MOBILE */

@media (max-width: 767px) {

    .testimonials-section {

        padding: 70px 0;

    }


    .testimonials-header h2 {

        font-size: 44px;

        letter-spacing: -2px;

    }


    .testimonial-card {

        padding: 28px 24px;

    }


    .testimonial-card > p {

        min-height: auto;

    }

}
/* =========================================================
DÓNDE JUGAR
========================================================= */

.where-play-section {

    position: relative;

    padding: 120px 0;

    background: #f4f4f2;

    overflow: hidden;
}


/* =========================================================
CABECERA
========================================================= */

.where-play-header {

    display: grid;

    grid-template-columns:
        1fr .8fr;

    min-height: 390px;

    margin-bottom: 0;

    background: var(--white);

    border-radius: 28px 28px 0 0;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(0,0,0,.08);

}


.where-play-heading {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 65px 60px;

}


.where-play-heading h2 {

    margin: 12px 0 22px;

    font-size:
        clamp(48px, 6vw, 78px);

    line-height: .92;

    font-weight: 900;

    letter-spacing: -4px;

    color: var(--dark);

}


.where-play-heading h2 span {

    display: block;

    color: var(--primary-dark);

}


.where-play-heading p {

    max-width: 510px;

    margin: 0;

    color: var(--gray);

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================================
VISUAL DERECHO
========================================================= */

.where-play-visual {

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 55px;

    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(255,255,255,.22),
            transparent 28%
        ),
        var(--primary);

    overflow: hidden;

}


.where-play-visual::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    border:
        1px solid rgba(0,0,0,.10);

    right: -130px;
    top: -170px;

}


.where-play-visual::after {

    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    border-radius: 50%;

    background: rgba(0,0,0,.06);

    right: 50px;
    top: 65px;

}


.where-map-label {

    position: relative;

    z-index: 2;

    margin-bottom: 14px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 3px;

    color: rgba(0,0,0,.55);

}


.where-map-icon {

    position: absolute;

    right: 65px;

    top: 60px;

    z-index: 2;

    font-size: 110px;

    color: rgba(0,0,0,.14);

}


.where-play-visual strong {

    position: relative;

    z-index: 2;

    font-size:
        clamp(30px, 3vw, 44px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -2px;

    color: var(--dark);

}


/* =========================================================
BUSCADOR
========================================================= */

.location-search {

    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        60px 1fr auto;

    align-items: center;

    min-height: 105px;

    padding: 20px 25px;

    margin-bottom: 80px;

    background: var(--white);

    border-top:
        1px solid #eeeeee;

    border-radius: 0 0 28px 28px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.08);

}


.location-search-icon {

    font-size: 25px;

    color: var(--primary-dark);

}


.location-search-field {

    display: flex;

    flex-direction: column;

    padding-right: 25px;

}


.location-search-field label {

    margin-bottom: 3px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #999;

}


.location-search-field input {

    width: 100%;

    padding: 5px 0;

    border: 0;

    outline: 0;

    background: transparent;

    font-size: 16px;

    font-weight: 600;

    color: var(--dark);

}


.location-search-field input::placeholder {

    color: #b0b0b0;

}


.location-search-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    height: 52px;

    padding: 0 28px;

    border: 0;

    border-radius: 50px;

    background: var(--primary);

    color: var(--dark);

    font-size: 12px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: all .25s ease;

}


.location-search-btn:hover {

    background: var(--brand-blue);

    color: var(--white);

}


/* =========================================================
CABECERA PUNTOS
========================================================= */

.sales-points-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 35px;

}


.sales-points-header h3 {

    margin: 10px 0 0;

    font-size:
        clamp(32px, 4vw, 46px);

    font-weight: 900;

    letter-spacing: -2px;

    color: var(--dark);

}


.sales-point-count {

    padding-bottom: 8px;

    font-size: 11px;

    font-weight: 700;

    color: #999;

}


/* =========================================================
PUNTOS DE VENTA
========================================================= */

.sales-point-card {

    position: relative;

    height: 100%;

    padding: 35px;

    background: var(--white);

    border-radius: 20px;

    border:
        1px solid #e8e8e8;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.sales-point-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.08);

}


.sales-point-number {

    position: absolute;

    right: 18px;

    top: 10px;

    font-size: 70px;

    line-height: 1;

    font-weight: 900;

    color: rgba(0,0,0,.035);

}


.sales-point-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 28px;

    border-radius: 50%;

    background: var(--brand-blue);

    color: var(--primary);

    font-size: 20px;

}


.sales-point-zone {

    display: block;

    margin-bottom: 8px;

    color: var(--primary-dark);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;

}


.sales-point-card h4 {

    margin-bottom: 14px;

    font-size: 20px;

    font-weight: 900;

    color: var(--dark);

}


.sales-point-card p {

    min-height: 55px;

    margin-bottom: 25px;

    font-size: 14px;

    line-height: 1.7;

    color: var(--gray);

}


.sales-point-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--dark);

    font-size: 11px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.sales-point-link i {

    color: var(--primary-dark);

    transition:
        transform .2s ease;

}


.sales-point-link:hover {

    color: var(--primary-dark);

}


.sales-point-link:hover i {

    transform:
        translate(3px,-3px);

}


/* =========================================================
TABLET
========================================================= */

@media (max-width: 991px) {

    .where-play-section {

        padding: 90px 0;

    }


    .where-play-header {

        grid-template-columns: 1fr;

    }


    .where-play-heading {

        padding: 55px 45px;

    }


    .where-play-visual {

        min-height: 280px;

    }

}


/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

    .where-play-section {

        padding: 70px 0;

    }


    .where-play-header {

        border-radius:
            22px 22px 0 0;

    }


    .where-play-heading {

        padding: 45px 25px;

    }


    .where-play-heading h2 {

        font-size: 50px;

        letter-spacing: -3px;

    }


    .where-play-visual {

        min-height: 250px;

        padding: 35px 25px;

    }


    .where-map-icon {

        right: 25px;

        top: 30px;

        font-size: 85px;

    }


    .location-search {

        grid-template-columns:
            38px 1fr;

        gap: 5px;

        padding: 22px;

        margin-bottom: 60px;

        border-radius:
            0 0 22px 22px;

    }


    .location-search-btn {

        grid-column:
            1 / -1;

        width: 100%;

        margin-top: 15px;

    }


    .sales-points-header {

        flex-direction: column;

        align-items: flex-start;

    }


    .sales-point-card {

        padding: 28px 24px;

    }

}
/* =========================================================
   HERO - IMAGEN EN COLOR REAL
   ========================================================= */

.hero-overlay {
    background: transparent !important;
}

/* =========================================================
TICKETS LOTERÍA EL ÑERO
========================================================= */

.tickets-section {

    position: relative;

    padding: 115px 0 100px;

    background: #f6f7f7;

    overflow: hidden;

}


/* DECORACIÓN */

.tickets-section::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,175,216,.10),
            transparent 68%
        );

    right: -170px;
    top: -180px;

    pointer-events: none;

}


/* =========================================================
HEADER
========================================================= */

.tickets-header {

    position: relative;

    z-index: 2;

    max-width: 760px;

    margin: 0 auto 65px;

}


.tickets-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: var(--brand-blue);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 4px;

}


.tickets-eyebrow::before,
.tickets-eyebrow::after {

    content: "";

    width: 30px;

    height: 2px;

    background: var(--primary);

}


.tickets-header h2 {

    margin: 0;

    font-size:
        clamp(44px, 5vw, 70px);

    line-height: .98;

    font-weight: 900;

    letter-spacing: -3px;

    color: var(--dark);

}


.tickets-header h2 span {

    display: block;

    color: var(--brand-blue);

}


.tickets-header p {

    max-width: 570px;

    margin:
        25px auto 0;

    color: var(--gray);

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================================
GRID
========================================================= */

.tickets-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 30px;

    align-items: start;

}


/* =========================================================
CARD
========================================================= */

.ticket-card {

    position: relative;

    min-width: 0;

    background: var(--white);

    border:
        1px solid rgba(0,0,0,.06);

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 15px 45px
        rgba(0,0,0,.08);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.ticket-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 28px 65px
        rgba(0,0,0,.14);

}


/* =========================================================
IMAGEN
========================================================= */

.ticket-image-wrapper {

    position: relative;

    width: 100%;

    aspect-ratio: 5 / 8;

    overflow: hidden;

    background: #fff;

}


.ticket-image {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .45s ease;

}


.ticket-card:hover
.ticket-image {

    transform:
        scale(1.025);

}


/* BARRA DE COLOR SUPERIOR */

.ticket-image-wrapper::before {

    content: "";

    position: absolute;

    z-index: 2;

    top: 0;
    left: 0;
    right: 0;

    height: 7px;

    background: var(--brand-blue);

}


.ticket-card:nth-child(2)
.ticket-image-wrapper::before {

    background: var(--primary);

}


.ticket-card:nth-child(3)
.ticket-image-wrapper::before {

    background: var(--brand-green);

}


/* =========================================================
FOOTER CARD
========================================================= */

.ticket-card-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 25px 25px 27px;

}


.ticket-card-footer > div {

    display: flex;

    flex-direction: column;

    gap: 4px;

}


.ticket-card-footer span {

    color: var(--brand-blue);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

}


.ticket-card-footer strong {

    color: var(--dark);

    font-size: 17px;

    font-weight: 900;

}


.ticket-button {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    flex-shrink: 0;

    padding:
        11px 16px;

    border-radius: 50px;

    background:
        var(--primary);

    color:
        var(--dark);

    font-size: 10px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: .5px;

    transition:
        all .25s ease;

}


.ticket-button:hover {

    background:
        var(--brand-blue);

    color:
        var(--white);

}


.ticket-button i {

    font-size: 14px;

}


/* =========================================================
BOTTOM
========================================================= */

.tickets-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 50px;

    padding-top: 30px;

    border-top:
        1px solid #dddddd;

}


.tickets-bottom span {

    color: var(--dark);

    font-size: 14px;

    font-weight: 800;

}


.tickets-bottom a {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: var(--brand-blue);

    font-size: 12px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.tickets-bottom a i {

    font-size: 17px;

    transition:
        transform .25s ease;

}


.tickets-bottom a:hover i {

    transform:
        translateX(5px);

}


/* =========================================================
TABLET
========================================================= */

@media (max-width: 991px) {

    .tickets-section {

        padding:
            90px 0;

    }


    .tickets-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .ticket-card:nth-child(3) {

        grid-column:
            1 / -1;

        max-width: 470px;

        width: 100%;

        margin:
            0 auto;

    }

}


/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

    .tickets-section {

        padding:
            70px 0;

    }


    .tickets-header {

        margin-bottom:
            45px;

    }


    .tickets-header h2 {

        font-size: 44px;

        letter-spacing: -2px;

    }


    .tickets-grid {

        grid-template-columns:
            1fr;

        gap: 25px;

    }


    .ticket-card,
    .ticket-card:nth-child(3) {

        grid-column: auto;

        max-width: 430px;

        width: 100%;

        margin:
            0 auto;

    }


    .ticket-card-footer {

        padding:
            22px 20px 24px;

    }


    .tickets-bottom {

        flex-direction: column;

        align-items: flex-start;

        margin-top: 40px;

    }

}


/* =========================================================
MOBILE PEQUEÑO
========================================================= */

@media (max-width: 420px) {

    .ticket-card-footer {

        flex-direction: column;

        align-items: flex-start;

    }


    .ticket-button {

        width: 100%;

        justify-content: center;

    }

}


/* =========================================================
   ADAPTACION VISUAL — PROPUESTA DEL DISEÑADOR (AGO 2026)
   Este bloque se mantiene al final para respetar el contenido
   y las funciones originales de la página.
   ========================================================= */

:root {
    --nero-deep-blue: #08779b;
    --nero-blue: #078ab5;
    --nero-cyan: #08acd0;
    --nero-pale-blue: #e5f7fc;
    --nero-yellow: #ffcf08;
    --nero-green: #17a849;
    --nero-ink: #21262b;
}

body {
    background: var(--nero-pale-blue);
}

main {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

main > section {
    order: 10;
}

main > .hero-slider { order: 1; }
main > .tickets-section { order: 2; }
main > .results-premium { order: 3; }
main > .about-section { order: 4; }
main > .how-play-premium { order: 5; }
main > .where-play-section { order: 6; }
main > .testimonials-section { order: 7; }
main > .contact-section { order: 8; }

/* Navegación ligera sobre el hero */
#mainNavbar {
    padding: 22px 0;
    background: rgba(3, 105, 140, .16);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

#mainNavbar.navbar-scrolled {
    padding: 9px 0;
    background: rgba(5, 119, 156, .96);
}

.navbar-logo {
    height: 72px;
}

.navbar-nav {
    align-items: center;
    gap: 2px;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 9px 15px !important;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.navbar-nav .nav-link:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -1px;
    top: 50%;
    width: 1px;
    height: 13px;
    background: rgba(255, 255, 255, .65);
    transform: translateY(-50%);
}

.btn-navbar {
    margin-left: 14px;
    padding: 12px 24px;
    background: var(--nero-yellow);
    border-color: var(--nero-yellow);
    color: #075c78;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .09);
}

/* Hero amplio y luminoso como la propuesta */
.hero-slider {
    isolation: isolate;
    background:
        radial-gradient(circle at 63% 38%, rgba(111, 224, 246, .74), transparent 32%),
        linear-gradient(135deg, #08779a 0%, #058ab7 58%, #087da2 100%);
}

.hero-slider::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0 auto 0 0;
    width: 28%;
    pointer-events: none;
    opacity: .19;
    background-image: radial-gradient(circle, #6ed9ef 0 3px, transparent 4px);
    background-size: 25px 25px;
    -webkit-mask-image: linear-gradient(90deg, #000, transparent);
    mask-image: linear-gradient(90deg, #000, transparent);
}

.hero-slider .carousel-item {
    height: clamp(650px, 82vh, 900px);
    min-height: 650px;
}

.hero-image {
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    background: transparent !important;
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 4;
}

.carousel-indicators {
    z-index: 4;
    bottom: 42px;
}

/* Resultados superpuestos sobre la base del hero */
.results-premium {
    position: relative;
    z-index: 8;
    margin-top: -40px;
    padding: 0 0 100px;
    background: var(--nero-pale-blue);
    overflow: visible;
}

.results-premium > .container {
    max-width: 1080px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
}

.results-main,
.previous-results {
    display: contents;
}

.results-intro,
.previous-title,
.previous-action,
.latest-draw-bottom {
    display: none !important;
}

.latest-draw,
.previous-draw {
    position: relative;
    min-height: 425px;
    margin: 0;
    padding: 82px 34px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: 0 15px 35px rgba(8, 93, 121, .08);
}

.latest-draw::before,
.previous-draw::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: var(--nero-cyan);
}

.previous-draw:nth-of-type(2)::before {
    background: var(--nero-yellow);
}

.previous-draw:nth-of-type(3)::before {
    background: var(--nero-green);
}

.latest-draw-top {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.draw-label,
.previous-info small {
    color: var(--nero-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.latest-draw h3,
.previous-info strong {
    display: block;
    margin: 7px 0 0;
    color: var(--nero-ink);
    font-family: 'Cocogoose Pro', 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
}

.draw-date {
    display: flex;
    align-items: baseline;
    gap: 7px;
    color: var(--nero-ink);
}

.draw-date span {
    color: var(--nero-blue);
    font-size: 25px;
    font-weight: 900;
}

.draw-date small {
    font-weight: 700;
}

.winning-numbers,
.previous-numbers {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.winning-ball,
.previous-numbers span {
    width: 49px;
    height: 49px;
    flex: 0 0 49px;
    display: grid;
    place-items: center;
    margin: 0;
    border: 3px solid var(--nero-cyan);
    border-radius: 50%;
    background: #fff;
    color: #127c9e;
    font-size: 15px;
    font-weight: 800;
    box-shadow: none;
}

.winning-ball:last-child,
.previous-numbers span:last-child {
    background: var(--nero-blue);
    border-color: var(--nero-blue);
    color: #fff;
}

.previous-info {
    margin-bottom: 32px;
    text-align: center;
}

.results-premium::after {
    display: none;
    content: none;
}

/* Los tres tickets son los elementos que se montan sobre el banner */
.tickets-section {
    position: relative;
    z-index: 9;
    margin-top: -40px;
    padding: 0 18px 85px;
    background: var(--nero-pale-blue);
    overflow: visible;
}

.tickets-section::before {
    display: none;
}

.tickets-section .container {
    max-width: 1080px;
}

.tickets-header,
.tickets-bottom {
    display: none !important;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.ticket-card,
.ticket-card:nth-child(3) {
    position: relative;
    grid-column: auto;
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: 0 15px 35px rgba(8, 93, 121, .08);
    transform: none;
}

.ticket-card::before {
    content: "";
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: var(--nero-cyan);
}

.ticket-card:nth-child(2)::before {
    background: var(--nero-yellow);
}

.ticket-card:nth-child(3)::before {
    background: var(--nero-green);
}

.ticket-card:hover {
    transform: translateY(-5px);
}

.ticket-image-wrapper {
    min-height: 270px;
    padding-top: 10px;
    background: #fff;
}

.ticket-image-wrapper::before {
    display: none;
}

.ticket-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ticket-card-footer {
    background: #fff;
}

/* Resultados continúan debajo de los tickets, sin superposición */
.results-premium {
    margin-top: 0;
}

/* Las demás secciones conservan su contenido con una transición limpia */
.about-section,
.how-play-premium,
.where-play-section,
.contact-section,
.testimonials-section {
    position: relative;
}

@media (max-width: 991.98px) {
    #mainNavbar {
        padding: 12px 0;
        background: rgba(5, 119, 156, .96);
    }

    .navbar-logo {
        height: 58px;
    }

    .navbar-nav .nav-link:not(:last-child)::after {
        display: none;
    }

    .btn-navbar {
        margin: 10px 0 0;
    }

    .hero-slider .carousel-item {
        height: clamp(560px, 72vh, 720px);
        min-height: 560px;
    }

    .results-premium {
        margin-top: 0;
        padding-left: 18px;
        padding-right: 18px;
    }

    .tickets-section {
        margin-top: -28px;
    }

    .tickets-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .ticket-card:nth-child(3) {
        grid-column: 1 / -1;
        width: calc(50% - 7px);
        justify-self: center;
    }

    .results-premium > .container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .previous-draw:last-of-type {
        grid-column: 1 / -1;
        width: calc(50% - 7px);
        justify-self: center;
    }
}

@media (max-width: 767.98px) {
    .hero-slider .carousel-item {
        height: 540px;
        min-height: 540px;
    }

    .hero-image {
        object-position: center;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .results-premium {
        margin-top: 0;
        padding-bottom: 88px;
    }

    .tickets-section {
        margin-top: -18px;
        padding-bottom: 60px;
    }

    .tickets-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }

    .ticket-card:nth-child(3) {
        grid-column: auto;
        width: 100%;
    }

    .results-premium > .container {
        grid-template-columns: 1fr;
        max-width: 460px;
    }

    .previous-draw:last-of-type {
        grid-column: auto;
        width: 100%;
    }

    .latest-draw,
    .previous-draw {
        min-height: 335px;
        padding: 55px 25px 35px;
    }

    .results-premium::after {
        bottom: 28px;
    }
}

@media (max-width: 420px) {
    .navbar-logo {
        height: 50px;
    }

    .hero-slider .carousel-item {
        height: 470px;
        min-height: 470px;
    }

    .winning-ball,
    .previous-numbers span {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        font-size: 13px;
    }
}
