*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
}

/* HEADER */

.header{
position:fixed;
width:100%;
top:0;
left:0;
z-index:999;
transition:0.3s;
}

.header.scrolled{
background:#fff;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.container-header{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:20px;
}

.logo img{
height:80px;
filter: brightness(0) invert(1); /* deixa a logo branca */
transition:0.3s;
}

/* quando o header ficar branco */
.header.scrolled .logo img{
filter: none; /* volta para a cor original */
}

/* MENU */

.nav ul{
display:flex;
gap:35px;
list-style:none;
align-items:center;
}

.nav a{
text-decoration:none;
color:#fff;
font-weight:500;
transition:0.3s;
}

.header.scrolled .nav a{
color:#000;
}

.btn-menu a{
border:2px solid #d9b33e;
padding:8px 15px;
border-radius:6px;
}

/* HAMBURGER */

.hamburger{
display:none;
flex-direction:column;
gap:5px;
cursor:pointer;
}

.hamburger span{
width:25px;
height:3px;
background:#fff;
display:block;
}

.header.scrolled .hamburger span{
background:#000;
}


/* HERO */

.hero{
height:95vh;
background:url("img/capa1.png") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
}

.hero::before{
content:"";
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
top:0;
left:0;
}

.hero-content{
position:relative;
color:#fff;
max-width:800px;
}

