*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{
background:#111;
color:white;
}

header{
display:flex;
justify-content:space-between;
padding:20px 10%;
background:#000;
position:sticky;
top:0;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
}

.hero{
height:90vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:30px;
background:linear-gradient(135deg,#111,#222);
}

.hero h1{
font-size:55px;
margin-bottom:20px;
}

.hero p{
max-width:700px;
font-size:20px;
}

.botoes{
margin-top:30px;
}

.botoes a{
padding:15px 35px;
border-radius:30px;
text-decoration:none;
margin:10px;
font-weight:bold;
transition:.3s;
}

.whatsapp{
background:#25D366;
color:white;
}

.instagram{
background:#E1306C;
color:white;
}

.botoes a:hover{
transform:scale(1.08);
}

section{
padding:80px 10%;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
gap:20px;
margin-top:40px;
}

.card{
background:#1d1d1d;
padding:30px;
border-radius:15px;
transition:.4s;
}

.card:hover{
transform:translateY(-10px);
}

.videos{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
margin-top:40px;
}

iframe{
width:100%;
height:220px;
border:none;
border-radius:12px;
}

.lista{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:40px;
}

.lista div{
background:#1b1b1b;
padding:30px;
border-radius:15px;
}

form{
display:flex;
flex-direction:column;
gap:20px;
max-width:600px;
margin:auto;
}

input,textarea{
padding:15px;
border:none;
border-radius:10px;
}

button{
padding:15px;
background:#ff4f5a;
color:white;
border:none;
border-radius:10px;
cursor:pointer;
font-size:18px;
}

footer{
padding:30px;
text-align:center;
background:#000;
}

.social{
margin-top:15px;
}

.social a{
color:white;
margin:15px;
text-decoration:none;
}

.honeypot{
    position:absolute;
    left:-9999px;
    opacity:0;
}

/* ==========================
   RESPONSIVIDADE - CELULAR
========================== */

@media (max-width: 768px){

header{
    flex-direction:column;
    align-items:center;
    gap:15px;
    padding:20px;
}

nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

nav a{
    margin:0;
}

.hero{
    height:auto;
    min-height:80vh;
    padding:50px 20px;
}

.hero h1{
    font-size:34px;
    line-height:1.2;
}

.hero p{
    font-size:16px;
    max-width:100%;
}

.botoes{
    display:flex;
    flex-direction:column;
    width:100%;
    align-items:center;
}

.botoes a{
    width:100%;
    max-width:320px;
    text-align:center;
    margin:8px 0;
}

section{
    padding:60px 20px;
}

.cards{
    grid-template-columns:1fr;
}

.card{
    padding:25px;
}

.videos{
    grid-template-columns:1fr;
}

iframe{
    width:100%;
    height:220px;
}

.lista{
    grid-template-columns:1fr;
}

.lista div{
    padding:25px;
}

form{
    width:100%;
}

input,
textarea,
button{
    width:100%;
    font-size:16px;
}

textarea{
    min-height:150px;
}

footer{
    padding:25px 20px;
}

.social{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.social a{
    margin:0;
}

}

/* ==========================
CELULARES MUITO PEQUENOS
========================== */

@media (max-width:480px){

.logo{
    font-size:22px;
    text-align:center;
}

.hero h1{
    font-size:28px;
}

.hero p{
    font-size:15px;
}

h2{
    font-size:28px;
}

.card h3,
.lista h3{
    font-size:20px;
}

button{
    font-size:17px;
}

iframe{
    height:200px;
}

}
