/* VARIABLES CORPORATIVAS */
:root {
    --color-primary: #D20A11;
    --color-secondary: #1D1D1B;
    --color-primary-light: #e63946;
    --color-primary-dark: #a50810;
    --color-white: #ffffff;
    --color-gray-light: #f8f9fa;
    --color-gray: #6c757d;
    --color-gray-dark: #343a40;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --shadow-sm: 0 2px 8px rgba(29, 29, 27, 0.1);
    --shadow-md: 0 4px 16px rgba(29, 29, 27, 0.15);
    --shadow-lg: 0 8px 32px rgba(29, 29, 27, 0.2);
    --shadow-xl: 0 16px 48px rgba(29, 29, 27, 0.25);
}

/* ESTILOS GLOBALES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
/*    background: linear-gradient(135deg, var(--color-primary) 20%, #3a3a3a 70%);*/
    color: var(--color-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* NAVBAR MEJORADO */
.navbar {
    background:  var(--color-primary) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 0.8rem 0;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

    .navbar.scrolled {
        padding: 0.5rem 0;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    }

.navbar-brand {
    display: inline-block;
    transition: var(--transition-smooth);
    text-decoration: none;
}

    .navbar-brand .logo-img {
        width: 190px;
        height: auto;
        transition: var(--transition-smooth);
    }

    .navbar-brand .logo-img-dos {
        width: 140px;
        height: auto;
        margin-left: 20px;
        transition: var(--transition-smooth);
    }

    .navbar-brand:hover .logo-img {
        transform: scale(1.05);
        filter: brightness(1.1);
    }

    .navbar-brand:focus {
        outline: 2px solid var(--color-primary);
        outline-offset: 4px;
        border-radius: 8px;
    }

.navbar-brand {
    width: 180px;
    transition: var(--transition-smooth);
}

    .navbar-brand:hover {
        transform: scale(1.05);
    }

.nav-link {
    position: center;
    font-weight: 500;
    letter-spacing: 0px;
    transition: var(--transition-smooth);
    padding: 0.5rem !important;
}

    .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background: var(--color-white);
        transform: translateX(-50%);
        transition: width 0.3s ease;
        border-radius: 3px;
    }

    .nav-link:hover::before {
        width: 80%;
    }

    .nav-link:hover {
        transform: translateY(-2px);
    }

.navbar .btn-danger {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(210, 10, 17, 0.4);
    transition: var(--transition-bounce);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

    .navbar .btn-danger::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .navbar .btn-danger:hover::before {
        width: 600px;
        height: 300px;
    }

    .navbar .btn-danger:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(210, 10, 17, 0.6);
    }

/* HERO SECTION MEJORADO */
.banner-inicio {
    width: 100%;
/*    height: 75vh;*/
    margin-top: 124px; /* Compensa el navbar fixed */
    overflow: hidden;
/*    display: flex;
    justify-content: flex-start;
    align-items: center;*/
    background-position: left;
    background: var(--color-white);
}

    .banner-inicio .wave {
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--color-primary);
        box-shadow: inset 50px rgba(255, 255, 255, 0.1);
        transition: 0.5s;
        margin-bottom: 10px;
        color: var(--color-secondary) !important;
    }

        .banner-inicio .wave span {
            position: absolute;
            width: 325vh;
            height: 255vh;
            top: 0;
            left: 50%;
            transform: translate(-50%, -75%);
            background: linear-gradient(135deg, #3a3a3a 0%, var(--color-secondary) 50%, var(--color-primary) 100%);
        }

    .banner-inicio .content {
        position: relative;
        z-index: 2;
        animation: fadeInUp 1s ease-out;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-inicio .wave span:nth-child(1) {
    border-radius: 45%;
    background: rgba(131, 58, 58, 0.8);
    animation: animate 5s linear infinite;
}

.banner-inicio .wave span:nth-child(2) {
    border-radius: 40%;
    background: rgba(209, 198, 198, 0.6);
    animation: animate 10s linear infinite;
}

.banner-inicio .wave span:nth-child(3) {
    border-radius: 42.5%;
    background: rgba(230, 228, 228, 0.4);
    animation: animate 15s linear infinite;
}

@keyframes animate {
    0% {
        transform: translate(-50%, -75%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -75%) rotate(360deg);
    }
}

.banner-inicio .content h1,
.banner-inicio .content p {
    color: var(--color-secondary) !important;
    text-align: left !important;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.banner-inicio .content h1 {
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.banner-inicio .btn-white {
    top: 65px;
    background-color: var(--color-white) !important;
    color: var(--color-primary) !important;
    border: 2px solid var(--color-white) !important;
    padding: 12px 30px !important;
    font-size: 1.1rem;
    font-weight: bold;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

    .banner-inicio .btn-white::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s;
    }

    .banner-inicio .btn-white:hover::before {
        left: 100%;
    }

    .banner-inicio .btn-white:hover {
        background-color: var(--color-primary) !important;
        color: var(--color-white) !important;
        border: 2px solid var(--color-primary) !important;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 6px 20px rgba(210, 10, 17, 0.4);
    }

.hero-btn {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
    width: auto;
}

.banner-inicio .btn-white {
    background-color: var(--color-white) !important;
    color: var(--color-primary) !important;
    border: 2px solid var(--color-white) !important;
    padding: clamp(10px, 2vw, 16px) clamp(20px, 4vw, 40px) !important;
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    font-weight: bold;
    transition: var(--transition-bounce);
}

@media (max-width: 768px) {

    .banner-inicio {
        height: auto;
    }

    .hero-btn {
/*        position: static;*/
        transform: none;
        margin-top: 1.5rem;
        display: flex;
        justify-content: center;
        padding: 0 20px;
        top: 390px;
        left: 90px;
    }

    .banner-inicio .btn-white {
        width: 100%;
        max-width: 320px;
        font-size: 1rem;
        padding: 12px 0 !important;
        color: var(--color-white) !important;
        background: var(--color-primary) !important;
    }
}

/*Contador - Compra tu Billeta*/
.contador-pro {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contador-container {
    background: #1e5ec9;
    padding: 25px 40px;
    border-radius: 25px;
    box-shadow: inset 0 3px 0 rgba(255,255,255,0.3), 0 10px 20px rgba(0,0,0,0.3);
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.contador-box {
    text-align: center;
}

/* CONTENEDOR DE LOS DOS DIGITOS */
.digit-wrapper {
    display: flex;
    background: linear-gradient(to bottom, #ff1a1a 0%, #c40000 100%);
    border: 4px solid #000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    min-width: 110px;
    box-shadow: inset 0 -5px 10px rgba(0,0,0,0.6), inset 0 5px 10px rgba(255,255,255,0.3);
}

    /* LINEA HORIZONTAL CENTRAL */
    .digit-wrapper::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background: #000;
        transform: translateY(-50%);
    }

    /* PUNTO CENTRAL */
    .digit-wrapper::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 8px;
        height: 8px;
        background: #000;
        border-radius: 50%;
        transform: translate(-50%,-50%);
        z-index: 2;
    }

/* CADA DIGITO */
.digit {
    position: relative;
    width: 55px;
    height: 80px;
    perspective: 200px;
    font-family: 'Courier New', monospace;
}


    /* LINEA VERTICAL ENTRE DIGITOS */
    .digit + .digit {
        border-left: 4px solid #000;
    }

    .digit span {
        font-size: 3.7rem;
        font-weight: bold;
        color: #fff;
        font-family: 'Courier New', monospace;
    }

.contador-box p {
    margin-top: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: 1px;
}

.separador {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
}

/*Responsive */

@media (max-width: 768px) {

    .contador-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .separador {
        display: none;
    }

    .digit-wrapper {
        min-width: 90px;
    }

    .digit span {
        font-size: 2.2rem;
    }
}

/* animacion de cambio de numero */
.flip {
    animation: flipDown 0.4s ease;
}

@keyframes flipDown {
    0% {
        transform: rotateX(0deg);
    }

    50% {
        transform: rotateX(-90deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

.digit {
    perspective: 200px;
}

    .digit span {
        display: inline-block;
        backface-visibility: hidden;
    }


.contador-parrafo {
    font-size: 22px;
    margin-top: -15px;
    margin-bottom: 5px;
}







/* TARJETAS SORTEOS MEJORADAS */
.sorteos-section {
    position: relative;
    z-index: 3;
    padding-top: 80px !important;
    background: var(--color-white);
}

    .sorteos-section h2 {
        font-size: 40px;
        font-weight: bold;
        color: var(--color-secondary);
        position: relative;
        padding-bottom: 15px;
        text-align-last: center;
    }

        .sorteos-section h2::after {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 4px;
            border-radius: 2px;
        }

.sorteo-card {
    transition: var(--transition-bounce);
    background-color: var(--color-white) !important;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .sorteo-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(210, 10, 17, 0.1), transparent);
        transition: left 0.5s;
    }

    .sorteo-card:hover::before {
        left: 100%;
    }

    .sorteo-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 12px 35px rgba(210, 10, 17, 0.3);
        border-color: var(--color-primary);
    }

    .sorteo-card img {
        width: 170px;
        height: auto;
        max-width: 100%;
        transition: var(--transition-smooth);
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    }

    .sorteo-card:hover img {
        transform: scale(1.1) rotate(2deg);
        filter: brightness(1.1) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
    }

    .sorteo-card .card-body {
        padding: 1.5rem;
    }

    .sorteo-card .btn-danger {
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
        border: none;
        transition: var(--transition-bounce);
        font-weight: 600;
        position: relative;
        overflow: hidden;
    }

        .sorteo-card .btn-danger::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.5s, height 0.5s;
        }

        .sorteo-card .btn-danger:hover::before {
            width: 300px;
            height: 300px;
        }

        .sorteo-card .btn-danger:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(210, 10, 17, 0.5);
        }

/* ========================================
   CARRUSEL MEJORADO
   ======================================== */
.carousel-container {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 0;
    /*    padding: 0 0.5rem;*/
    margin: 10px;
}

.carousel-btn {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-lg);
}

    .carousel-btn:hover {
        background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-secondary) 100%);
        transform: translateY(-50%) scale(1.15);
        box-shadow: var(--shadow-xl);
    }

.carousel-btn-prev {
    left: -25px;
}

.carousel-btn-next {
    right: -25px;
}

.carousel-btn:disabled {
    background: var(--color-gray);
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
    opacity: 0.5;
}

/* ========================================
   BENEFICIOS MEJORADOS
   ======================================== */
.beneficios-section {
    background: var(--color-white);
    position: relative;
}

.beneficio-card {
    background: var(--color-white);
    border-radius: 16px;
    transition: var(--transition-bounce);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

    .beneficio-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(210, 10, 17, 0.1), transparent);
        transform: rotate(45deg);
        transition: all 0.6s;
    }

    .beneficio-card:hover::before {
        top: -100%;
        left: -100%;
    }

    .beneficio-card h5 {
        color: var(--color-secondary);
        font-weight: 700;
    }

    .beneficio-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: var(--shadow-xl);
        border-color: var(--color-primary);
    }

