/* ===========================================
   Página Principal
=========================================== */

.menu{

    display:grid;

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

    gap:20px;

    margin-top:35px;

}

.home-container{

    width:100%;

    max-width:1200px;

    margin:0 auto;

    background:#20242b;

    border:1px solid #2f3946;

    border-radius:16px;

    padding:35px;

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

}

.menu-card{

    background:#171b21;

    border:1px solid #303844;

    border-radius:12px;

    padding:20px;

    text-decoration:none;

    color:white;

    transition:.25s;

}

.menu-card:hover{

    transform:translateY(-5px);

    border-color:#38bdf8;

    box-shadow:0 0 15px rgba(56,189,248,.25);

}

.menu-card h3{

    margin-bottom:12px;

    color:#59c4ff;

}

.menu-card p{

    color:#b8c2cf;

    line-height:1.5;

}




/* ===========================================
   Comunidad
=========================================== */

.community{

    margin-top:40px;

    text-align:center;

}

.community h3{

    color:#59c4ff;

    margin-bottom:20px;

}

.community-links{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}




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

.hero{

    position:relative;

    height:500px;

    border-radius:16px;

    overflow:hidden;

    margin-bottom:50px;

}

.hero-image{

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

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

    padding:40px;

}

.hero-overlay h1{

    color:#ffffff;

    font-size:56px;

    font-weight:700;

    text-shadow:0 3px 15px rgba(0,0,0,.9);

}

.hero-overlay p{

    color:#ffffff;

    font-size:22px;

    line-height:1.7;

    margin:20px 0 35px;

    text-shadow:0 2px 10px rgba(0,0,0,.9);

	}

.hero .intro strong{

    color:#59c4ff;

}



.cards{

    display:grid;

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

    gap:25px;

    margin-top:30px;

}

.hero .button{

    width:auto;
    max-width:none;
    margin:0;

}
