/* body {
    background-color: #0A0A0A;
    font-family: 'Poppins', sans-serif;
    color: #fff;
} */

body {
      min-height: max(884px, 100dvh);
    }

.material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        .no-scrollbar::-webkit-scrollbar { display: none; }
        .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }


        .top-20{
            margin-bottom: 100px;
        }
.gold {
    color: #FFD700;
}



.btn-gold {
    background: #FFD700;
    color: #000;
    font-weight: 600;
    border-radius: 12px;
    padding: 10px 20px;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #e6c200;
}

.border-gold {
    border: 1px solid #FFD700;
}

.nav-btn {
    border: 1px solid #FFD700;
    color: #FFD700;
    padding: 8px 18px;
    border-radius: 12px;
    margin: 0 5px;
    transition: 0.3s;
}

.nav-btn:hover {
    background: #FFD700;
    color: #000;
}

.hero-badge {
    border: 1px solid #FFD700;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    color: #FFD700;
}

.title-main {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #FFD700, #fff, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.countdown-card {
    border: 1px solid #FFD700;
    border-radius: 30px;
    padding: 30px;
    max-width: 500px;
    margin: auto;
    text-align: center;
    background: #222;

    /* 🔥 EFECTO PRO */
    box-shadow:
        0 0 10px rgba(255, 215, 0, 0.15),
        0 0 25px rgba(255, 215, 0, 0.1),
        0 10px 40px rgba(0, 0, 0, 0.6);

    backdrop-filter: blur(10px);
    transition: 0.3s;
    position: relative;
}

.countdown-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(45deg, #FFD700, transparent, #FFD700);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

.countdown-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 0 15px rgba(255, 215, 0, 0.25),
        0 0 35px rgba(255, 215, 0, 0.2),
        0 15px 50px rgba(0, 0, 0, 0.8);
}

.btn-gold-gradient {
    background: linear-gradient(45deg, #FFD700, #e6c200);
    color: #000;
    font-weight: 600;
    border-radius: 12px;
    padding: 12px 25px;
    transition: 0.3s;
}

.btn-gold-gradient:hover {
    transform: scale(1.05);
}

.btn-outline-gold {
    border: 1px solid #FFD700;
    color: #FFD700;
    border-radius: 12px;
    padding: 12px 25px;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background: #FFD700;
    color: #000;
}

.kpi-card {
    border: 1px solid #FFD700;
    border-radius: 20px;
    padding: 20px;
}

.navbar-toggler {
    border-radius: 10px;
    padding: 6px 10px;
}

@media (max-width: 991px) {
    .nav-btn {
        width: 100%;
        text-align: center;
    }
}

.card-sorteo {
    border: 1px solid #FFD700;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    background: #111;
}

.card-sorteo:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(255,215,0,0.3);
}