.hero h1{
font-size:80px;
font-weight:800;
  background: linear-gradient(
    to bottom,
    #d9b33e 0%,
    #fff 60%,
    #2b2a2a 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero span{
color:#cc0000;
font-size:65px;
}

.hero p{
margin-top:20px;
font-size:25px;
color: #c1c0c0;
}

.hero-buttons{
margin-top:30px;
display:flex;
justify-content:center;
gap:20px;
}

.btn-primary{
background:#d9b33e;
padding:12px 25px;
color:#ffff;
text-decoration:none;
border-radius:5px;

}

.btn-outline{
border:2px solid #d9b33e;
padding:12px 25px;
color:#fff;
text-decoration:none;
border-radius:5px;
}



@media(max-width:768px){

.container-header{
flex-direction:row-reverse;
}

.hamburger{
display:flex;
}

.nav{
position:fixed;
top:0;
left:-100%;
width:100%;
height:100vh;
background:#fff;
display:flex;
justify-content:center;
align-items:center;
transition:0.4s;
}

.nav.active{
left:0;
}

.nav ul{
flex-direction:column;
gap:30px;
}

.nav a{
color:#000;
font-size:22px;
}

.hero h1{
font-size:40px;
}

.hero span{
font-size:40px;
}

.hero-buttons{
flex-direction:column;
}

.logo img{
height:70px;
}

.hero p{
margin-top:20px;
font-size:20px;
color: #c1c0c0;
}


}

/*sobre*/

.estrela-dourada{
padding:100px 8%;
background:#fff;
}

.estrela-container{
display:flex;
align-items:center;
gap:60px;
max-width:1200px;
margin:auto;
}



/* TEXTO */

.estrela-texto{
flex:1;
}



.subtitulo{
color:#000;
font-weight:600;
display:block;
margin-bottom:10px;
}

.estrela-texto h2{
font-size:48px;

  background: linear-gradient(
    to bottom,
    #d9b33e 0%,
    #fff 60%,
    #2b2a2a 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
margin-bottom:20px;
line-height:1.1;
}

.estrela-texto p{
font-size:17px;
color:#555;
margin-bottom:15px;
line-height:1.6;
max-width:520px;
}

/* BOTÃO */

.btn-estrela{
display:inline-block;
background-color: #2b2a2a;
color:#fff;
padding:14px 28px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn-estrela:hover{
background: #d9b33e
}

/* IMAGEM */

.estrela-imagem{
flex:1;
}

.estrela-imagem img{
width:100%;
border-radius:10px;
display:block;
}

.estrela-icone{
width:230px;
margin-bottom:15px;
display:block;
}

.animar{
opacity:0;
transition:all .9s ease;
}

.animar.ativo{
opacity:1;
transform:translateX(0) translateY(0);
}

/* DIREÇÕES INICIAIS */

.fade-up{
transform:translateY(40px);
}

.esquerda{
transform:translateX(-60px);
}

.direita{
transform:translateX(60px);
}

/* DELAYS */

.delay1{transition-delay:.2s;}
.delay2{transition-delay:.4s;}
.delay3{transition-delay:.6s;}
.delay4{transition-delay:.8s;}

/* RESPONSIVO */

@media(max-width:900px){

.estrela-container{
flex-direction:column;
text-align:center;
}

.estrela-texto p{
margin-left:auto;
margin-right:auto;
}

@media (max-width:768px){

.estrela-icone{
width:200px;
margin-left:auto;
margin-right:auto;
}

}

}

/*servicos*/

.servicos{

padding:100px 8%;
background:#f5f5f5;

}

.titulo-servicos{

text-align:center;
font-size:40px;
margin-bottom:60px;
  background: linear-gradient(
    to bottom,
    #d9b33e 0%,
    #fff 60%,
    #2b2a2a 100%
  );
  background-size: 300% 300%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.servicos-container{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
max-width:1200px;
margin:auto;

}

/* CARD */

.servico-card{

background:white;
border-radius:15px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:.4s;
opacity:0;
transform:translateY(40px);

}

.servico-card.ativo{

opacity:1;
transform:translateY(0);

}

.servico-card:hover{

transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,0,0,0.15);

}

.servico-img{

width:100%;
height:200px;
object-fit:cover;

}

.servico-conteudo{

padding:25px;

}

.servico-icon{

width:50px;
height:50px;
background:#ffffff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
margin-top:-50px;
margin-bottom:15px;

}

.servico-icon img{

width:26px;

}

.servico-conteudo h3{

font-size:20px;
margin-bottom:10px;
color: #2b2a2a;

}

.servico-conteudo p{

font-size:15px;
color:#666;
margin-bottom:20px;

}

/* BOTÃO */

.btn-servico{

display:inline-block;
background: #d9b33e;
color:white;
padding:10px 25px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:.3s;

}

.btn-servico:hover{

background:#2b2a2a;
;

}

/* RESPONSIVO */

@media(max-width:900px){

.servicos-container{

grid-template-columns:1fr;

}

}

/*video*/

.projetos-video{
padding:100px 20px;
text-align:center;
background:url("img/capa1.png") center/cover no-repeat;
}

.titulo-projetos{

font-weight:700;
text-align:center;
font-size:56px;
margin-bottom:60px;
  background: linear-gradient(
    to bottom,
    #d9b33e 0%,
    #fff 60%,
    #2b2a2a 100%
  );
  background-size: 300% 300%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.video-container{
position:relative;
max-width:600px;
margin:auto;
border-radius:12px;
overflow:hidden;
}

.video-player{
width:100%;
display:none;
}

.video-capa{
position:relative;
width:100%;
cursor:pointer;
}

.video-capa img{
width:100%;
height:100%;
object-fit:cover;
}

.play-btn{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:80px;
height:80px;
border-radius:50%;
border:none;
background:#ff5a00;
color:#fff;
font-size:28px;
cursor:pointer;
box-shadow:0 10px 25px rgba(0,0,0,0.3);
transition:0.3s;
}

.play-btn:hover{
transform:translate(-50%,-50%) scale(1.1);
}

/* MOBILE */

@media (max-width:768px){

.titulo-projetos{
font-size:26px;
}

.play-btn{
width:60px;
height:60px;
font-size:20px;
}

}

/*marcas*/

.brands-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
  overflow: hidden;
}

.brands-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2b2a2a;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.brands-title span {
background: linear-gradient(
    to bottom,
    #d9b33e 0%,
    #fff 60%,
    #2b2a2a 100%
  );
  background-size: 300% 300%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-card {
   background: #f9f7f7;
  border-radius: 18px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  opacity: 0;
  transform: translateY(50px);

  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: ease;
}

.brand-card:hover {
  transition-delay: 0s !important;
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 0 20px rgba(255, 139, 50, 0.6),
    0 0 40px rgba(255, 91, 50, 0.4);
}

.brand-card img {
  max-width: 120px;
  width: 100%;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.brand-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}


.brand-card img {
  max-width: 130px;
  width: 100%;
  filter: none; 
  transition: transform 0.4s ease, filter 0.4s ease;
}

.brand-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 0 20px rgba(255, 152, 50, 0.6),
    0 0 40px rgba(252, 255, 50, 0.4);
}

.brand-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

.reveal.active .brands-title {
  opacity: 1;
  transform: translateY(0);
}

#marcas.reveal.active .brand-card {
  opacity: 1;
  transform: translateY(0);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.brands-grid .brand-card:nth-child(9) {
  grid-column: 2;
}

.brands-grid .brand-card:nth-child(10) {
  grid-column: 3;
}

@media (max-width: 768px) {
  .brands-title {
    font-size: 2.1rem;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-grid .brand-card {
    grid-column: auto !important;
  }
}



.localizacao-section {
 background: url('img/fundo-loc.png') center/cover no-repeat;
  padding: 60px 5%;
}

.localizacao-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.texto-localizacao {
  flex: 1;
  min-width: 280px;
}

.texto-localizacao h2 {
  font-size: 2rem;
  background: linear-gradient(
    to bottom,
    #d9b33e 0%,
    #fff 60%,
    #2b2a2a 100%
  );
  background-size: 300% 300%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.texto-localizacao p {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 5px;
}

.mapa-localizacao {
  flex: 1;
  min-width: 320px;
}

.mapa-localizacao iframe {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* --- RESPONSIVO PARA CELULAR --- */
@media (max-width: 768px) {
  .localizacao-container {
    flex-direction: column;
  }

  .texto-localizacao {
    order: 1;
    text-align: center;
  }

  .mapa-localizacao {
    order: 2;
  }

  .texto-localizacao h2 {
    font-size: 1.6rem;
  }

  .texto-localizacao p {
    font-size: 1rem;
  }
}

/*form*/

.vme-contato {
  padding: 60px 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vme-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.vme-form-box {
  flex: 1;
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.vme-tag {
  color: #d9b33e;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 13px;
}

.vme-form-box h2 {
  margin: 10px 0;
  font-size: 32px;
}

.vme-subtitulo {
  color: #666;
  margin-bottom: 25px;
}

.vme-form-box input,
.vme-form-box select,
.vme-form-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.vme-form-box input:focus,
.vme-form-box select:focus,
.vme-form-box textarea:focus {
  outline: none;
  border-color: #d9b33e;
}

.vme-form-box button {
  width: 100%;
  padding: 14px;
  background: #d9b33e;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.vme-form-box button:hover {
  background: #000;
}

.vme-image-box {
  flex: 1;
}

.vme-image-box img {
  width: 100%;
  border-radius: 18px;
}

@media (max-width: 768px) {

  .vme-container {
    flex-direction: column;
  }

  .vme-form-box {
    padding: 25px;
  }

  .vme-form-box h2 {
    font-size: 26px;
  }

  .vme-subtitulo {
    font-size: 14px;
    line-height: 1.4;
  }

  .vme-form-box input,
  .vme-form-box select,
  .vme-form-box textarea {
    font-size: 14px;
    padding: 12px;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

}

/*footer*/

.footer {
  background: #706f6f;
  color: #fff;
  padding-top: 70px;
}


.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}


.footer-col h4 {
  font-size: 1.0rem;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 0.90rem;
  line-height: 1.6;
  margin-top: 20px;
}


.footer-logo {
  max-width: 140px;
}


.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}


.footer a,
.footer p {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
   font-size: 0.83rem;
}

.footer a:hover,
.footer p:hover {
  color: #d9b33e;
}

.footer-small {
  font-size: 0.8rem;
  margin-top: 6px;
}

.footer-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background-color: #d9b33e;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 214, 50, 0.6);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto;
  }
}