.beneficio-icon i {
    transition: var(--transition-bounce);
}

.beneficio-card:hover .beneficio-icon i {
    transform: scale(1.2) rotate(10deg);
}

/* ========================================
   RESULTADOS MEJORADOS
   ======================================== */
.resultados-section {
    background: var(--color-white);
    padding: 60px 0;

}

    .resultados-section h2 {
        font-size: 40px;
        font-weight: bold;
        color: white;
        position: relative;
        padding: 20px 40px;
        text-align: center;
        display: inline-block;
        /* Bordes redondeados */
        border-radius: 50px;
        /* Text-shadow multicolor */
        text-shadow: 0 0 30px rgba(108, 164, 234, 0.7), 0 0 30px rgba(226, 108, 234, 0.2), 0 0 30px rgba(232, 23, 23, 0.6), 0 0 30px rgba(250, 179, 0, 0.6);
    }

        .resultados-section h2::after {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 5px;
            border-radius: 2px;
        }

.resultado-card {
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-bounce);
    border: 2px solid var(--color-gray-light);
}

    .resultado-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(210, 10, 17, 0.2) !important;
        border-color: var(--color-primary);
    }

    .resultado-card .numero {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--color-secondary) 0%, #3a3a3a 100%);
        color: var(--color-white);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-weight: bold;
        font-size: 1.2rem;
        box-shadow: var(--shadow-md);
        transition: var(--transition-smooth);
    }

    .resultado-card:hover .numero {
        transform: scale(1.1) rotate(5deg);
    }

    .resultado-card .numero.especial {
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
        position: relative;
        animation: pulseSpecial 2s ease-in-out infinite;
    }

