*{
box-sizing:border-box;
font-family:Arial,Helvetica,sans-serif;
}

body{
margin:0;
background:#000;
color:#fff;
}

header{
text-align:center;
padding:50px 20px 30px;
}

header h1{
font-size:55px;
margin:0;
font-weight:900;
color:#ffd700;
text-shadow:0 0 25px #b8860b;
}

header p{
font-size:22px;
color:#ccc;
}


.grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
padding:40px;
}


.card{
height:380px;
background:#050505;
border:1px solid #c89b00;
border-radius:25px;
display:flex;
flex-direction:column;
align-items:center;
justify-content:space-between;
padding:35px 25px;
box-shadow:0 0 30px rgba(255,215,0,.15);
}


.card img{
width:150px;
height:150px;
object-fit:contain;
}


.card h2{
font-size:25px;
text-align:center;
min-height:60px;
}


.card p{
color:#bbb;
font-size:18px;
}


.card a{
width:90%;
padding:16px;
border-radius:40px;
text-align:center;
background:linear-gradient(90deg,#b8860b,#ffd700);
color:#000;
font-weight:bold;
text-decoration:none;
}


.card a:hover{
transform:scale(1.05);
}


footer{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
padding:40px;
font-size:17px;
color:#ddd;
}


@media(max-width:900px){

.grid{
grid-template-columns:1fr;
}

header h1{
font-size:38px;
}

}


/* OPTIMIZACION MOVILES IPHONE ANDROID */

html{
overflow-x:hidden;
}

body{
width:100%;
overflow-x:hidden;
}


@media(max-width:768px){

header{
padding:35px 15px 20px;
}

header h1{
font-size:34px;
line-height:1.2;
}

header p{
font-size:16px;
padding:0 10px;
}


.grid{
width:100%;
display:grid;
grid-template-columns:1fr;
gap:22px;
padding:20px 15px;
}


.card{
width:100%;
height:360px;
padding:25px 20px;
border-radius:22px;
}


.card img{
width:130px;
height:130px;
}


.card h2{
font-size:22px;
}


.card p{
font-size:16px;
}


.card a{
width:100%;
padding:17px;
font-size:16px;
}


footer{
display:flex;
flex-direction:column;
align-items:center;
gap:15px;
text-align:center;
font-size:15px;
padding:30px 15px;
}

}


@media(max-width:390px){

header h1{
font-size:30px;
}

.card{
height:350px;
}

.card img{
width:115px;
height:115px;
}

.card h2{
font-size:20px;
}

}


@media(min-width:769px) and (max-width:1100px){

.grid{
grid-template-columns:repeat(2,1fr);
padding:25px;
}

}


.menu{
min-height:50vh;
display:flex;
justify-content:center;
align-items:center;
gap:40px;
padding:30px;
}


.option{
width:320px;
height:250px;
background:#050505;
border:2px solid #d4af37;
border-radius:30px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-decoration:none;
color:white;
box-shadow:0 0 30px rgba(212,175,55,.3);
}


.option:hover{
transform:scale(1.05);
}


.option .icon{
font-size:70px;
}


.option h2{
color:#ffd700;
font-size:30px;
}


.option p{
color:#ccc;
}


@media(max-width:700px){

.menu{
flex-direction:column;
}

.option{
width:90%;
}

}

