body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#000;
color:white;
}

/* HEADER */

header{
background:black;
color:white;
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 40px;
}

.logo img{
height:60px;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
font-weight:bold;
}

nav a:hover{
color:#d4af37;
}


/* HERO */

.hero{
background-image:url("assets/hero-estrada.jpg");
background-size:cover;
background-position:center;
height:550px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
}

/* camada escura para destacar texto */

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

/* texto */

.hero-text{
position:relative;
z-index:2;
max-width:700px;
padding:40px;
}

.botao{
display:inline-block;
margin-top:20px;
background:#d4af37;
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:5px;
font-weight:bold;
}

.botao:hover{
background:#b9972e;
}


/* SERVICOS */

.servicos{
padding:80px 20px;
text-align:center;
background:#000;
}

.servicos-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.card{
background:#111;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.6);
width:250px;
}


/* EVENTOS */

.eventos{
padding:100px 20px;
background:#000;
color:white;
text-align:center;
}

.eventos-sub{
color:#bbb;
margin-bottom:40px;
}

/* CONTAINER */

.eventos-wrapper{
position:relative;
display:flex;
align-items:center;
max-width:1200px;
margin:auto;
}

/* SLIDER */

.eventos-slider{
display:flex;
gap:25px;
overflow-x:auto;
scroll-behavior:smooth;
padding:10px;
}

/* esconder barra de rolagem */

.eventos-slider::-webkit-scrollbar{
display:none;
}

/* CARDS */

.evento-card{
min-width:260px;
background:#111;
border-radius:10px;
overflow:hidden;
text-decoration:none;
color:white;
transition:transform 0.3s, box-shadow 0.3s;
}

.evento-card:hover{
transform:scale(1.05);
box-shadow:0 10px 25px rgba(0,0,0,0.8);
}

.evento-card img{
width:100%;
height:180px;
object-fit:cover;
}

.evento-card h3{
padding:15px;
font-size:18px;
color:#d4af37;
}

/* SETAS */

.seta{
position:absolute;
top:50%;
transform:translateY(-50%);
background:#d4af37;
border:none;
color:black;
font-size:26px;
width:48px;
height:48px;
border-radius:50%;
cursor:pointer;
z-index:10;
transition:0.3s;
}

.seta:hover{
background:#b9972e;
}

.seta.esquerda{
left:-25px;
}

.seta.direita{
right:-25px;
}


/* FROTA */

.frota{
padding:60px;
text-align:center;
}

.frota-container{
display:flex;
justify-content:center;
}

.frota-item img{
width:300px;
border-radius:10px;
}


/* MAPA */

.nacional{
padding:80px 20px;
text-align:center;
background:#000;
}

.mapa{
margin-top:30px;
max-width:900px;
margin-left:auto;
margin-right:auto;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.cidades-atendidas{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:20px;
margin-top:30px;
}

.cidade{
background:#f4f4f4;
padding:12px 20px;
border-radius:30px;
font-weight:bold;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}


/* AVALIAÇÕES */

.avaliacoes{
padding:80px 20px;
background:#000;
text-align:center;
}

.avaliacoes-sub{
color:#bbb;
margin-bottom:40px;
}

.avaliacoes-resumo{
display:flex;
justify-content:center;
gap:40px;
margin-bottom:40px;
flex-wrap:wrap;
}

.nota-google{
background:#111;
padding:20px 35px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.6);
}

.nota{
font-size:28px;
color:#d4af37;
font-weight:bold;
}

.botao-avaliar{
background:#d4af37;
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:5px;
font-weight:bold;
}

.botao-avaliar:hover{
background:#b9972e;
}

.google-widget{
margin-top:40px;
}


/* FOOTER */

footer{
background:black;
color:white;
text-align:center;
padding:20px;
}


/* WHATSAPP */

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25d366;
color:white;
font-size:30px;
padding:15px;
border-radius:50%;
text-decoration:none;
}

/* SEÇÃO EMPRESA */

.empresa-numeros{
padding:100px 20px;
background:#000;
color:white;
}

.empresa-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:80px;
flex-wrap:wrap;
}

.empresa-imagem img{
max-width:500px;
width:100%;
border-radius:10px;
}

.empresa-info{
max-width:520px;
}

.empresa-info h2{
font-size:38px;
margin-bottom:20px;
}

.empresa-descricao{
color:#bbb;
margin-bottom:40px;
line-height:1.6;
}

.numeros {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap; /* ESSENCIAL pro mobile */
}