@keyframes pulseSpecial {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(210, 10, 17, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(210, 10, 17, 0);
    }
}

.resultado-card .numero.especial::before {
    content: '+';
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--color-secondary);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotatePlus 3s linear infinite;
}

@keyframes rotatePlus {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.bg-danger {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%) !important;
}

.descripcion-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ========================================
   COMPROBADOR MEJORADO
   ======================================== */
/*.comprobador-section {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-light) 100%);
    position: relative;
    padding: 80px 0;
}*/

/*boton Flotante*/



.flotante {
    position: fixed;
    bottom: 60px;
    right: 80px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.btn-flotante {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1e5ec9;
    color: white;
    border: none;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    cursor: pointer;
    transition: all .3s ease;
    animation: pulso 2.5s infinite;
}

.btn-flotante i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all .3s ease;
}

.btn-flotante:hover {
    background: #d20a11;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.btn-flotante:hover i {
    background: rgba(255,255,255,0.3);
    transform: rotate(10deg) scale(1.1);
}
.flotante {
    position: fixed;
    bottom: 60px;
    right: 80px;
    z-index: 9999;
}

.ondas-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.onda {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid #1e5ec9;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: expand-ring 2s ease-out infinite;
    opacity: 0;
}

.onda-2 {
    animation-delay: 1s;
    border-color: #ff6b35;
}

