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

#hero{

    position:relative;
    min-height:100vh;

    display:flex;
    align-items:center;

    overflow:hidden;

    background:#000;

}

.hero-background{

    position:absolute;
    inset:0;
    z-index:1;

}

.hero-background img{

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:top;

    transform:scale(1.03);

    filter:
        brightness(1.15)
        contrast(1.08)
        saturate(1.12);

}

.hero-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(7,24,38,.05) 0%,
        rgba(7,24,38,.12) 30%,
        rgba(7,24,38,.22) 60%,
        rgba(7,24,38,.38) 100%
    );

    z-index:2;

}

.hero-content{

    position:relative;

    z-index:5;

    width:min(1400px,92%);

    margin:auto;

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:22px;

}

.hero-logos{

    display:flex;

    align-items:center;

    gap:35px;

}

.hero-logos img{

    height:58px;

}

.hero-label{

    color:#C78C32;

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:.95rem;

    font-weight:700;

}

.hero-title{

    font-size:clamp(3.5rem,7vw,6rem);

    font-weight:900;

    line-height:1;

    max-width:900px;

}

.hero-subtitle{

    font-size:clamp(1.4rem,2vw,2rem);

    color:#F4F4F4;

}

.hero-location{

    font-size:1.15rem;

    color:#C8D0D8;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:24px;

    width:100%;

    margin-top:200px;

}

.countdown{

    display:flex;

    gap:31px;

    margin-top:114px;

    justify-content:center;

    width:100%;

}

.tournament-live-badge {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 114px;
}

.tournament-live-badge-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 10px;
    background: #00E676;
    color: #05101A;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.9rem;
    transition: filter 0.2s ease;
}

.tournament-live-badge-btn:hover {
    filter: brightness(1.08);
}

.count-box{

    width:103px;

    height:103px;

    border-radius:15px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

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

    backdrop-filter:blur(12px);

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

    transition:.30s;

}

.count-box:hover{

    transform:translateY(-6px);

    border-color:#C78C32;

}

.count-box span{

    font-size:3.24rem;

    font-weight:800;

}

.count-box small{

    margin-top:7px;

    font-size:1.18rem;

    letter-spacing:2px;

    color:#B9C3CC;

}

.hero-buttons .btn{

    min-width:150px;

}
.hero-info{
    position: absolute;
    left: 50%;
    bottom: 40px;      /* luego ajustaremos */
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    z-index: 20;
}
/* ==========================================
   HERO EVENT
========================================== */

.hero-event{

    position:absolute;

    left:50%;

    bottom:-460px;

    transform:translateX(-50%) translateY(-10px);

    text-align:center;

    width:100%;

    z-index:20;

    pointer-events:none;

}

.event-label{

    display:block;

    color:#D8B15A;

    font-size:2.8rem;

    font-weight:800;

    letter-spacing:12px;

    text-transform:uppercase;

    margin-bottom:8px;

    text-shadow:0 4px 15px rgba(0,0,0,.7);

}

.event-title{

    margin:10px 0 0;

    color:#ffffff;

    font-size:5.5rem;

    font-weight:900;

    letter-spacing:2px;

    text-transform:uppercase;

    line-height:1;

    text-shadow:0 4px 18px rgba(0,0,0,.65);

}

.event-location{

    margin-top:14px;

    color:#f5f5f5;

    font-size:1.6rem;

    font-weight:600;

    letter-spacing:7px;

    text-transform:uppercase;

    text-shadow:0 3px 12px rgba(0,0,0,.65);

}
/* ==========================================
   HERO LOGO
========================================== */

.hero-logo{

    position:absolute;

    top: -380px;

    left:50%;

    transform:translateX(-50%);

    width:min(624px,67.2vw);

    z-index:20;

    pointer-events:none;

}

.hero-logo img{

    width:100%;

    display:block;

    filter:drop-shadow(0 8px 20px rgba(0,0,0,.35));

}