.numero-item {
  text-align: center;
  flex: 1 1 150px; /* deixa responsivo */
  max-width: 200px;
}

.numero-item h3 {
  font-size: 48px;
  color: #d4af37;
  margin-bottom: 10px;
}

.numero-item p {
  font-weight: bold;
  color: #ddd;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .numeros {
    gap: 20px;
  }

  .numero-item {
    flex: 1 1 45%; /* 2 por linha */
  }

  .numero-item h3 {
    font-size: 28px;
  }
}
/* HERO EVENTOS */

.hero-eventos{
background:#000;
color:white;
text-align:center;
padding:100px 20px;
}

.hero-eventos h1{
font-size:40px;
margin-bottom:20px;
}


/* GRID EVENTOS */

.lista-eventos{
padding:80px 20px;
text-align:center;
background:#000;
}

.eventos-grid{
display:flex;
flex-wrap:wrap;
gap:30px;
justify-content:center;
margin-top:40px;
}

.evento-box{
width:280px;
background:#111;
border-radius:10px;
overflow:hidden;
text-decoration:none;
color:white;
transition:0.3s;
}

.evento-box:hover{
transform:scale(1.05);
}

.evento-box img{
width:100%;
height:180px;
object-fit:cover;
}

.evento-box h3{
padding:15px;
color:#d4af37;
}


/* CTA */

.cta-eventos{
padding:100px 20px;
background:#111;
text-align:center;
}

.cta-eventos h2{
margin-bottom:20px;
}

/* HERO EVENTOS */

.hero-eventos{
background:#000;
padding:100px 20px;
text-align:center;
color:white;
}


/* LISTA EVENTOS */

.eventos-lista{
padding:80px 20px;
max-width:1200px;
margin:auto;
}


.evento-item{
display:flex;
gap:40px;
margin-bottom:60px;
align-items:center;
flex-wrap:wrap;
}


.evento-item img{
width:400px;
border-radius:10px;
}


.evento-texto{
max-width:600px;
}


.evento-texto h2{
color:#d4af37;
margin-bottom:10px;
}


.evento-texto p{
color:#bbb;
margin-bottom:20px;
line-height:1.6;
}

html{
scroll-behavior:smooth;
}

/* HERO SERVICOS */

.hero-servicos{
padding:100px 20px;
background:#000;
text-align:center;
color:white;
}


/* LISTA SERVICOS */

.servicos-lista{
max-width:1200px;
margin:auto;
padding:80px 20px;
}


.servico-item{
display:flex;
align-items:center;
gap:40px;
margin-bottom:80px;
flex-wrap:wrap;
}


.servico-item img{
width:400px;
border-radius:10px;
}


.servico-texto{
max-width:600px;
}


.servico-texto h2{
color:#d4af37;
margin-bottom:10px;
}


.servico-texto p{
color:#bbb;
margin-bottom:20px;
line-height:1.6;
}


.servico-texto ul{
margin-bottom:20px;
color:#ddd;
}

.card{
text-decoration:none;
color:white;
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
}

/* CARROSSEL SERVICOS */

.carousel{
width:500px;
height:400px;
position:relative;
overflow:hidden;
border-radius:12px;
}

.carousel img{
width:100%;
height:100%;
object-fit:cover;
object-position:center;
position:absolute;
opacity:0;
transition:opacity 0.8s ease-in-out;
}

.carousel img.active{
opacity:1;
}

/* HERO FROTA */

.hero-frota{
padding:100px 20px;
background:#000;
text-align:center;
color:white;
}


/* LISTA FROTA */

.frota-lista{
max-width:1200px;
margin:auto;
padding:80px 20px;
}


.frota-item{
display:flex;
gap:40px;
margin-bottom:80px;
align-items:center;
flex-wrap:wrap;
}


.frota-item img{
width:450px;
height:280px;
object-fit:cover;
border-radius:12px;
}


.frota-texto{
max-width:600px;
}


.frota-texto h2{
color:#d4af37;
margin-bottom:10px;
}


.frota-texto p{
color:#bbb;
margin-bottom:20px;
line-height:1.6;
}


.frota-texto ul{
color:#ddd;
margin-bottom:20px;
}

.frota-item{
border-bottom:1px solid #222;
padding-bottom:40px;
}

/* FROTA HOME */

.frota{
padding:80px 20px;
text-align:center;
background:#000;
}

.frota-container{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
margin-top:40px;
}

