*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#f4f6f9;
color:#000000;
line-height:1.7;
}

/* HEADER */

header{
background:#de0a0a;
color:white;
padding:15px 8%;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgb(250, 248, 248);
}

.logo-container{
display:flex;
align-items:center;
gap:15px;
}

.logo-container img{
width:70px;
height:70px;
object-fit:contain;
background:white;
border-radius:50%;
padding:5px;
}

.logo-container h1{
font-size:1.5rem;
}

.logo-container p{
font-size:.9rem;
}

nav ul{
list-style:none;
display:flex;
gap:25px;
}

nav a{
text-decoration:none;
color:white;
font-weight:500;
transition:.3s;
}

nav a:hover

/* HERO */

.hero{
height:90vh;
background:url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1600&q=80');
background-size:cover;
background-position:center;
position:relative;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.hero-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.55);
}

.hero-content{
position:relative;
color:rgb(0, 0, 0);
max-width:800px;
padding:20px;
}

.hero-content h2{
font-size:3rem;
margin-bottom:20px;
}

.hero-content p{
font-size:1.2rem;
margin-bottom:30px;
}

.btn{
background:#ffd700;
color:#000;
padding:15px 30px;
text-decoration:none;
border-radius:40px;
font-weight:bold;
transition:.3s;
}

.btn:hover{
transform:translateY(-3px);
background:white;
}

/* ESTADISTICAS */

.estadisticas{
background:#ff0000;
color:white;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
text-align:center;
}

.stat{
padding:40px;
}

.stat h3{
font-size:3rem;
color:#000000;
}

/* SECCIONES */

section{
padding:80px 10%;
}

section h2{
text-align:center;
margin-bottom:50px;
color:#1e0505;
font-size:2.3rem;
}

/* NOSOTROS */

.contenido{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.contenido img{
width:60%;
border-radius:15px;
box-shadow:0 10px 15px rgba(0,0,0,.15);

}
.card-icon{
    width:100px;
    height:100px;
    object-fit:contain;

    border-radius:15px;
}

/* CARDS */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:rgb(147, 147, 147);
padding:30px;
border-radius:20px;
box-shadow:0 8px 20px rgba(255, 5, 5, 0.543);
transition:.4s;
}

.card:hover{
transform:translateY(-10px);
}

.card h3{
color:#ffffff;
margin-bottom:15px;
}

.card{
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    text-align:center;
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card-icon{
    width:300px;
    height:300px;

    object-fit:contain;

    display:block;
    margin:0 auto 20px auto;

    transition:.3s;
}

.card:hover .card-icon{
    transform:scale(1.1);
}
.card-icon{
    width:300px;
    height:300px;
    object-fit:contain;

    border-radius:70px;
}

.card h3{
    color:#000000;
    margin-bottom:15px;

}
.card-icon{
    width:300px;
    height:300px;
    object-fit:contain;

    border-radius:70px;
}

/* GALERIA */

.galeria{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.galeria img{
width:100%;
height:250px;
object-fit:cover;
border-radius:15px;
transition:.4s;
}

.galeria img:hover{
transform:scale(1.05);
}

/* MAPA */

.mapa{
width:100%;
border-radius:20px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.mapa iframe{
width:100%;
height:450px;
border:none;
}

/* REDES */

.redes{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
}

.redes a{
text-decoration:none;
color:rgb(0, 0, 0);
padding:15px 35px;
border-radius:40px;
font-weight:bold;
transition:.3s;
}

.redes a:first-child

.redes a:last-child

.redes a:hover{
transform:translateY(-5px);
}

/* FOOTER */

footer{
background:#ff0707;
color:white;
text-align:center;
padding:40px;
}

footer h3{
margin-bottom:10px;
}

/* RESPONSIVE */

@media(max-width:1000px){

```
header{
    flex-direction:column;
    gap:20px;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
}

.contenido{
    grid-template-columns:1fr;
}

.hero-content h2{
    font-size:2.2rem;
}
```

}

@media(max-width:600px){

```
.hero{
    height:75vh;
}

.hero-content h2{
    font-size:1.8rem;
}

.hero-content p{
    font-size:1rem;
}

section{
    padding:60px 6%;
}

section h2{
    font-size:1.8rem;
}

.stat h3{
    font-size:2rem;
}
```

}
/* IMÁGENES DE EVENTOS */

.evento-icon{
    width:180px;
    height:120px;
    object-fit:cover;

    display:block;

    margin:0 auto 20px auto;

    border-radius:20px;

    transition:.3s;
}

.card:hover .evento-icon{
    transform:scale(1.1);
}