
/*
Theme Name: APP EVENTOS Frontend Corrigido
Version: 1.5
*/

*{box-sizing:border-box}

html,body{
margin:0;
padding:0;
height:100%;
overflow:hidden;
}

body{
font-family:Arial,sans-serif;
background:url('assets/images/imagem01.png') center/cover fixed no-repeat;
}

.ae-screen{
height:100vh;
display:flex;
flex-direction:column;
justify-content:space-between;
padding:20px 35px;
}

.title{
text-align:center;
font-size:42px;
font-weight:900;
letter-spacing:2px;
margin:0;
}

.subtitle{
text-align:center;
font-size:18px;
}

.hero{
flex:1;
display:flex;
align-items:center;
justify-content:center;
min-height:0;
}

.hero img{
width:auto;
height:48vh;
max-width:80vw;
object-fit:contain;
}

.section-title{
text-align:center;
font-size:24px;
font-weight:bold;
padding:10px;
background:rgba(239,225,208,.9);
}

.categories{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:15px;
background:rgba(239,225,208,.9);
padding:15px;
}

.card{
background:#111;
color:white;
border-radius:24px;
padding:18px 10px;
text-align:center;
transition:.3s;
}

.card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(200,164,93,.5);
}

@media(max-width:900px){
html,body{overflow:auto}
.ae-screen{height:auto}
.categories{grid-template-columns:repeat(2,1fr)}
}