.frota-card{
width:220px;
background:#111;
border-radius:12px;
overflow:hidden;
text-decoration:none;
color:white;
transition:0.3s;
}

.frota-card:hover{
transform:translateY(-8px);
}

.frota-card img{
width:100%;
height:150px;
object-fit:cover;
border-bottom:1px solid #222;
}

.frota-card h3{
padding:15px;
color:#d4af37;
font-size:16px;
}

.carrossel{
position:relative;
width:450px;
height:280px;
overflow:hidden;
border-radius:12px;
}

.carrossel img{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:opacity 1s ease-in-out;
}

.carrossel img.ativo{
opacity:1;
}

.whatsapp-fixo{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
box-shadow:0 4px 12px rgba(0,0,0,0.4);
z-index:999;
transition:0.3s;
}

.whatsapp-fixo svg{
width:32px;
height:32px;
}

.whatsapp-fixo:hover{
transform:scale(1.1);
}

/* SOBRE HOME */


.hero-sobre{
text-align:center;
padding:80px 20px;
background:#000;
color:#fff;
}

.sobre-container{
padding:60px 10%;
background:#111;
color:#fff;
}

.sobre-texto{
max-width:800px;
margin:auto;
text-align:center;
}

.mvv{
background:#000;
padding:60px 20px;
}

.mvv-container{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
}

.mvv-card{
background:#111;
padding:25px;
border-radius:10px;
width:300px;
color:#fff;
}

.mvv-card ul{
padding-left:18px;
}

.diferenciais{
padding:60px 20px;
text-align:center;
background:#111;
color:#fff;
}

.diferenciais-container{
display:flex;
flex-wrap:wrap;
gap:20px;
justify-content:center;
margin-top:30px;
}

.diferencial{
background:#000;
padding:20px;
border-radius:10px;
width:250px;
}

.cta-sobre{
text-align:center;
padding:60px 20px;
background:#000;
color:#fff;
}

/* HOME CONTATO */

.hero-contato{
text-align:center;
padding:80px 20px;
background:#000;
color:#fff;
}

.contato-container{
display:flex;
flex-wrap:wrap;
gap:40px;
padding:60px 10%;
background:#111;
color:#fff;
}

.contato-info{
flex:1;
min-width:280px;
}

.contato-form{
flex:1;
min-width:280px;
}

.contato-form form{
display:flex;
flex-direction:column;
gap:15px;
}

.contato-form input,
.contato-form textarea{
padding:12px;
border:none;
border-radius:8px;
background:#000;
color:#fff;
}

.contato-form textarea{
min-height:120px;
resize:none;
}

.contato-form button{
background:#d4af37;
border:none;
padding:12px;
border-radius:8px;
font-weight:bold;
cursor:pointer;
}

.contato-form button:hover{
opacity:0.9;
}

.redes-sociais{
margin-top:25px;
display:flex;
flex-direction:column;
gap:12px;
}

.btn-social{
display:flex;
align-items:center;
gap:10px;
padding:12px 16px;
border-radius:10px;
text-decoration:none;
color:#fff;
font-weight:bold;
transition:0.3s;
width:220px;
}

.btn-social svg{
width:22px;
height:22px;
}

.instagram{
background:linear-gradient(45deg,#833AB4,#E1306C,#F77737);
}

.facebook{
background:#1877F2;
}

.btn-social:hover{
transform:translateY(-3px);
box-shadow:0 6px 15px rgba(0,0,0,0.4);
}

.mapa{
padding:60px 10%;
background:#000;
color:#fff;
text-align:center;
}

.mapa iframe{
margin-top:20px;
border-radius:12px;
}

.tradutor select{
background:#111;
color:white;
border:1px solid #d4af37;
padding:8px 12px;
border-radius:8px;
cursor:pointer;
}
header{
display:flex;
align-items:center;
justify-content:space-between;
}
#google_translate_element{
margin-left:auto;
}
body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#000;
color:white;
}

/* HEADER */

header{
background:black;
color:white;
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 40px;
}

.logo img{
height:60px;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
font-weight:bold;
}

nav a:hover{
color:#d4af37;
}


/* HERO */

.hero{
background-image:url("assets/hero-estrada.jpg");
background-size:cover;
background-position:center;
height:550px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
}

/* camada escura para destacar texto */

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

/* texto */

.hero-text{
position:relative;
z-index:2;
max-width:700px;
padding:40px;
}

