*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins', sans-serif;
background:#0b0b0b;
color:#fff;
line-height:1.7;
overflow-x:hidden;
}

/* RESET DE LINKS */

a{
color:inherit;
text-decoration:none;
transition:0.2s;
}

a:visited{
color:inherit;
}

a:hover{
text-decoration:none;
color:inherit;
}

a:active{
color:inherit;
}

/* CONTAINER */

section{
max-width:1200px;
margin:auto;
padding:80px 20px;
}

/* TEXTOS */

h1{
font-size:42px;
line-height:1.2;
margin-bottom:20px;
}

h2{
font-size:30px;
margin-bottom:20px;
}

h3{
font-size:20px;
margin-bottom:10px;
}

p{
color:#cfcfcf;
margin-bottom:25px;
}

/* HERO */

.hero{
display:flex;
flex-direction:column;
gap:40px;
align-items:center;
}

.hero-content{
max-width:600px;
}

/* HERO IMG (4:5) */

.hero-img{
width:100%;
max-width:420px;
aspect-ratio:4/5;
object-fit:cover;
border-radius:12px;
margin:auto;
}

/* BADGE */

.badge{
display:inline-block;
background:#d4af37;
color:#000;
padding:6px 14px;
border-radius:20px;
font-size:12px;
font-weight:600;
margin-bottom:15px;
}

/* BOTÕES */

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
margin-top:30px;
}

.btn{
display:inline-block;
padding:15px 28px;
border-radius:8px;
font-weight:600;
text-align:center;
transition:.3s;
}

.primary{
background:#d50000;
color:#fff;
}

.primary:hover{
transform:translateY(-2px);
}

.secondary{
border:1px solid #555;
color:#fff;
}

.gold{
background:#d4af37;
color:#000;
}

.big{
font-size:18px;
padding:18px 40px;
}

.center{
display:block;
margin:40px auto 0;
width:fit-content;
}

/* GRID */

.grid{
display:grid;
grid-template-columns:1fr;
gap:20px;
margin-top:40px;
}

.card{
background:#141414;
padding:25px;
border-radius:12px;
}

/* GALERIA */

.gallery{
display:grid;
grid-template-columns:1fr;
gap:20px;
margin-top:30px;
}

.gallery img{
width:100%;
aspect-ratio:16/9;
object-fit:cover;
border-radius:10px;
}

/* TECNOLOGIA */

.tech-content{
display:flex;
flex-direction:column;
gap:30px;
margin-top:30px;
}

/* VIDEO OU IMG */

.tech-video,
.tech-content img{
width:100%;
max-width:420px;
aspect-ratio:4/5;
object-fit:cover;
border-radius:12px;
margin:auto;
}

/* OFFER */

.offer{
text-align:center;
background:#111;
border-radius:12px;
padding:40px 20px;
}

/* CTA FINAL */

.cta{
text-align:center;
margin-top:80px;
}

.cta .hero-buttons{
justify-content:center;
}

/* FOOTER */

footer{
text-align:center;
padding:60px 20px;
background:#050505;
margin-top:60px;
}

footer p{
font-size:14px;
}

/* FOOTER GRID */

.footer-grid{
display:grid;
grid-template-columns:1fr;
gap:16px;
margin-top:30px;
width:100%;
max-width:1100px;
margin-left:auto;
margin-right:auto;
}

.footer-box{
background:#111;
padding:16px;
border-radius:10px;
text-align:left;
}

.footer-box strong{
display:block;
color:#d4af37;
margin-bottom:6px;
font-size:14px;
}

.footer-box span,
.footer-box a{
font-size:14px;
color:#cfcfcf;
line-height:1.4;
display:block;
margin-top:4px;
}

.footer-box a:hover{
color:#d4af37;
}

/* WHATSAPP */

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:26px;
}

/* RESPONSIVO */

/* MOBILE */

@media(max-width:768px){

h1{
font-size:32px;
}

h2{
font-size:24px;
}

.hero-buttons{
flex-direction:column;
}

.btn{
width:100%;
}

section{
padding:60px 15px;
}

}

/* TABLET */

@media(min-width:600px){

.footer-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* DESKTOP */

@media(min-width:768px){

.hero{
flex-direction:row;
justify-content:space-between;
align-items:center;
}

.hero-content{
width:55%;
}

.hero-img{
width:40%;
max-width:380px;
}

.grid{
grid-template-columns:repeat(2,1fr);
}

.gallery{
grid-template-columns:repeat(2,1fr);
}

.tech-content{
flex-direction:row;
align-items:center;
}

.tech-video,
.tech-content img{
width:35%;
max-width:320px;
}

.tech-content div{
width:60%;
}

}

/* DESKTOP GRANDE */

@media(min-width:1024px){

.footer-grid{
grid-template-columns:repeat(4,1fr);
}

}