:root{
    --vino:#9f1d20;
    --vino-oscuro:#7c1719;
    --blanco:#ffffff;
    --gris:#f5f5f5;
    --texto:#222;
}

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

body{
    font-family:'Montserrat',sans-serif;
    color:var(--texto);
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:white;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo img{
    height:70px;
}

nav ul{
    list-style:none;
    display:flex;
    gap:25px;
}

nav a{
    text-decoration:none;
    color:var(--texto);
    font-weight:600;
}

.hero{
    position:relative;
    height:85vh;
    background:url('../img/hero.jpg') center center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;
    color:white;
    max-width:800px;
}

.hero h1{
    font-size:4rem;
    margin-bottom:20px;
}

.hero p{
    font-size:1.3rem;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn{
    background:var(--vino);
    color:white;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn:hover{
    background:var(--vino-oscuro);
}

.btn-outline{
    background:transparent;
    border:2px solid white;
}

.sobre{
    padding:80px 0;
    background:white;
}

.sobre h2{
    text-align:center;
    color:var(--vino);
    margin-bottom:30px;
}

.sobre p{
    max-width:800px;
    margin:auto;
    text-align:center;
}

.stats{
    margin-top:50px;
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.stat{
    background:var(--gris);
    padding:30px;
    border-radius:15px;
    min-width:220px;
    text-align:center;
}

.stat span{
    display:block;
    font-size:3rem;
    font-weight:800;
    color:var(--vino);
}

.cta{
    padding:80px 0;
    background:var(--gris);
    text-align:center;
}

.cta h2{
    color:var(--vino);
    margin-bottom:20px;
}

.cta p{
    margin-bottom:25px;
}

footer{
    background:var(--vino);
    color:white;
    text-align:center;
    padding:40px 20px;
}

.social{
    margin:20px 0;
}

.social a{
    color:white;
    text-decoration:none;
    margin:0 10px;
}

@media(max-width:768px){

    .nav{
        flex-direction:column;
        gap:15px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:2.4rem;
    }

    .hero p{
        font-size:1rem;
    }

}
.social a{

    display:inline-flex;
    align-items:center;
    gap:10px;

    color:white;
    text-decoration:none;

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

    padding:12px 20px;

    border-radius:10px;

    transition:.3s;

}

.social a:hover{

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

    transform:translateY(-2px);

}

.social i{

    font-size:1.2rem;

}
.club-logos{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;

    margin-bottom:15px;

}

.club-logos img{

    height:70px;
    width:auto;

    object-fit:contain;

}