.botao{
display:inline-block;
margin-top:20px;
background:#d4af37;
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:5px;
font-weight:bold;
}

.botao:hover{
background:#b9972e;
}


/* SERVICOS */

.servicos{
padding:80px 20px;
text-align:center;
background:#000;
}

.servicos-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.card{
background:#111;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.6);
width:250px;
}


/* EVENTOS */

.eventos{
padding:100px 20px;
background:#000;
color:white;
text-align:center;
}

.eventos-sub{
color:#bbb;
margin-bottom:40px;
}

/* CONTAINER */

.eventos-wrapper{
position:relative;
display:flex;
align-items:center;
max-width:1200px;
margin:auto;
}

/* SLIDER */

.eventos-slider{
display:flex;
gap:25px;
overflow-x:auto;
scroll-behavior:smooth;
padding:10px;
}

/* esconder barra de rolagem */

.eventos-slider::-webkit-scrollbar{
display:none;
}

/* CARDS */

.evento-card{
min-width:260px;
background:#111;
border-radius:10px;
overflow:hidden;
text-decoration:none;
color:white;
transition:transform 0.3s, box-shadow 0.3s;
}

.evento-card:hover{
transform:scale(1.05);
box-shadow:0 10px 25px rgba(0,0,0,0.8);
}

.evento-card img{
width:100%;
height:180px;
object-fit:cover;
}

.evento-card h3{
padding:15px;
font-size:18px;
color:#d4af37;
}

/* SETAS */

.seta{
position:absolute;
top:50%;
transform:translateY(-50%);
background:#d4af37;
border:none;
color:black;
font-size:26px;
width:48px;
height:48px;
border-radius:50%;
cursor:pointer;
z-index:10;
transition:0.3s;
}

.seta:hover{
background:#b9972e;
}

.seta.esquerda{
left:-25px;
}

.seta.direita{
right:-25px;
}


/* FROTA */

.frota{
padding:60px;
text-align:center;
}

.frota-container{
display:flex;
justify-content:center;
}

.frota-item img{
width:300px;
border-radius:10px;
}


/* MAPA */

.nacional{
padding:80px 20px;
text-align:center;
background:#000;
}

.mapa{
margin-top:30px;
max-width:900px;
margin-left:auto;
margin-right:auto;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.cidades-atendidas{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:20px;
margin-top:30px;
}

.cidade{
background:#f4f4f4;
padding:12px 20px;
border-radius:30px;
font-weight:bold;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}


/* AVALIAÇÕES */

.avaliacoes{
padding:80px 20px;
background:#000;
text-align:center;
}

.avaliacoes-sub{
color:#bbb;
margin-bottom:40px;
}

.avaliacoes-resumo{
display:flex;
justify-content:center;
gap:40px;
margin-bottom:40px;
flex-wrap:wrap;
}

.nota-google{
background:#111;
padding:20px 35px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.6);
}

.nota{
font-size:28px;
color:#d4af37;
font-weight:bold;
}

.botao-avaliar{
background:#d4af37;
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:5px;
font-weight:bold;
}

.botao-avaliar:hover{
background:#b9972e;
}

.google-widget{
margin-top:40px;
}


/* FOOTER */

footer{
background:black;
color:white;
text-align:center;
padding:20px;
}


/* WHATSAPP */

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25d366;
color:white;
font-size:30px;
padding:15px;
border-radius:50%;
text-decoration:none;
}

/* SEÇÃO EMPRESA */

.empresa-numeros{
padding:100px 20px;
background:#000;
color:white;
}

.empresa-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:80px;
flex-wrap:wrap;
}

.empresa-imagem img{
max-width:500px;
width:100%;
border-radius:10px;
}

.empresa-info{
max-width:520px;
}

.empresa-info h2{
font-size:38px;
margin-bottom:20px;
}

.empresa-descricao{
color:#bbb;
margin-bottom:40px;
line-height:1.6;
}

.numeros{
display:flex;
gap:80px;
margin-top:30px;
}

.numero-item{
text-align:center;
}

.numero-item h3{
font-size:48px;
color:#d4af37;
margin-bottom:10px;
}

.numero-item p{
font-weight:bold;
color:#ddd;
}

/* HERO EVENTOS */

.hero-eventos{
background:#000;
color:white;
text-align:center;
padding:100px 20px;
}

.hero-eventos h1{
font-size:40px;
margin-bottom:20px;
}


/* GRID EVENTOS */

.lista-eventos{
padding:80px 20px;
text-align:center;
background:#000;
}

