:root {
    --blue-dark: #10141D;
    --black-deep: #091018;
    --gold: #A48E5D;
    --white: #FEFEFE;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg,
            var(--black-deep),
            var(--blue-dark));
    color: var(--white);
    overflow-x: hidden;
}

/* NAVBAR */

.navbar {
    background: rgba(9, 16, 24, .9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(164, 142, 93, .2);
}

.navbar-brand {
    color: var(--gold) !important;
    font-size: 1.6rem;
    font-weight: 800;
}

.nav-link {
    color: var(--white) !important;
    margin-left: 20px;
    transition: .3s;
}

.nav-link:hover {
    color: var(--gold) !important;
}

/* LOGO NAVBAR */

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-container {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(164, 142, 93, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(164, 142, 93, .15);
    transition: .3s;
}

.logo-container:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(164, 142, 93, .35);
}

.logo-img {
    width: 125%;
    height: 125%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-top {
    font-size: .72rem;
    letter-spacing: 3px;
    color: #FEFEFE;
    font-weight: 500;
}

.logo-bottom {
    font-size: 1.35rem;
    font-weight: 800;
    color: #A48E5D;
    letter-spacing: 1px;
}

/* RESPONSIVE */

@media(max-width:576px) {

    .logo-container {
        width: 48px;
        height: 48px;
    }

    .logo-bottom {
        font-size: 1.05rem;
    }

}

.btn-gold {
    background: var(--gold);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.btn-gold:hover {
    background: #b59d67;
    transform: translateY(-2px);
}

/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle,
            rgba(164, 142, 93, .18),
            transparent 70%);
    right: -100px;
    top: -100px;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(164, 142, 93, .15);
    color: var(--gold);
    padding: 10px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(164, 142, 93, .2);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--gold);
}

.hero-text {
    font-size: 1.1rem;
    color: #d9d9d9;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline-custom {
    border: 1px solid rgba(255, 255, 255, .15);
    color: white;
    border-radius: 50px;
    padding: 12px 28px;
}

.btn-outline-custom:hover {
    background: white;
    color: black;
}

.hero-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 28px;
    padding: 20px;
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .4);
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.live-badge {
    background: red;
    color: white;
    font-size: .8rem;
    padding: 6px 14px;
    border-radius: 50px;
}

.hero-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.hero-card-body {
    margin-top: 20px;
}

.hero-card-body h3 {
    font-weight: 700;
}

.countdown {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.count-box {
    flex: 1;
    background: rgba(255, 255, 255, .05);
    border-radius: 16px;
    padding: 15px;
    text-align: center;
}

.count-box h4 {
    color: var(--gold);
    font-weight: 700;
}

/* SECTION */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
}

.section-title p {
    color: #cfcfcf;
}

/* RAFFLES */

.raffles-section {
    padding: 120px 0;
}

.raffle-card {
    background: rgba(255, 255, 255, .04);
    border-radius: 25px;
    overflow: hidden;
    transition: .4s;
    border: 1px solid rgba(255, 255, 255, .06);
}

.raffle-card:hover {
    transform: translateY(-10px);
}

.raffle-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.raffle-content {
    padding: 25px;
}

.raffle-tag {
    background: rgba(164, 142, 93, .18);
    color: var(--gold);
    padding: 7px 14px;
    border-radius: 50px;
    font-size: .8rem;
    display: inline-block;
    margin-bottom: 15px;
}

.raffle-content h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

.raffle-content p {
    color: #d0d0d0;
}

.raffle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.btn-gold-sm {
    background: var(--gold);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-gold-sm:hover {
    background: #b59d67;
}

/* WINNERS */

.winners-section {
    padding: 120px 0;
}

.winner-card {
    background: rgba(255, 255, 255, .04);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .06);
}

.winner-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* FOOTER */

