@charset "utf-8";

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* BODY */
body{
    font-family: Arial, sans-serif;
    background: url("../images/site.jpg") no-repeat center center fixed;
    background-size: cover;
    color: antiquewhite;
    text-align:center;
}

/* CONTAINER */
.container{
    max-width:1200px;
    margin:auto;
    padding:20px;
}

/* HEADER */
.header{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:20px;
}

.header img{
    width:clamp(150px, 40vw, 300px);
}

/* SEÇÕES */
.section{
    margin:clamp(30px, 6vw, 60px) 0;
}

/* TITULOS */
h4{
    font-size:clamp(16px, 2.5vw, 24px);
}

h5{
    color:#F0D103;
    font-size:clamp(20px, 4vw, 40px);
}

/* GRID */
.grid-2{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
    gap:20px;
}

.grid-2 img{
    width:100%;
    border-radius:10px;
    transition:0.3s;
}

.grid-2 img:hover{
    transform:scale(1.05);
}

/* SOCIAL */
.social{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(100px,1fr));
    gap:20px;
    margin-top:40px;
}

.social img{
    width:clamp(60px, 10vw, 120px);
    transition:0.3s;
}

.social img:hover{
    transform:scale(1.1);
}

/* LOGO FINAL */
.logo-final img{
    width:100%;
    max-width:1000px;
}

/* FOOTER */
.footer{
    margin-top:60px;
    color:#F0D103;
    font-size:clamp(12px, 2vw, 15px);
}

/* MOBILE */
@media (max-width:600px){

    .header{
        flex-direction:column;
    }

    .social{
        grid-template-columns:repeat(3, 1fr);
    }

}

/* TABLET */
@media (min-width:601px) and (max-width:1024px){

    .social{
        grid-template-columns:repeat(4, 1fr);
    }

}