.eventos-grid{
display:flex;
flex-wrap:wrap;
gap:30px;
justify-content:center;
margin-top:40px;
}

.evento-box{
width:280px;
background:#111;
border-radius:10px;
overflow:hidden;
text-decoration:none;
color:white;
transition:0.3s;
}

.evento-box:hover{
transform:scale(1.05);
}

.evento-box img{
width:100%;
height:180px;
object-fit:cover;
}

.evento-box h3{
padding:15px;
color:#d4af37;
}


/* CTA */

.cta-eventos{
padding:100px 20px;
background:#111;
text-align:center;
}

.cta-eventos h2{
margin-bottom:20px;
}

/* HERO EVENTOS */

.hero-eventos{
background:#000;
padding:100px 20px;
text-align:center;
color:white;
}


/* LISTA EVENTOS */

.eventos-lista{
padding:80px 20px;
max-width:1200px;
margin:auto;
}


.evento-item{
display:flex;
gap:40px;
margin-bottom:60px;
align-items:center;
flex-wrap:wrap;
}


.evento-item img{
width:400px;
border-radius:10px;
}


.evento-texto{
max-width:600px;
}


.evento-texto h2{
color:#d4af37;
margin-bottom:10px;
}


.evento-texto p{
color:#bbb;
margin-bottom:20px;
line-height:1.6;
}

html{
scroll-behavior:smooth;
}

/* HERO SERVICOS */

.hero-servicos{
padding:100px 20px;
background:#000;
text-align:center;
color:white;
}


/* LISTA SERVICOS */

.servicos-lista{
max-width:1200px;
margin:auto;
padding:80px 20px;
}


.servico-item{
display:flex;
align-items:center;
gap:40px;
margin-bottom:80px;
flex-wrap:wrap;
}


.servico-item img{
width:400px;
border-radius:10px;
}


.servico-texto{
max-width:600px;
}


.servico-texto h2{
color:#d4af37;
margin-bottom:10px;
}


.servico-texto p{
color:#bbb;
margin-bottom:20px;
line-height:1.6;
}


.servico-texto ul{
margin-bottom:20px;
color:#ddd;
}

.card{
text-decoration:none;
color:white;
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
}

/* CARROSSEL SERVICOS */

.carousel{
width:500px;
height:400px;
position:relative;
overflow:hidden;
border-radius:12px;
}

.carousel img{
width:100%;
height:100%;
object-fit:cover;
object-position:center;
position:absolute;
opacity:0;
transition:opacity 0.8s ease-in-out;
}

.carousel img.active{
opacity:1;
}

/* HERO FROTA */

.hero-frota{
padding:100px 20px;
background:#000;
text-align:center;
color:white;
}


/* LISTA FROTA */

.frota-lista{
max-width:1200px;
margin:auto;
padding:80px 20px;
}


.frota-item{
display:flex;
gap:40px;
margin-bottom:80px;
align-items:center;
flex-wrap:wrap;
}


.frota-item img{
width:450px;
height:280px;
object-fit:cover;
border-radius:12px;
}


.frota-texto{
max-width:600px;
}


.frota-texto h2{
color:#d4af37;
margin-bottom:10px;
}


.frota-texto p{
color:#bbb;
margin-bottom:20px;
line-height:1.6;
}


.frota-texto ul{
color:#ddd;
margin-bottom:20px;
}

.frota-item{
border-bottom:1px solid #222;
padding-bottom:40px;
}

/* FROTA HOME */

.frota{
padding:80px 20px;
text-align:center;
background:#000;
}

.frota-container{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
margin-top:40px;
}

.frota-card{
width:220px;
background:#111;
border-radius:12px;
overflow:hidden;
text-decoration:none;
color:white;
transition:0.3s;
}

.frota-card:hover{
transform:translateY(-8px);
}

.frota-card img{
width:100%;
height:150px;
object-fit:cover;
border-bottom:1px solid #222;
}

.frota-card h3{
padding:15px;
color:#d4af37;
font-size:16px;
}

.carrossel{
position:relative;
width:450px;
height:280px;
overflow:hidden;
border-radius:12px;
}

.carrossel img{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:opacity 1s ease-in-out;
}

.carrossel img.ativo{
opacity:1;
}

.whatsapp-fixo{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
box-shadow:0 4px 12px rgba(0,0,0,0.4);
z-index:999;
transition:0.3s;
}

.whatsapp-fixo svg{
width:32px;
height:32px;
}