footer {
    padding: 70px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

footer h3 {
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 15px;
}

.socials {
    margin: 25px 0;
}

.socials a {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    margin: 0 10px;
    color: white;
    font-size: 1.2rem;
    transition: .3s;
}

.socials a:hover {
    background: var(--gold);
    transform: translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:992px) {

    .hero {
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

}

@media(max-width:576px) {

    .hero-title {
        font-size: 2.3rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

}

/* ==========================
   SORTEOS
========================== */

.raffles-section {
    padding: 120px 0;
}

.raffle-card {
    background: rgba(255, 255, 255, .04);
    border-radius: 25px;
    overflow: hidden;
    transition: .4s;
    border: 1px solid rgba(164, 142, 93, .15);
    backdrop-filter: blur(12px);
    height: 100%;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .25);
}

.raffle-card:hover {
    transform: translateY(-10px);
    border-color: rgba(164, 142, 93, .5);
    box-shadow: 0 15px 45px rgba(164, 142, 93, .15);
}

/* IMÁGENES */

.raffle-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    object-position: center;
    padding: 15px;

    background:
        radial-gradient(circle at center,
            rgba(164, 142, 93, .12),
            transparent 70%),
        #091018;
}

/* CONTENIDO */

.raffle-content {
    padding: 25px;
}

.raffle-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #FEFEFE;
}

.raffle-content p {
    color: #d5d5d5;
    line-height: 1.6;
    min-height: 60px;
}

/* ETIQUETAS */

.raffle-tag {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 15px;

    background: rgba(164, 142, 93, .15);
    color: #A48E5D;
    border: 1px solid rgba(164, 142, 93, .25);
}

/* FOOTER CARD */

.raffle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.raffle-footer small {
    color: #bdbdbd;
    display: block;
}

.raffle-footer h4 {
    color: #A48E5D;
    font-weight: 700;
    margin-top: 5px;
}

/* BOTÓN */

.btn-gold-sm {
    background: #A48E5D;
    color: #FEFEFE;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
    border: none;
}

.btn-gold-sm:hover {
    background: #b79f68;
    color: white;
    transform: translateY(-2px);
}

/* ==========================
   GRAN PREMIO
========================== */

.grand-prize {
    border: 2px solid #A48E5D;
    box-shadow: 0 0 40px rgba(164, 142, 93, .25);
    position: relative;
}

.grand-prize::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top center,
            rgba(164, 142, 93, .12),
            transparent 60%);
    pointer-events: none;
}

.grand-prize:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 55px rgba(164, 142, 93, .35);
}

.grand-prize img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    object-position: center;
    padding: 20px;

    background:
        radial-gradient(circle at center,
            rgba(164, 142, 93, .18),
            transparent 70%),
        linear-gradient(180deg,
            #10141D,
            #091018);
}

.grand-prize h3 {
    color: #A48E5D;
    font-size: 2rem;
    font-weight: 800;
}

.grand-tag {
    background: #A48E5D;
    color: #FEFEFE;
    border: none;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .grand-prize img {
        height: 320px;
    }

    .raffle-card img {
        height: 260px;
    }

}

@media(max-width:768px) {

    .grand-prize h3 {
        font-size: 1.6rem;
    }

    .raffle-card img {
        height: 240px;
        padding: 10px;
    }

    .grand-prize img {
        height: 280px;
    }

}

@media(max-width:576px) {

    .raffle-card img {
        height: 220px;
    }

    .grand-prize img {
        height: 250px;
    }

}

/* ==========================
   GANADORES
========================== */

.winners-section {
    padding: 120px 0;
}

.winner-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(164, 142, 93, .15);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    height: 100%;
    transition: .4s;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.winner-card:hover {
    transform: translateY(-10px);
    border-color: rgba(164, 142, 93, .5);
    box-shadow: 0 15px 40px rgba(164, 142, 93, .15);
}

.winner-card img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    object-position: center;
    padding: 15px;

    background:
        radial-gradient(circle at center,
            rgba(164, 142, 93, .12),
            transparent 70%),
        #091018;
}

.winner-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #A48E5D;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 20px rgba(164, 142, 93, .4);
}

.winner-badge i {
    font-size: 1.2rem;
}

.winner-content {
    padding: 25px;
    text-align: center;
}

.winner-content h4 {
    font-weight: 700;
    color: #FEFEFE;
    margin-bottom: 10px;
}

