:root{

    --bg:#050505;

    --card:#121212;

    --card2:#181818;

    --soft:#1A1A1A;

    --primary:#FF1A1A;

    --primary-dark:#B30000;

    --text:#FFFFFF;

    --muted:#A1A1AA;

    --muted2:#D4D4D8;

    --border:rgba(255,255,255,.08);

    --shadow:0 20px 50px rgba(0,0,0,.45);

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:Inter,system-ui,sans-serif;

    background:
        radial-gradient(circle at top left, rgba(255,0,0,.10), transparent 28%),
        radial-gradient(circle at bottom right, rgba(179,0,0,.10), transparent 24%),
        #050505;

    color:var(--text);

    overflow-x:hidden;

}

body:before{

    content:"";

    position:fixed;

    inset:0;

    pointer-events:none;

    z-index:-1;

    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size:44px 44px;

}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

.container{

    width:100%;

    max-width:1280px;

    margin:auto;

    padding:0 22px;

}

/* =========================================================
   NAVBAR
========================================================= */

.navbar{

    position:sticky;

    top:0;

    z-index:999;

    height:105px;

    display:flex;

    align-items:center;

    backdrop-filter:blur(18px);

    background:rgba(5,5,5,.88);

    border-bottom:1px solid var(--border);

    
}

.nav-inner{

    width:100%;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:18px;

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:24px;

    font-weight:900;

    color:#FFFFFF;

}

.logo-mark{

    width:48px;

    height:48px;

    border-radius:18px;

    display:grid;

    place-items:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:white;

    box-shadow:0 0 25px rgba(255,0,0,.35);

}

.gradient-text{

    background:linear-gradient(
        90deg,
        #FFFFFF,
        var(--primary)
    );

    -webkit-background-clip:text;

    background-clip:text;

    color:transparent;

}

.nav-links{

    display:flex;

    align-items:center;

    gap:10px;

}

.nav-links a{

    padding:12px 16px;

    border-radius:14px;

    font-size:14px;

    font-weight:800;

    color:#D4D4D8;

    transition:.25s;

}

.nav-links a:hover,
.nav-links .active{

    background:rgba(255,0,0,.10);

    color:#FFFFFF;

}

/* =========================================================
   BUTTONS
========================================================= */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    border:none;

    border-radius:18px;

    padding:15px 22px;

    cursor:pointer;

    font-weight:900;

    transition:.25s;

}

.btn:hover{

    transform:translateY(-2px);

}

.btn-primary{

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--primary-dark)
    );

    color:white;

    box-shadow:0 0 25px rgba(255,0,0,.28);

}

.btn-primary:hover{

    box-shadow:0 0 40px rgba(255,0,0,.42);

}

.btn-dark{

    background:#1A1A1A;

    color:white;

    border:1px solid var(--border);

}

/* =========================================================
   HERO
========================================================= */

.hero-slider{

    position:relative;

}

.hero-slide{

    position:relative;

    height:78vh;

    min-height:680px;

    overflow:hidden;

    background:#000;

}

.hero-slide img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.18),
            rgba(0,0,0,.55),
            rgba(0,0,0,.92)
        );

    display:flex;

    align-items:flex-end;

}

.hero-content{

    max-width:720px;

    padding-bottom:90px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--primary-dark)
    );

    color:white;

    padding:10px 18px;

    border-radius:999px;

    font-size:13px;

    font-weight:900;

    box-shadow:0 0 20px rgba(255,0,0,.25);

}

.hero-content h1{

    margin:24px 0 18px;

    font-size:58px;

    line-height:1;

    font-weight:900;

    color:white;

    text-shadow:0 10px 30px rgba(0,0,0,.45);

}

.hero-content p{

    max-width:620px;

    font-size:18px;

    line-height:1.8;

    color:#E4E4E7;

}

.hero-actions{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-top:28px;

}

.swiper{

    width:100%;

    height:100%;

}

.swiper-slide{

    width:100%;

    height:100%;

}

.swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:rgba(255,255,255,.45);

    opacity:1;

}

.swiper-pagination-bullet-active{

    background:#FF1A1A;

    box-shadow:0 0 15px rgba(255,0,0,.45);

}

.swiper-button-prev,
.swiper-button-next{

    width:52px;

    height:52px;

    border-radius:18px;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.08);

    color:white;

    transition:.3s;

}

.swiper-button-prev:hover,
.swiper-button-next:hover{

    background:#FF1A1A;

    border-color:#FF1A1A;

}

.swiper-button-prev:after,
.swiper-button-next:after{

    font-size:18px;

    font-weight:900;

}

.swiper-slide-active img{

    animation:heroZoom 7s linear forwards;

}

@keyframes heroZoom{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.06);
    }

}

/* =========================================================
   SECTION
========================================================= */

.section{

    padding:70px 0;

}

.section-head{

    text-align:center;

    max-width:780px;

    margin:0 auto 40px;

}

.section-head h2{

    font-size:42px;

    font-weight:900;

    color:white;

}

.section-head p{

    margin-top:14px;

    color:#A1A1AA;

    line-height:1.8;

}

/* =========================================================
   GRID
========================================================= */

.showcase-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(420px,1fr));

    gap:28px;

}

/* =========================================================
   RAFFLE CARD
========================================================= */

.raffle-card{

    background:#151515;

    border-radius:34px;

    overflow:hidden;

    border:1px solid var(--border);

    transition:.35s;

    box-shadow:var(--shadow);

}

.raffle-card:hover{

    transform:translateY(-6px);

    border-color:var(--primary);

    box-shadow:0 0 35px rgba(255,0,0,.16);

}

.raffle-image{

    position:relative;

    height:320px;

    overflow:hidden;

}

.raffle-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    transition:.4s;

}

.raffle-card:hover .raffle-image img{

    transform:scale(1.05);

}

.raffle-image-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.85),
            transparent
        );

    display:flex;

    align-items:flex-end;

    padding:18px;

}

.live-pill{

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--primary-dark)
    );

    color:white;

    padding:10px 16px;

    border-radius:999px;

    font-size:13px;

    font-weight:900;

}

.raffle-body{

    padding:28px;

}

.raffle-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:14px;

}

.raffle-header h3{

    font-size:36px;

    color:white;

    font-weight:900;

}

.price-tag{

    background:#1A1A1A;

    color:var(--primary);

    padding:12px 16px;

    border-radius:16px;

    border:1px solid var(--border);

    font-weight:900;

}

.raffle-description{

    margin-top:18px;

    color:#A1A1AA;

    line-height:1.7;

}

.raffle-mini-stats{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:14px;

    margin-top:22px;

}

.mini-box{

    background:#1A1A1A;

    border-radius:22px;

    padding:22px;

    border:1px solid rgba(255,255,255,.05);

}

.mini-box span{

    display:block;

    color:#A1A1AA;

    font-size:13px;

    font-weight:900;

}

.mini-box strong{

    display:block;

    margin-top:10px;

    font-size:46px;

    color:white;

    font-weight:900;

}

.raffle-stats{

    display:flex;

    justify-content:space-between;

    margin-top:12px;

    color:#D4D4D8;

    font-size:14px;

    font-weight:900;

}

.progress-bar{

    height:12px;

    margin-top:18px;

    background:#1A1A1A;

    border-radius:999px;

    overflow:hidden;

}

.progress-bar span{

    display:block;

    height:100%;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--primary-dark)
    );

}

.raffle-btn{

    width:100%;

    margin-top:20px;

}

/* =========================================================
   STEPS
========================================================= */

.steps-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:24px;

}

.step-card{

    background:#151515;

    border-radius:30px;

    padding:32px;

    border:1px solid var(--border);

    transition:.3s;

}

.step-card:hover{

    transform:translateY(-5px);

    border-color:var(--primary);

}