.whatsapp-fixo:hover{
transform:scale(1.1);
}

/* SOBRE HOME */


.hero-sobre{
text-align:center;
padding:80px 20px;
background:#000;
color:#fff;
}

.sobre-container{
padding:60px 10%;
background:#111;
color:#fff;
}

.sobre-texto{
max-width:800px;
margin:auto;
text-align:center;
}

.mvv{
background:#000;
padding:60px 20px;
}

.mvv-container{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
}

.mvv-card{
background:#111;
padding:25px;
border-radius:10px;
width:300px;
color:#fff;
}

.mvv-card ul{
padding-left:18px;
}

.diferenciais{
padding:60px 20px;
text-align:center;
background:#111;
color:#fff;
}

.diferenciais-container{
display:flex;
flex-wrap:wrap;
gap:20px;
justify-content:center;
margin-top:30px;
}

.diferencial{
background:#000;
padding:20px;
border-radius:10px;
width:250px;
}

.cta-sobre{
text-align:center;
padding:60px 20px;
background:#000;
color:#fff;
}

/* HOME CONTATO */

.hero-contato{
text-align:center;
padding:80px 20px;
background:#000;
color:#fff;
}

.contato-container{
display:flex;
flex-wrap:wrap;
gap:40px;
padding:60px 10%;
background:#111;
color:#fff;
}

.contato-info{
flex:1;
min-width:280px;
}

.contato-form{
flex:1;
min-width:280px;
}

.contato-form form{
display:flex;
flex-direction:column;
gap:15px;
}

.contato-form input,
.contato-form textarea{
padding:12px;
border:none;
border-radius:8px;
background:#000;
color:#fff;
}

.contato-form textarea{
min-height:120px;
resize:none;
}

.contato-form button{
background:#d4af37;
border:none;
padding:12px;
border-radius:8px;
font-weight:bold;
cursor:pointer;
}

.contato-form button:hover{
opacity:0.9;
}

.redes-sociais{
margin-top:25px;
display:flex;
flex-direction:column;
gap:12px;
}

.btn-social{
display:flex;
align-items:center;
gap:10px;
padding:12px 16px;
border-radius:10px;
text-decoration:none;
color:#fff;
font-weight:bold;
transition:0.3s;
width:220px;
}

.btn-social svg{
width:22px;
height:22px;
}

.instagram{
background:linear-gradient(45deg,#833AB4,#E1306C,#F77737);
}

.facebook{
background:#1877F2;
}

.btn-social:hover{
transform:translateY(-3px);
box-shadow:0 6px 15px rgba(0,0,0,0.4);
}

.mapa {
  text-align: center;
  margin-top: 40px;
}

.mapa h2 {
  text-align: center;
}

.mapa p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 20px auto;
}

.mapa iframe {
  display: block;
  margin: 20px auto;
  width: 100%;
  max-width: 800px;
  height: 400px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.mapa-full {
  width: 100%;
  background: #000;
  padding: 60px 20px;
  text-align: center;
}

.mapa-full p {
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #ccc;
}

.mapa-full iframe {
  width: 100%;
  max-width: 1000px;
  height: 450px;
  border: 0;
  border-radius: 12px;
  margin: 0 auto;
  display: block;
}
/* ===== MAPA RESPONSIVO ===== */

.mapa {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.mapa iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .mapa iframe {
    height: 250px;
  }
}
.tradutor select{
background:#111;
color:white;
border:1px solid #d4af37;
padding:8px 12px;
border-radius:8px;
cursor:pointer;
}
header{
display:flex;
align-items:center;
justify-content:space-between;
}
#google_translate_element{
margin-left:20px;
display:flex;
align-items:center;
}
.language-dropdown {
  position: relative;
  display: inline-block;
}

.lang-btn {
  background: #222;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 6px;
}

.lang-menu {
  display: none;
  position: absolute;
  background: #000;
  min-width: 160px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border-radius: 8px;
  overflow: hidden;
  z-index: 999;
}

.lang-menu div {
  padding: 10px;
  cursor: pointer;
}

.lang-menu div:hover {
  background: #111;
}

.language-dropdown:hover .lang-menu {
  display: block;
}
/* REMOVE BARRA SUPERIOR DO GOOGLE */
body {
  top: 0px !important;
}

.goog-te-banner-frame {
  display: none !important;
}

.goog-logo-link {
  display: none !important;
}

.goog-te-gadget {
  font-size: 0 !important;
}
