body {
    font-family: "Merriweather", sans-serif;
    font-weight: bold;
}

.numero-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}




.custom-header {
    background-color: rgb(23, 166, 50) !important;
    color: white !important;
    border-bottom: none !important;
    font-family: "Bevan";
    padding: 18px 0;
}


.headerChange {
    font-family: "Open Sans";
}


.logo-floating {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    height: 100px;
    z-index: 10;
}

.footer a {
    transition: 0.3s;
    color: gray;
}

.footer a:hover {
    opacity: 1;
    color: #ffffff !important;
}

.logo-mobile img {
    height: 80px;
}

.logo-mobile {
    top: -55%;
    transform: translate(-50%, -40%);

}

.logo-desktop-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -15px;
}

.navbar-desktop {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    width: 100%;
}

.logo-desktop {
    height: 95px;
    margin-top: -10px;
}



.navbar {
    padding-top: 15px;
    padding-bottom: 15px;
}


.navbar-custom {
    background-color: #2E6F40;
}

.navbar-custom .nav-link:hover {
    color: #f4c430 !important;
}

.premio-monto:not(:first-child) {
    font-family: "Merriweather";
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 22px;
    min-width: 120px;
    text-align: center;

    border-radius: 12px;

}



.textReduce {
    font-size: small;
}

.calendarImg {
    height: 30px;
    width: 30px;
}

.primerLugar {
    font-family: "Open Sans";
    font-size: 2.5rem !important;
    font-weight: 700;
    color: #1c1c1c;
}

.lugar {
    font-family: "Open Sans";
    font-size: 1.4rem;
    font-weight: 600;
    color: #2f2f2f;
}

.premios-card {
    border-radius: 20px;
    overflow: hidden;
    /* MUY IMPORTANTE */
    border: 1px solid #1b1b1b;
    /* si quieres mantener borde */
}

.custom-header {
    background-color: rgb(23, 166, 50);
    color: white;
    border-bottom: none;
    padding: 18px 0;
}

.list-group-item {
    border-bottom: 10px solid rgba(0, 0, 0, .2);
}




@media (max-width: 576px) {
    .list-group-item {
        padding: 16px 15px;
    }

    .primerLugar {
        font-size: 1.7rem !important;
    }

    .lugar {
        font-size: 1.2rem;
    }

    .premio-monto {
        font-size: 1.8rem !important;
        padding: 8px 22px;
        min-width: 120px;
    }
}

.list-group-item:not(:first-child) .premio-monto {
    background: linear-gradient(145deg, #4caf50, #2e7d32);
    color: white;

}





.card {
    border: none;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.tabla-precios {
    border-radius: 18px;
    overflow: hidden;
}

.tabla-precios .list-group-item {
    border: none;
    padding: 14px 20px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tabla-precios .list-group-item:nth-child(odd) {
    background-color: #f1f3f5;
}

.tabla-precios .list-group-item span:last-child {
    font-weight: 700;
    color: #212529;
}






@media (max-width: 576px) {
    .legend-tickets {
        gap: 8px;
    }

    .legend-tickets .numero-btn {
        width: 20px;
        height: 20px;
        padding: 0;
    }

    .legend-tickets span {
        font-size: 13px;
    }
}


.primer-lugar-item {
    padding: 22px 25px;
    align-items: center;
}

.primer-lugar-item .primerLugar {
    position: relative;
    top: -8px;
    line-height: 1;
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
}

.primer-lugar-item .premio-monto {
    font-size: 2rem;
    font-weight: 700;
    padding: 5px;
}


.monto-numero {
    font-size: 2.5rem;
}

@media (max-width:768px) {
    .monto-numero {
        font-size: 25px !important;
    }

    .primerLugar {
        font-size: 25px !important;
    }
}


.primer-lugar-item .monto-numero {
    align-items: center;
    position: relative;
    display: inline-block;
    /* importante */
    padding: 12px 30px;
    border-radius: 20px;

    background: linear-gradient(135deg,
            #f7e27d 0%,
            #e6c44a 35%,
            #d4af37 60%,
            #f7e27d 100%);
    overflow: hidden;
    line-height: 1;
}

.primer-lugar-item .monto-numero::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;

    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.6) 50%,
            transparent 100%);

    transform: skewX(-25deg);
    animation: brilloOro 3s infinite;
}


@keyframes brilloOro {
    0% {
        left: -200%;
    }

    100% {
        left: 150%;
    }
}