.winner-ticket {
    display: inline-block;
    background: rgba(164, 142, 93, .15);
    color: #A48E5D;
    border: 1px solid rgba(164, 142, 93, .25);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.winner-content p {
    color: #d6d6d6;
    margin-bottom: 15px;
}

.winner-content small {
    color: #9f9f9f;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .winner-card img {
        height: 220px;
    }

}

/* ==========================
   FOOTER LINKS
========================== */

.footer-links {

    margin: 25px 0;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;
}

.footer-links a {

    color: #FEFEFE;

    text-decoration: none;

    font-size: .95rem;

    transition: .3s ease;
}

.footer-links a:hover {

    color: #A48E5D;

    transform: translateY(-2px);
}

/* RESPONSIVE */

@media(max-width:768px) {

    .footer-links {

        flex-direction: column;

        gap: 12px;
    }

}

.premio-img {

    width: 100%;

    height: 600px;

    object-fit: contain;

    background:
        linear-gradient(135deg,
            #091018,
            #10141D);

    border: 1px solid rgba(164, 142, 93, .25);

    padding: 20px;

    border-radius: 25px;
}

.moto-premio {

    width: 100%;

    height: auto !important;

    max-height: none !important;

    object-fit: unset !important;

    padding: 0 !important;

    display: block;

    border-radius: 20px 20px 0 0;
}

.ticket-unico-box {

    background:
        linear-gradient(135deg,
            rgba(164, 142, 93, .15),
            rgba(255, 255, 255, .02));

    border: 1px solid rgba(164, 142, 93, .25);

    border-radius: 25px;

    padding: 35px;

    text-align: center;

    margin-bottom: 40px;
}

.ticket-unico-box h3 {

    color: #A48E5D;

    font-weight: 700;

    margin-bottom: 15px;
}

.ticket-unico-box p {

    color: #d8d8d8;

    line-height: 1.8;

    max-width: 850px;

    margin: auto;
}

.ticket-price {

    margin-top: 20px;

    font-size: 3rem;

    font-weight: 800;

    color: #A48E5D;
}

.btn-ticket-principal {

    background: #A48E5D;

    color: #fff;

    text-decoration: none;

    padding: 18px 40px;

    border-radius: 15px;

    font-size: 1.1rem;

    font-weight: 700;

    display: inline-block;

    transition: .3s;
}

.btn-ticket-principal:hover {

    transform: translateY(-4px);

    color: #fff;

    box-shadow:
        0 15px 30px rgba(164, 142, 93, .35);
}

/* =========================
   DATOS DE PAGO
========================= */

.payment-info-box {

    background:
        linear-gradient(135deg,
            rgba(164, 142, 93, .15),
            rgba(255, 255, 255, .03));

    border: 1px solid rgba(164, 142, 93, .25);

    border-radius: 25px;

    padding: 35px;

    text-align: center;

    margin-top: 40px;

    margin-bottom: 25px;
}

.payment-icon {

    font-size: 3rem;

    margin-bottom: 15px;
}

.payment-info-box h3 {

    color: #A48E5D;

    font-weight: 700;

    margin-bottom: 15px;
}

.payment-info-box p {

    color: #d7d7d7;

    margin-bottom: 10px;
}

.payment-info-box h2 {

    color: #FEFEFE;

    font-weight: 800;

    margin-bottom: 10px;
}

.payment-info-box span {

    display: inline-block;

    background: rgba(164, 142, 93, .15);

    border: 1px solid rgba(164, 142, 93, .30);

    padding: 10px 20px;

    border-radius: 50px;

    color: #A48E5D;

    font-weight: 700;
}

/* =========================
   ADVERTENCIA
========================= */

.warning-payment-box {

    background:
        rgba(255, 193, 7, .08);

    border: 1px solid rgba(255, 193, 7, .35);

    border-radius: 25px;

    padding: 30px;

    text-align: center;

    margin-bottom: 40px;
}

.warning-icon {

    font-size: 3rem;

    margin-bottom: 15px;
}

.warning-payment-box h3 {

    color: #ffc107;

    font-weight: 700;

    margin-bottom: 15px;
}

.warning-payment-box p {

    color: #d7d7d7;

    line-height: 1.8;

    margin-bottom: 10px;
}