.card-sorteo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.btn-participar {
    background: linear-gradient(45deg, #FFD700, #e6c200);
    color: #000;
    font-weight: bold;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
}

.modal-content {
    background: #0f0f0f;
    border: 1px solid #FFD700;
    border-radius: 20px;
}

.form-control {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
}

.form-control:focus {
    border-color: #FFD700;
    box-shadow: none;
}

.qr-box {
    border: 1px dashed #FFD700;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
}

.btn-participar-main {
    background: linear-gradient(45deg, #FFD700, #e6c200);
    color: #000;
    font-weight: 700;
    padding: 14px 35px;
    border-radius: 15px;
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-participar-main:hover {
    transform: scale(1.05);
}

.product-card {
    background: #111;
    border: 1px solid #FFD700;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(255,215,0,0.2);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.badge-qty {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FFD700;
    color: #000;
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: bold;
}

.form-control::placeholder {
    color: rgba(255, 215, 0, 0.7); /* dorado suave */
}

.kpi-section {
    margin-top: 60px;
}

.kpi-item h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.kpi-item p {
    font-size: 0.95rem;
}

.kpi-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #FFD700, transparent);
}

/* Base */
.nav-link-pro {
    text-decoration: none !important;
    padding: 8px 18px;
    border-radius: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover efecto glow */
.nav-link-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    opacity: 0;
    transition: 0.3s;
}

/* INICIO */
.nav-inicio {
    background: rgba(255, 215, 0, 0.08);
    color: #FFD700;
}

.nav-inicio:hover {
    background: linear-gradient(45deg, #FFD700, #e6c200);
    color: #000;
    transform: translateY(-2px);
}

/* TICKETS */
.nav-tickets {
    background: rgba(0, 200, 83, 0.08);
    color: #00C853;
}

.nav-tickets:hover {
    background: linear-gradient(45deg, #00C853, #00a844);
    color: #fff;
    transform: translateY(-2px);
}

/* GANADORES */
.nav-ganadores {
    background: rgba(255, 87, 34, 0.08);
    color: #FF5722;
}

.nav-ganadores:hover {
    background: linear-gradient(45deg, #FF5722, #e64a19);
    color: #fff;
    transform: translateY(-2px);
}

/* EFECTO HOVER GENERAL */
.nav-link-pro:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* MOBILE FULL WIDTH */
@media (max-width: 991px) {
    .nav-link-pro {
        width: 100%;
        justify-content: center;
    }
}

.footer-pro {
    background: #0A0A0A;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #aaa;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #FFD700;
    padding-left: 5px;
}

/* Redes */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #FFD700;
    border-radius: 50%;
    color: #FFD700;
    margin-right: 8px;
    transition: 0.3s;
}

.social-icon:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-3px);
}

/* Divider */
.footer-divider {
    border-color: rgba(255, 215, 0, 0.2);
}


.text-primary {
    --bs-text-opacity: 1;
    color: rgb(250, 131, 27) !important;
}

.border-primary {
    --bs-border-opacity: 1;
    border-color: rgb(250, 131, 27) !important;
}

.to-primary-dim {
    --tw-gradient-to: rgb(250, 131, 27);
}

.from-primary {
    --tw-gradient-from: rgb(250, 130, 20) !important;
    --tw-gradient-to: rgb(250, 130, 20) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgb(250, 130, 20) !important;
}

.text-primary-container {
    --tw-text-opacity: 1;
    color: rgb(250, 130, 20) !important;
}

.text-\[\#90abff\] {
    --tw-text-opacity: 1;
    color: rgb(250, 130, 20) !important;
}

.h-48 {
    height: 20rem !important;
}









.modal-content {
    backdrop-filter: blur(20px);
}

.form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-control,
.form-select {
    background-color: rgba(255,255,255,0.05) !important;
    border-radius: 10px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
}


.ticket-shape {
    border-radius: 16px;

    /* 🎟️ Forma de ticket real */
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 35%, 
        95% 40%, 
        100% 45%, 
        100% 55%, 
        95% 60%, 
        100% 65%, 
        100% 100%, 
        0% 100%, 
        0% 65%, 
        5% 60%, 
        0% 55%, 
        0% 45%, 
        5% 40%, 
        0% 35%
    );
}



/* WhatsApp */

/* Base */
.btn-floating:hover img {
  margin-bottom: -3px
}

.btn-floating {
    position: fixed;
    right: 25px;
    overflow: hidden;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 0;
    z-index: 9999;
    color: white;
    transition: .2s;
}

.btn-floating:hover {
    width: auto;
    padding: 0 20px;
    cursor: pointer;
}

.btn-floating span {
    font-size: 16px;
    margin-left: 5px;
    transition: .2s;
    line-height: 0px;
    display: none;
}

.btn-floating:hover span {
    display: inline-block;
}

/* Phone */
.btn-floating.phone {
    bottom: 165px;
    background-color: #760f10;
}

.btn-floating.phone:hover {
    background-color: #c03421;
}

/* WhatsApp */
.btn-floating.whatsapp {
    background-color: #34af23;
    bottom: 105px;
}

.btn-floating.whatsapp:hover {
    background-color: #1f7a12
}

/* Fin WhatsApp */


/* .bg-secondary {
    background-color: rgb(250, 130, 20) !important;
} */