@keyframes expand-ring {
    0% {
        width: 60px;
        height: 60px;
        opacity: 0.8;
    }

    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.btn-flotante {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1e5ec9;
    color: white;
    border: none;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    cursor: pointer;
    transition: all .3s ease;
}



/**/
.comprobador-section {
/*    background-image: url('/Images/Banner/BannerContador.png');*/
    background-size: cover; /* Cubre toda la sección */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* No repetir */
    position: relative;
}


    .comprobador-section h2 {
        font-size: 35px;
        font-weight: bold;
        color: var(--color-primary);
        position: relative;
        text-align-last: center;
    }

        .comprobador-section h2::after {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 5px;
            border-radius: 2px;
        }

    .comprobador-section .bg-black {
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%) !important;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        box-shadow: var(--shadow-xl);
    }

    .comprobador-section .form-control,
    .comprobador-section .form-select {
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        border-radius: 12px;
        transition: var(--transition-smooth);
    }

        .comprobador-section .form-control::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .comprobador-section .form-control:focus,
        .comprobador-section .form-select:focus {
            background: rgba(255, 255, 255, 0.25);
            border-color: var(--color-white);
            color: white;
            box-shadow: 0 0 0 0.3rem rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

    .comprobador-section .form-label {
        color: var(--color-white);
        font-weight: 600;
        margin-bottom: 0.75rem;
    }

    .comprobador-section .form-text {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .comprobador-section .btn-danger {
        background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-light) 100%);
        color: var(--color-primary);
        border: none;
        font-weight: bold;
        padding: 14px 40px;
        transition: var(--transition-bounce);
        border-radius: 50px;
        box-shadow: var(--shadow-lg);
        position: relative;
        overflow: hidden;
    }

        .comprobador-section .btn-danger::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--color-primary);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.5s, height 0.5s;
        }

        .comprobador-section .btn-danger:hover::before {
            width: 400px;
            height: 400px;
        }

        .comprobador-section .btn-danger:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }

        .comprobador-section .btn-danger span,
        .comprobador-section .btn-danger i {
            position: relative;
            z-index: 1;
        }

        .comprobador-section .btn-danger:hover,
        .comprobador-section .btn-danger:hover span,
        .comprobador-section .btn-danger:hover i {
            color: var(--color-white);
        }

    .comprobador-section .form-select {
        background: rgba(255, 255, 255, 0.15) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        color: white !important;
    }

        /* Estilos para las opciones del select cuando se despliega */
        .comprobador-section .form-select option {
            background: var(--color-white) !important;
            color: var(--color-secondary) !important;
            padding: 12px !important;
            border-bottom: 1px solid #e0e0e0 !important;
        }

            .comprobador-section .form-select option:hover {
                background: var(--color-gray-light) !important;
                color: var(--color-primary) !important;
            }

            .comprobador-section .form-select option:checked {
                background: var(--color-primary) !important;
                color: var(--color-white) !important;
            }

            /* Estilos adicionales para mejor compatibilidad */
            .comprobador-section .form-select option:focus {
                background: var(--color-gray-light) !important;
                color: var(--color-secondary) !important;
            }

            /* Para navegadores basados en WebKit (Chrome, Safari, Edge) */
            .comprobador-section .form-select option:not(:checked) {
                background: var(--color-white) !important;
                color: var(--color-secondary) !important;
            }