.step-number{

    width:70px;

    height:70px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--primary-dark)
    );

    color:white;

    font-size:28px;

    font-weight:900;

    box-shadow:0 0 25px rgba(255,0,0,.25);

}

.step-card h3{

    margin-top:22px;

    font-size:28px;

    color:white;

}

.step-card p{

    margin-top:16px;

    color:#A1A1AA;

    line-height:1.8;

}

.important-card{

    background:#450A0A;

    border-color:#7F1D1D;

}

.result-card{

    background:#111827;

    border-color:#1F2937;

}

/* =========================================================
   FAQ
========================================================= */

.faq{

    display:grid;

    gap:18px;

    max-width:900px;

    margin:0 auto 80px;

}

.faq-item{

    background:#151515;

    border-radius:24px;

    border:1px solid var(--border);

    overflow:hidden;

}

.faq-q{

    width:100%;

    border:none;

    background:#151515;

    color:white;

    padding:24px;

    font-size:18px;

    font-weight:900;

    display:flex;

    justify-content:space-between;

    cursor:pointer;

}

.faq-a{

    padding:0 24px 24px;

    color:#A1A1AA;

    line-height:1.8;

}

/* =========================================================
   FOOTER
========================================================= */

.footer{

    padding:35px 0;

    background:#050505;

    border-top:1px solid var(--border);

}

.footer-grid{

    display:grid;

    grid-template-columns:1.4fr repeat(3,1fr);

    gap:30px;

    align-items:flex-start;

}

.footer h4{

    color:white;

    margin-bottom:14px;

}

.footer p,
.footer a{

    display:block;

    color:#A1A1AA;

    margin:10px 0;

    line-height:1.6;

}

/* =========================================================
   FORM
========================================================= */

input,
select,
textarea{

    width:100%;

    background:#111111;

    border:1px solid #2A2A2A;

    border-radius:18px;

    padding:14px 16px;

    color:white;

    outline:none;

}

input:focus,
select:focus,
textarea:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(255,0,0,.10);

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:980px){

    .footer-grid{

        grid-template-columns:1fr;

    }

    .showcase-grid{

        grid-template-columns:1fr;

    }

    .nav-links{

        display:none;

        position:absolute;

        top:82px;

        left:14px;

        right:14px;

        background:#151515;

        border:1px solid var(--border);

        border-radius:22px;

        padding:12px;

        flex-direction:column;

        align-items:stretch;

    }

    .nav-links.open{

        display:flex;

    }

}

@media(max-width:700px){

    .hero-slide{

        height:58vh;

    }

    .hero-content{

        padding-bottom:60px;

    }

    .hero-content h1{

        font-size:40px;

    }

    .raffle-image{

        height:240px;

    }

    .raffle-header{

        flex-direction:column;

        align-items:flex-start;

    }

    .hero-actions{

        flex-direction:column;

    }

}
/* DESKTOP */
.mobile-menu-btn{
    display:none;
}

/* MOBILE */
@media(max-width:980px){

    .mobile-menu-btn{
        display:flex;
    }

}

/* ===========================
   COMO PARTICIPAR
=========================== */

.how-section{
    background:#050505;
    padding:100px 0;
}

.how-wrapper{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
    margin-top:60px;
}

.how-card{
    width:280px;
    min-height:320px;
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:30px;
    color:#fff;
    transition:.3s;
}

.how-card:hover{
    transform:translateY(-8px);
    border-color:#ff0000;
}

.how-number{
    width:55px;
    height:55px;
    border-radius:18px;
    background:#ff0000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
}

.how-card h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:15px;
    color:#fff;
}

.how-card p{
    color:#bdbdbd;
    line-height:1.7;
    font-size:15px;
}

.how-list{
    margin-top:15px;
    padding-left:20px;
}

.how-list li{
    color:#fff;
    margin-bottom:10px;
}

.how-important{
    background:linear-gradient(
        135deg,
        #8a0000,
        #430000
    );
}

