@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root{

    --primary:#CCFF34;
    --primary-hover:#d8ff69;
    --black:#000;
    --dark:#101010;
    --card:#171717;
    --border:#2d2d2d;
    --text:#ffffff;
    --gray:#cfcfcf;

}

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

html{

    scroll-behavior:smooth;

}

body{

    background:#000;
    color:white;
    font-family:'Montserrat',sans-serif;
    overflow-x:hidden;

}

/*============================*/

.background-glow{

    position:fixed;

    inset:0;

    z-index:-2;

    background:

    radial-gradient(circle at top,#CCFF3425 0%,transparent 30%),

    radial-gradient(circle at bottom,#CCFF3410 0%,transparent 35%),

    linear-gradient(#000,#050505);

}

/*============================*/

.hero{

    min-height:100vh;

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:80px 20px;

    background:url("hero.jpg") center center/cover;

}

.overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(to bottom,

    rgba(0,0,0,.65),

    rgba(0,0,0,.85));

}

.hero-content{

    position:relative;

    max-width:850px;

    z-index:2;

}

.tag{

    display:inline-block;

    color:black;

    background:var(--primary);

    padding:12px 30px;

    border-radius:40px;

    font-weight:800;

    margin-bottom:25px;

    letter-spacing:2px;

}

.hero h1{

    font-size:70px;

    font-weight:900;

    line-height:1.1;

    margin-bottom:20px;

}

.hero h1 span{

    color:var(--primary);

}

.descripcion{

    max-width:700px;

    margin:auto;

    color:#ddd;

    font-size:22px;

    line-height:1.8;

}

.hero-buttons{

    margin-top:50px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.scroll{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    font-size:35px;

    color:var(--primary);

    animation:sube 2s infinite;

}

@keyframes sube{

0%,100%{

transform:translate(-50%,0);

}

50%{

transform:translate(-50%,12px);

}

}

/*============================*/

.btn-primary,
.btn-secondary{

    padding:18px 38px;

    border-radius:60px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btn-primary{

    background:var(--primary);

    color:#000;

}

.btn-primary:hover{

    background:var(--primary-hover);

    transform:translateY(-5px);

}

.btn-secondary{

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-secondary:hover{

    background:var(--primary);

    color:black;

}

/*============================*/

.informacion{

    padding:100px 8%;

}

.titulo{

    text-align:center;

    margin-bottom:60px;

}

.titulo h2{

    font-size:50px;

    color:var(--primary);

}

.titulo p{

    color:#bdbdbd;

    margin-top:15px;

}

/*============================*/

.cards{

    display:grid;

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

    gap:25px;

}

.card{

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

    border:1px solid rgba(204,255,52,.15);

    border-radius:25px;

    padding:45px 30px;

    transition:.4s;

    text-align:center;

}

.card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 0 35px rgba(204,255,52,.2);

}

.card i{

    color:var(--primary);

    font-size:50px;

    margin-bottom:20px;

}

.card h3{

    margin-bottom:15px;

    font-size:24px;

}

.card p{

    color:#d8d8d8;

    line-height:1.8;

}

/*============================*/

.evento{

    display:grid;

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

    gap:70px;

    align-items:center;

    padding:120px 8%;

}

.evento h2{

    font-size:52px;

    color:var(--primary);

    margin-bottom:25px;

}

.evento p{

    line-height:2;

    color:#d8d8d8;

    margin-bottom:30px;

}

.evento ul{

    list-style:none;

}

.evento li{

    margin:18px 0;

    font-size:20px;

}

.evento i{

    color:var(--primary);

}

.evento img{

    width:100%;

    border-radius:30px;

    border:3px solid var(--primary);

    box-shadow:0 20px 70px rgba(204,255,52,.18);

}

/*============================*/

.ubicacion{

    padding:100px 8%;

    text-align:center;

}

.ubicacion h2{

    font-size:50px;

    color:var(--primary);

}

.ubicacion p{

    color:#ccc;

    margin:20px 0 40px;

}

.mapa{

    overflow:hidden;

    border-radius:25px;

    border:3px solid var(--primary);

    box-shadow:0 25px 70px rgba(204,255,52,.2);

}

.mapa iframe{

    width:100%;

    height:520px;

    display:block;

}

.acciones{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:40px;

}

/*============================*/

footer{

    padding:90px 20px;

    text-align:center;

    background:#070707;

    border-top:1px solid rgba(204,255,52,.2);

}

footer h2{

    color:var(--primary);

    font-size:48px;

    margin-bottom:20px;

}

footer p{

    color:#cfcfcf;

    margin-bottom:10px;

}

.copyright{

    margin-top:35px;

    color:#777;

    font-size:14px;

}

/*============================*/

@media(max-width:900px){

.hero h1{

font-size:52px;

}

.descripcion{

font-size:18px;

}

.titulo h2,
.evento h2,
.ubicacion h2,
footer h2{

font-size:38px;

}

}

@media(max-width:600px){

.hero{

padding:100px 25px;

}

.hero h1{

font-size:40px;

}

.tag{

font-size:13px;

}

.hero-buttons{

flex-direction:column;

}

.btn-primary,
.btn-secondary{

width:100%;

text-align:center;

}

.mapa iframe{

height:350px;

}

}