/*NOTICIAS*/
.news-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(220, 53, 69, 0.15);
}

.news-title {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.news-link {
    text-decoration: none !important;
    font-weight: 500;
}

.news-img, .news-imges {
    border-radius: 1rem 1rem 0 0;
    background: #fff;
}

@media (max-width: 991px) {
    .news-card {
        margin-bottom: 2rem;
    }
}


/* ========================================
   FOOTER MEJORADO
   ======================================== */
.footer-section {
    padding-bottom: 50px !important;
/*    background: var(--color-secondary) !important;*/
    border-top: 3px solid var(--color-primary);
    position: relative;
    overflow: hidden;
}

    .footer-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: linear-gradient(135deg, transparent 0%, rgba(210, 10, 17, 0.05) 100%);
        pointer-events: none;
    }

.vertical-divider {
    width: 3px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--color-primary), transparent);
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(210, 10, 17, 0.5);
}

.image-container-left-footer img {
    transition: var(--transition-bounce);
    border-radius: 12px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

    .image-container-left-footer img:hover {
        transform: translateY(-5px) scale(1.05);
        filter: brightness(1.2) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
    }

.footer-section a {
    transition: var(--transition-smooth);
    font-weight: 500;
    position: relative;
}

    .footer-section a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--color-primary);
        transition: width 0.3s ease;
    }

    .footer-section a:hover::after {
        width: 100%;
    }

    .footer-section a:hover {
        /*    color: var(--color-primary) !important;*/
        transform: translateY(-2px);
    }

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 40px;
    border: 20px;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

    .social-links a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: var(--color-primary);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.4s, height 0.4s;
    }

    .social-links a:hover::before {
        width: 100%;
        height: 100%;
    }

    .social-links a:hover {
        transform: translateY(-5px) rotate(5deg);
        box-shadow: 0 8px 20px rgba(210, 10, 17, 0.5);
    }

    .social-links a i {
        position: relative;
        z-index: 1;
    }

/* ========================================
   CONFETI Y POPUP MEJORADOS
   ======================================== */
.confetti-container {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 12px;
    height: 12px;
    opacity: 0;
    animation: confettiFall 5s ease-in-out forwards;
}

    .confetti.rectangle {
        width: 15px;
        height: 5px;
    }

    .confetti.circle {
        border-radius: 50%;
    }

    .confetti.triangle {
        width: 0;
        height: 0;
        background: transparent !important;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
    }

@keyframes confettiFall {
    0% {
        opacity: 1;
        transform: translateY(-100px) translateX(0) rotate(0deg) scale(0.8);
    }

    50% {
        transform: translateY(50vh) translateX(15px) rotate(450deg) scale(1.1);
    }

    100% {
        opacity: 0;
        transform: translateY(100vh) translateX(0) rotate(900deg) scale(1);
    }
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 29, 27, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

    .popup-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.popup-container {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-light) 100%);
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
    max-width: 550px;
    width: 90%;
    padding: 40px;
    text-align: center;
    position: relative;
    transform: scale(0.7);
    transition: var(--transition-bounce);
    border: 3px solid var(--color-primary);
}