.status-paid{
    margin-top:15px;
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:#ff0000;
    color:#fff;
    font-weight:700;
}

.how-result{
    background:linear-gradient(
        135deg,
        #071533,
        #0f234d
    );
}

@media(max-width:768px){

    .how-card{
        width:100%;
    }

    .how-card h3{
        font-size:24px;
    }

}

/* =========================================================
   COMO PARTICIPAR
========================================================= */

.how-section{

    padding:80px 0;

    background:
        linear-gradient(
            180deg,
            rgba(255,0,0,.03),
            transparent
        );

}

.steps-grid{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:24px;

    max-width:1200px;

    margin:auto;

}

.steps-bottom{

    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:24px;

    max-width:820px;

    margin:24px auto 0;

}

.bkg-black{
    background: #111111 !important;
  }

.step-card{

    background:#111111;

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    padding:32px;

    min-height:280px;

    transition:.3s;

}

.step-card:hover{

    transform:translateY(-6px);

    border-color:#ff1a1a;

}

.step-number{

    width:58px;

    height:58px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#ff1a1a;

    color:#fff;

    font-size:24px;

    font-weight:900;

    margin-bottom:24px;

}

.step-card h3{

    font-size:34px;

    line-height:1.1;

    color:#fff;

    font-weight:800;

    margin-bottom:18px;

}

.step-card p{

    color:#bdbdbd;

    line-height:1.9;

    font-size:16px;

}

.step-list{

    margin-top:14px;

    padding-left:20px;

}

.step-list li{

    color:#fff;

    margin-bottom:10px;

    font-size:16px;

}

.important-card{

    background:linear-gradient(
        135deg,
        #990000,
        #5e0000
    );

}

.result-card{

    background:linear-gradient(
        135deg,
        #071f5f,
        #0c2c84
    );

}

.paid-badge{

    display:inline-block;

    margin-top:20px;

    background:#ff1a1a;

    color:#fff;

    padding:12px 22px;

    border-radius:999px;

    font-weight:900;

    font-size:14px;

}

@media(max-width:1000px){

    .steps-grid{

        grid-template-columns:1fr;

    }

    .steps-bottom{

        grid-template-columns:1fr;

        max-width:100%;

    }

    .step-card{

        min-height:auto;

    }

    .step-card h3{

        font-size:28px;

    }

}

.feature-section{
    padding:100px 0;
}

.feature-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.feature-grid.reverse .feature-content{
    order:1;
}

.feature-grid.reverse .feature-image{
    order:2;
}

.feature-badge{
    display:inline-block;
    padding:8px 16px;
    border-radius:999px;
    background:rgba(255,0,0,.12);
    color:#ff3b3b;
    font-size:12px;
    font-weight:800;
    letter-spacing:1px;
    margin-bottom:20px;
}

.feature-content h2{
    font-size:52px;
    line-height:1.1;
    margin-bottom:20px;
    font-weight:900;
}

.feature-content p{
    color:#a1a1aa;
    line-height:1.9;
    font-size:18px;
    margin-bottom:25px;
}

.feature-list{
    list-style:none;
    padding:0;
}

.feature-list li{
    margin-bottom:14px;
    font-size:18px;
    color:#fff;
}

.feature-image img{
    width:100%;
    border-radius:24px;
    border:1px solid rgba(255,255,255,.08);
}

.feature-video iframe{
    width:100%;
    height:420px;
    border:none;
    border-radius:24px;
}

@media(max-width:900px){

    .feature-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .feature-grid.reverse .feature-content,
    .feature-grid.reverse .feature-image{
        order:initial;
    }

    .feature-content h2{
        font-size:34px;
    }

    .feature-video iframe{
        height:260px;
    }
}

.site-logo{

    width:100px;

    height:100px;

    object-fit:contain;

    border-radius:50px;

    background:white;

}


.footer-logo{
    width: 100px;
    height:100px;
    object-fit:contain;
    display:block;
    background:white;
    border-radius:50px;
}