body{

font-family: Arial;
margin:0;
background: linear-gradient(135deg,#2feaf4,#0162ff,#2c5364);
color:white;

}



header{

text-align:center;
padding:40px;

}

.video-container{
    text-align:center;
}

.video{
    width:80%;
    max-width:900px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.6);
    transition:0.4s;
}

.video:hover{
    transform:scale(1.03);
}
.container{

width:90%;
max-width:1200px;
margin:auto;

}

.grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;

}

.card{

background:rgba(255,255,255,0.05);
padding:25px;
border-radius:20px;
text-decoration:none;
color:white;
transition:0.4s;
border:1px solid rgba(255,255,255,0.1);

}

.card:hover{

transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.4);
background:rgba(255,255,255,0.08);

}

.card h2{

color:#00eaff;

}

.card p{

opacity:0.8;

}

.item-box{

display:flex;
gap:20px;
align-items:center;

background:rgba(255,255,255,0.05);

padding:20px;

border-radius:20px;

margin-bottom:20px;

border:1px solid rgba(255,255,255,0.1);

transition:0.3s;

}

.item-box:hover{

transform:scale(1.02);
box-shadow:0 10px 30px rgba(0,0,0,0.4);

}

.img-box img{

width:120px;
height:120px;

object-fit:cover;

border-radius:15px;

}

.info-box h3{

margin:0;
color:#00eaff;

}

.info-box p{

opacity:0.8;

}

.galeria{

text-align:center;
padding:40px;

}

.galeria-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:20px;
justify-items:center; /* centraliza dentro da coluna */

}

.galeria-grid img{

width:70%;
border-radius:20px;
transition:0.4s;
display:block;
margin:auto; /* centraliza */

}

.galeria-grid img:hover{

transform:scale(1.05);

}



.footer{     
    text-align:center;
    padding:40px;
}