.popup-overlay.active .popup-container {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(210, 10, 17, 0.1);
    border: none;
    font-size: 24px;
    color: var(--color-gray);
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .popup-close:hover {
        background: var(--color-primary);
        color: var(--color-white);
        transform: rotate(90deg);
    }

.result-icon {
    font-size: 90px;
    margin-bottom: 25px;
    animation: bounceIn 0.8s ease;
}

.winner .result-icon {
    color: #28a745;
    animation: bounceIn 0.8s ease, continuousJump 2s ease-in-out infinite 1s;
}

.loser .result-icon {
    color: var(--color-primary);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes continuousJump {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    25% {
        transform: translateY(-15px) scale(1.05);
    }

    50% {
        transform: translateY(0) scale(1);
    }

    75% {
        transform: translateY(-10px) scale(1.03);
    }
}

.result-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: "Shojumaru", system-ui;
}

.winner .result-title {
    color: #28a745;
    animation: continuousJump 1.5s ease-in-out infinite, titleGlow 2s ease-in-out infinite;
}

.loser .result-title {
    color: var(--color-primary);
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(40, 167, 69, 0.7);
    }

    50% {
        text-shadow: 0 0 20px rgba(40, 167, 69, 0.9);
    }
}

.result-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--color-gray-dark);
    line-height: 1.6;
}

.result-action {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

    .result-action::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.5s, height 0.5s;
    }

    .result-action:hover::before {
        width: 300px;
        height: 300px;
    }

    .result-action:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(210, 10, 17, 0.5);
    }

/* ========================================
   FUENTES PERSONALIZADAS
   ======================================== */
.bungee-spice-regular {
    font-family: "Bungee Spice", sans-serif;
    font-weight: 600;
    font-style: initial;
    color: var(--color-secondary);
}

