
/* Botón de registro con animación */
.btn-registro-ya {
    position: relative;
    background: linear-gradient(45deg, #FFD700, #FFA500) !important;
    border: none !important;
    color: #000 !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    padding: 0.75rem 2.5rem !important;
    overflow: hidden;
    z-index: 1;
}

.btn-registro-ya:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.btn-registro-ya::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-registro-ya:hover::before {
    left: 100%;
}

/* Estrellas animadas */
.star {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    pointer-events: none;
    animation: twinkle 1.5s infinite ease-out;
    opacity: 0;
}

@keyframes twinkle {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 0;
    }
}

.img-pago {
    height: 43px;
}
.img-efectivo{
    max-height: 350px !important;
}

/* Estilo para el botón de Ver todas las rifas */
.ver-rifas-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #d4af37 0%, #f1c40f 100%);
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ver-rifas-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1c40f 0%, #d4af37 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.ver-rifas-btn:hover {
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.ver-rifas-btn:hover::after {
    opacity: 1;
}

.ver-rifas-btn svg {
    transition: transform 0.3s ease;
}

.ver-rifas-btn:hover svg {
    transform: translateX(5px);
}

/* Estilos para móviles */
@media (max-width: 767.98px) {
    .ver-rifas-btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .ver-rifas-btn span {
        flex-grow: 1;
        text-align: center;
    }
}

/* Efecto de pulso al tocar en móviles */
@media (hover: none) {
    .ver-rifas-btn:active {
        transform: scale(0.98);
    }
}
@media only screen and (max-width: 600px) {
    .img-efectivo{
        height: 250px !important;
    }
}



.section-slider{
    width: 100%;
    height: 400px;
    top: 0;
    margin-bottom: 2rem;
    display: inline-flex;
    padding: 0;
}

.section-slider .swiper{
    margin-top: -5rem;
    width: 100%;
}

.swiper-wrapper{
    width: 100%;
}


.swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.img-slider{
    width: 100%;
    min-width: 100%;
    height: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: 100%, 100%;
}


.swiper-slide:before{
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(25, 25, 33, 0.7);
    opacity: 0.75;
    position: absolute;
    z-index: 1;
}

@media only screen and (max-width: 2000px) {

    .section-slider{
        height: 600px;
    }

}

@media only screen and (max-width: 1500px) {
    .section-slider{
        height: 400px;
    }
}

@media only screen and (max-width: 500px) {

    .section-slider{
        margin-top: 100px;
        height: auto !important;
    }

    .swiper-slide {
        height: 100%;
    }

    .img-slider{
        max-width: 100%;
        min-width: 100%;
        width: 100%;
        max-height: 100%;
        background-size: cover;
        object-fit: contain;
    }

    .swiper-slide:before{
        content: "";
        width: 100%;
        height: 100%;
        background: transparent !important;
    }

    .img-slider:after{
        content: "";
        width: 100%;
        height: 100%;
        background: rgba(25, 25, 33, 0.7);
        opacity: 0.75;
        position: absolute;
        z-index: 1;
    }

    .hero__title{
        margin-top: -5rem !important;
    }
    

}
