*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

html, body{
overflow-x:hidden;
width:100%;
}

body{
background:#f4f4f4;
color:#333;
}

/* ================= HEADER ================= */

header{
position:absolute;
top:0;
left:0;
width:100%;
min-height:120px;

display:flex;
align-items:center;
justify-content:space-between;

padding:0 60px;
z-index:10;
}

header img{
height:110px;
width:auto;
object-fit:contain;
}

nav{
display:flex;
align-items:center;
gap:35px;
}

nav a{
color:white;
text-decoration:none;
font-weight:600;
font-size:18px;
letter-spacing:0.5px;
text-shadow:2px 2px 6px rgba(0,0,0,0.9);
transition:0.3s;
}

nav a:hover{
color:#e6463a;
}

/* ================= HERO ================= */

.hero{
background:
linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
url("dedete.jpg");
background-size:cover;
background-position:center 40%;
background-repeat:no-repeat;

min-height:80vh;
padding:120px 20px 60px;

display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero-text h2{
margin-bottom:20px;
}

.hero-title-main{
display:block;
font-size:62px;
font-weight:900;
letter-spacing:2px;
color:#fff;

text-shadow:
0px 4px 10px rgba(0,0,0,0.9),
0px 8px 25px rgba(0,0,0,0.8);
}

.hero-title-sub{
display:block;
font-size:32px;
font-weight:600;
letter-spacing:6px;
margin-top:5px;
color:#e6463a;

text-shadow:0px 3px 10px rgba(0,0,0,0.9);
}

.hero-sub{
font-size:21px;
max-width:540px;
margin:25px auto 40px;
line-height:1.6;
color:#f5f5f5;
text-shadow:0px 2px 8px rgba(0,0,0,0.9);
}

/* ================= BOTÃO WHATS ================= */

.whats-container{
position:relative;
display:inline-block;
}

.whatsapp-icon{
width:20px;
height:20px;
margin-right:8px;
}

.btn{
background:linear-gradient(135deg,#25D366,#1ebe5d);
color:white;
padding:15px 35px;
border-radius:40px;
font-size:18px;
font-weight:600;
display:flex;
align-items:center;
gap:8px;
transition:0.3s;
box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.btn:hover{
transform:translateY(-4px) scale(1.05);
box-shadow:0 15px 35px rgba(0,0,0,0.4);
}

.whats-opcoes{
position:absolute;
top:65px;
left:50%;
transform:translateX(-50%);
background:white;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.25);
display:none;
flex-direction:column;
overflow:hidden;
min-width:200px;
}

.whats-opcoes a{
padding:12px 20px;
text-decoration:none;
color:#333;
border-bottom:1px solid #eee;
}

.whats-opcoes a:hover{
background:#f3f3f3;
}

/* ================= SERVIÇOS ================= */

.services{
padding:60px 20px;
background:white;
text-align:center;
}

.services h2{
font-size:40px;
margin-bottom:20px;
}

.service-grid{
margin-top:40px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
}

.card{
background:white;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
padding:20px;
transition:0.3s;
text-align:center;
overflow:hidden;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.card img{
width:100%;
height:200px;
object-fit:contain;
margin-bottom:15px;
transition:0.4s;
}

.card:hover img{
transform:scale(1.08);
}

.card h3{
font-size:22px;
margin-bottom:10px;
}

.card p{
font-size:15px;
color:#555;
line-height:1.5;
}

/* ================= ABOUT ================= */

.about{
padding:80px 20px;
background:#fff;
}

.about-container{
max-width:1100px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:50px;
flex-wrap:wrap;
}

.about-text{
flex:1;
min-width:300px;
}

.about-text h2{
font-size:38px;
margin-bottom:20px;
}

.about-text p{
font-size:17px;
line-height:1.7;
color:#555;
margin-bottom:15px;
}

.about-img{
flex:1;
min-width:300px;
}

.about-img img{
width:100%;
border-radius:12px;
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* ================= TEAM ================= */

.team{
padding:100px 20px;
text-align:center;
background:#f9f9f9;
}

.img-gui{ 
    object-position:  center 20%;
}

.img-fabio{
    object-position: center 30%;
}

.img-jay{
    object-position: center 25%;
}


.team h2{
font-size:40px;
margin-bottom:20px;
color:#222;
}

.team-sub{
max-width:700px;
margin:0 auto 60px auto;
font-size:18px;
color:#555;
line-height:1.6;
}

.team-container{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
max-width:900px;
margin:auto;
}

.team-card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
padding-bottom:20px;
width:260px;
}

.team-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 35px rgba(0,0,0,0.15);
}

.team-card img{
width:100%;
height:220px;
object-fit:cover;
}

.team-card h3{
margin-top:15px;
font-size:22px;
}

.team-card span{
display:block;
font-size:13px;
color:#777;
letter-spacing:1px;
text-transform:uppercase;
margin:6px 0 12px;
}

.team-card p{
font-size:14px;
color:#555;
padding:0 20px;
}

.crf{
display:block;
margin-top:10px;
font-size:13px;
}

/* ================= FOOTER ================= */

.footer{
background:#111;
color:white;
padding:40px 20px;
}

.footer-container{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:80px;
max-width:1100px;
margin:auto;
text-align:center;
}

.footer h3{
color:#25D366;
margin-bottom:15px;
}

.footer p{
color:#ccc;
}

.footer-bottom{
margin-top:40px;
padding-top:20px;
border-top:1px solid #333;
text-align:center;
font-size:14px;
color:#aaa;
}

/* ================= WHATSAPP FIXO ================= */

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
font-size:28px;
padding:15px;
border-radius:50%;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

/* ================= RESPONSIVO ================= */

@media (max-width:768px){

header{
position:relative;
padding:10px 20px;
min-height:80px;
}

header img{
height:70px;
transform: scale(1.2);
}

nav{
gap:13px;
flex-wrap:wrap;
justify-content:flex-end;
max-width:60%;
}

nav a{
font-size:16px;
}

.hero-title-main{
font-size:38px;
}

.hero-title-sub{
font-size:20px;
letter-spacing:3px;
}

.hero-sub{
font-size:15px;
}

.about-container{
flex-direction:column;
text-align:center;
}

.team-card{
width:100%;
max-width:320px;
}

.footer-container{
flex-direction:column;
gap:30px;
}



}