.shojumaru-regular {
    font-family: "Shojumaru", system-ui;
    font-weight: 600;
    font-style: normal;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 100%;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    .resultado-card .numero {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .sorteos-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .banner-inicio {
        min-height: 60vh;
    }

    .sorteo-card img {
        width: 120px;
    }

    .resultado-card .numero {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .popup-container {
        padding: 30px 20px;
    }

    .result-title {
        font-size: 28px;
    }

    .result-icon {
        font-size: 70px;
    }
}

/* ========================================
   UTILIDADES
   ======================================== */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   ESTILOS DROPDOWN MENÚ
   ======================================== */
.dropdown-menu-custom {
    background: linear-gradient(145deg, var(--color-secondary) 0%, #2a2a28 100%);
    border: 2px solid var(--color-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    animation: dropdownSlide 0.3s ease-out;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu-custom .dropdown-item {
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    transition: var(--transition-smooth);
    font-weight: 500;
    position: relative;
}

    .dropdown-menu-custom .dropdown-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: var(--color-primary);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .dropdown-menu-custom .dropdown-item:hover::before {
        transform: scaleY(1);
    }

    .dropdown-menu-custom .dropdown-item:hover {
        background: linear-gradient(90deg, rgba(210, 10, 17, 0.2) 0%, transparent 100%);
        color: var(--color-white);
        padding-left: 2rem;
    }

    .dropdown-menu-custom .dropdown-item i {
        color: var(--color-primary);
        transition: var(--transition-smooth);
    }

    .dropdown-menu-custom .dropdown-item:hover i {
        transform: scale(1.2) translateX(3px);
    }

.dropdown-menu-custom .dropdown-divider {
    border-color: rgba(210, 10, 17, 0.3);
    margin: 0.5rem 0;
}

/* Botón outline light para login */ :;
.btn-outline-light {
    border: 2px solid var(--color-white);
    color: var(--color-white);
    background: transparent;
    transition: var(--transition-bounce);
    font-weight: 600;
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Ajuste para dropdown toggle */
.nav-link.dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.nav-link.dropdown-toggle:hover::after {
    transform: rotate(180deg);
}


/* ========================================
   AJUSTE ANCHO CONTENEDOR
   ======================================== */
.container-fluid {
    max-width: 1400px;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 1400px) {
    .container-fluid {
        max-width: 1600px;
    }
}

@media (max-width: 768px) {
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Ajuste específico para contenedores en secciones */
.sorteos-section .container,
.beneficios-section .container,
.resultados-section .container,
.comprobador-section .container {
    max-width: 1400px;
}

@media (min-width: 1400px) {
    .sorteos-section .container,
    .beneficios-section .container,
    .resultados-section .container,
    .comprobador-section .container {
        max-width: 1600px;
    }
}

/* ========================================
   ESTILOS PARA BOTONES MODALES
   ======================================== */
.btn-outline-danger {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
    transition: var(--transition-smooth);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
}

    .btn-outline-danger:hover {
        background: var(--color-primary);
        color: var(--color-white);
        border-color: var(--color-primary);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(210, 10, 17, 0.3);
    }

.btn-outline-secondary {
    border: 2px solid var(--color-gray);
    color: var(--color-gray);
    background: transparent;
    transition: var(--transition-smooth);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
}

    .btn-outline-secondary:hover {
        background: var(--color-gray);
        color: var(--color-white);
        border-color: var(--color-gray);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
    }

/* ========================================
   ESTILOS PARA MODALES
   ======================================== */
.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
}

.modal-body {
    background: var(--color-white);
}

.modal-footer {
    border-top: 2px solid var(--color-gray-light);
    padding: 1rem 1.5rem;
}

/* Tablas en modales */
.table {
    margin-bottom: 0;
}

    .table thead th {
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    }

    .table tbody tr {
        transition: var(--transition-smooth);
    }

        .table tbody tr:hover {
            background: rgba(210, 10, 17, 0.05);
            transform: scale(1.01);
        }

.table-danger {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var,--color-white);
}

.table-secondary {
    background: linear-gradient(135deg, var(--color-gray) 0%, var(--color-gray-dark) 100%);
    color: var(--color-white);
}

/* Badges en modales */
.badge {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Animación de entrada del modal */
.modal.fade .modal-dialog {
    transition: transform 0.4s ease-out, opacity 0.3s ease-out;
}

.modal.show .modal-dialog {
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================================
   AJUSTES RESPONSIVE PARA RESULTADOS
   ======================================== */
@media (max-width: 768px) {
    .resultado-card .numeros {
        gap: 0.5rem !important;
    }

    .resultado-card .numero {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .btn-outline-danger,
    .btn-outline-secondary {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    .table {
        font-size: 0.85rem;
    }

    .badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.5rem;
    }

    .modal-header {
        padding: 1rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .table {
        font-size: 0.75rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

/* ========================================
   BOTÓN COMPROBAR NÚMEROS - ESPECÍFICO
   ======================================== */
.btn-comprobar {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-light) 100%) !important;
    color: var(--color-primary) !important;
    border: 2px solid var(--color-primary) !important;
    font-weight: bold;
    padding: 14px 40px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(29, 29, 27, 0.2);
    position: relative;
    overflow: hidden;
}

    .btn-comprobar::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: var(--color-primary);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.5s ease, height 0.5s ease;
        z-index: 0;
    }

    .btn-comprobar:hover::before {
        width: 400px;
        height: 400px;
    }

    .btn-comprobar:hover {
        background: var(--color-primary) !important;
        color: var(--color-white) !important;
        border-color: var(--color-primary) !important;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 12px 40px rgba(210, 10, 17, 0.4);
    }

    .btn-comprobar i,
    .btn-comprobar span {
        position: relative;
        z-index: 1;
        color: inherit !important;
    }

    .btn-comprobar:hover i,
    .btn-comprobar:hover span {
        color: var(--color-white) !important;
    }

/* Responsive */
@media (max-width: 768px) {
    .btn-comprobar {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

/* Agregar después de la sección del vertical-divider existente */

.divider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 150px; /* Ajusta según necesites */
}

.vertical-divider {
    width: 3px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--color-primary), transparent);
    box-shadow: 0 0 10px rgba(210, 10, 17, 0.5);
    border-radius: 2px;
}

/*Resultados*/
.degradado {
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    background-color: linear-gradient(90deg, #00c6ff, #ff00cc, #ff6a00);
}

.degradado {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.degradado h1 {
    color: white;
    font-size: 60px;
    font-weight: 900;
    text-transform: uppercase;
    margin-left: 8px;
    /* 🔥 Degradado rojo → rosado → naranja */
    background: linear-gradient( 90deg, #6ca4ea, #b31a1e ,#ff004c, #ff2e63, #ff8c01 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* 💥 Efecto 3D lateral */
    text-shadow: 
        -6px 6px 0px #ffffff, 

        -10px 15px 15px rgba(0, 0, 0, 0.3), 
        -10px 4px 25px rgba(0, 0, 0, 0.25), 
        -12px 12px 40px rgba(0, 0, 0, 0.4);
}

.degradado h4 {
    color: white;
    font-size: 23px;
    margin-top: -17px;
    font-weight: 900;
    text-transform: uppercase;
    margin-left: 8px;
    /* 🔥 Degradado rojo → rosado → naranja */
    background: linear-gradient( 90deg, #6ca4ea, #b31a1e ,#ff004c, #ff2e63, #ff8c01 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* 💥 Efecto 3D lateral */
    text-shadow: 
        -2px 2px 0px #ffffff, 

        -10px 10px 15px rgba(0, 0, 0, 0.3), 
        -10px 4px 25px rgba(0, 0, 0, 0.25), 
        -12px 12px 40px rgba(0, 0, 0, 0.4);
}


.sorteos-slider {
    overflow: hidden;
    width: 100%;
}

.sorteos-track {
    display: flex;
    width: auto;
    animation: scrollSorteos 40s linear infinite;
}

    .sorteos-track .col-md-6 {
        flex: 0 0 auto;
        padding: 5px;
    }

@keyframes scrollSorteos {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}






/*ESTILOS FOOTER*/
/* Estilos base de los enlaces */
.contact-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

    /* Iconos */
    .contact-link i {
        font-size: 0.9rem;
    }

/* ========== COLORES POR DEFECTO ========== */

/* Dirección - Azul */
.contact-address {
    color: #ffffff;
}

    .contact-address:hover {
        color: #4dabf7;
        background-color: rgba(77, 171, 247, 0.1);
    }

/* Email - Verde */
.contact-email {
    color: #ffffff;
}

    .contact-email:hover {
        color: #51cf66;
        background-color: rgba(81, 207, 102, 0.1);
    }

/* Teléfono - Naranja */
.contact-phone {
    color: #ffffff;
}

    .contact-phone:hover {
        color: #ff922b;
        background-color: rgba(255, 146, 43, 0.1);
    }

/* ========== ESTADOS ACTIVOS/SELECCIONADOS ========== */

/* Cuando se hace clic (estado :active) */
.contact-link:active {
    transform: scale(0.95);
}

/* Clase para mantener el color seleccionado vía JavaScript */
.contact-link.selected {
    font-weight: 600;
}

.contact-address.selected {
    color: #4dabf7;
    background-color: rgba(77, 171, 247, 0.2);
    box-shadow: 0 0 0 2px rgba(77, 171, 247, 0.3);
}

.contact-email.selected {
    color: #51cf66;
    background-color: rgba(81, 207, 102, 0.2);
    box-shadow: 0 0 0 2px rgba(51, 207, 102, 0.3);
}

.contact-phone.selected {
    color: #ff922b;
    background-color: rgba(255, 146, 43, 0.2);
    box-shadow: 0 0 0 2px rgba(255, 146, 43, 0.3);
}

/* ========== EFECTOS ADICIONALES ========== */

/* Efecto de onda al hacer clic */
@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.contact-link.clicking {
    animation: ripple 0.4s ease-out;
}

/* Separador entre teléfonos */
.text-white {
    color: #ffffff !important;
}
