*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
}


html, body{
max-width:100%;
overflow-x:hidden;
}

/* 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;
transition:0.3s;
}


/* 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 #dd7719;
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;
}

/* MOBILE */

@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;
}

.logo img{
height:50px;
transition:0.3s;
}


}

/* 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;
overflow:hidden;
}

.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;
display:flex;
flex-direction:column;
align-items:center;
}

/* IMAGEM */
.hero-img{
width:500px;
margin-bottom:20px;

opacity:0;
transform:translateY(40px);
transition:0.8s;
}

/* TEXTO */
.hero-text{
margin-top:10px;
font-size:25px;
color:#c1c0c0;

opacity:0;
transform:translateY(40px);
transition:0.8s;
transition-delay:0.3s;
}

/* BOTÕES */
.hero-buttons{
margin-top:30px;
display:flex;
justify-content:center;
gap:20px;
}

/* animação imagem + texto */
.hero.show .hero-img,
.hero.show .hero-text{
opacity:1;
transform:translateY(0);
}


.btn-primary{
background:#dd7719;
padding:12px 25px;
color:#fff;
text-decoration:none;
border-radius:5px;
position:relative;
overflow:visible; /* importante */
font-weight:700;

/* entra da direita */
transform:translateX(200%);
opacity:0;

z-index:1; /* botão fica na frente */
}

.btn-outline{
border:2px solid #dd7719;
padding:12px 25px;
color:#fff;
text-decoration:none;
border-radius:5px;

/* entra da esquerda */
transform:translateX(-200%);
opacity:0;
}


.hero.show .btn-outline{
animation:carLeft 0.9s cubic-bezier(0.25, 1.5, 0.5, 1) forwards;
}

.hero.show .btn-primary{
animation:carRight 0.9s cubic-bezier(0.25, 1.5, 0.5, 1) forwards;
animation-delay:0.2s;
}

@keyframes carLeft{
0%{
opacity:0;
transform:translateX(-200%);
}
70%{
transform:translateX(15px);
}
100%{
opacity:1;
transform:translateX(0);
}
}

@keyframes carRight{
0%{
opacity:0;
transform:translateX(200%);
}
70%{
transform:translateX(-15px);
}
100%{
opacity:1;
transform:translateX(0);
}
}

/* ========================= */
/* FUMAÇA */
/* ========================= */

.btn-primary::before{
content:"";
position:absolute;
bottom:-25px;
left:50%;
transform:translateX(-50%);
width:160%;
height:60px;

/* fumaça mais forte */
background:radial-gradient(circle, rgba(255, 255, 255, 0.411) 0%, rgba(255,255,255,0.2) 40%, transparent 80%);

filter:blur(15px);
opacity:0;

z-index:-1; 
pointer-events:none;
}

.hero.show .btn-primary::before{
animation:smoke 2s infinite;
animation-delay:0.8s;
}

@keyframes smoke{
0%{
opacity:0;
transform:translateX(-50%) translateY(0) scale(0.7);
}
30%{
opacity:0.9;
}
60%{
opacity:0.5;
transform:translateX(-50%) translateY(-20px) scale(1.3);
}
100%{
opacity:0;
transform:translateX(-50%) translateY(-50px) scale(1.8);
}
}



/* acelera no hover */
.btn-primary:hover::before{
animation-duration:1s;
opacity:0.9;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

.hero-img{
width:80%;
}

.hero-text{
font-size:18px;
}

.hero-buttons{
flex-direction:column;
}

.hero{
height:110vh;
background:url("img/capa1-celular.png") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
overflow:hidden;
}

}

/*serviços*/

/* ========================= */
/* SEÇÃO SERVIÇOS */
/* ========================= */

.servicos{
padding:80px 20px;
background:#f5f5f5;
text-align:center;
}


.servicos.show{
opacity:1;
transition:0.5s;
}

.servicos-container{
display:grid;
grid-template-columns:repeat(2, 1fr);
gap:30px;
max-width:900px;
margin:0 auto;
}

.servico-card{
background:#e9ecef;
padding:40px 20px;
border-radius:15px;
position:relative;
transition:0.4s;
opacity:0;
}

.servico-card img{
width:70px;
margin-bottom:20px;
}

.servico-card h3{
font-size:22px;
color:#111;
}


.servico-card.left{
transform:translateX(-200%);
}

.servico-card.right{
transform:translateX(200%);
}



.servicos.show .servico-card{
opacity:1;
transform:translateX(0);
transition:0.8s cubic-bezier(0.25,1.5,0.5,1);
}


.servico-card:hover{
transform:translateY(-5px) scale(1.02);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}


.btn-chamar{
display:inline-block;
margin-top:50px;
background:#dd7719;
color:#fff;
padding:15px 35px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
transition:0.3s;
}

.btn-chamar:hover{
transform:scale(1.05);
}


@media(max-width:768px){

.servicos-container{
grid-template-columns:1fr;
}

.servico-card{
padding:30px 15px;
}

.servico-card img{
width:60px;
}

.servico-card h3{
font-size:18px;
}

}

/*produtos2*/

.produtos-novo{
padding:80px 5%;
background:url("img/capa2.png") center/cover no-repeat;
}

.titulo-produtos{
text-align:center;
font-size:42px;
margin-bottom:60px;
color:#dd7719;
font-weight:700;
}

.grid-produtos{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
max-width:900px;
margin:0 auto;
}


.card-produto{
background:#0000006a;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
display:flex;
flex-direction:column;
}

.card-produto:hover{
transform:translateY(-8px);
}


.card-img{
width:100%;
height:200px;
overflow:hidden;
}

.card-img img{
width:100%;
height:100%;
object-fit:cover;
}


.card-conteudo{
padding:25px;
display:flex;
flex-direction:column;
gap:10px;
}

.card-conteudo h3{
font-size:20px;
color:#dd7719;
}

.descricao{
font-size:16px;
color:#fff;
line-height:1.4;
}


.btn-card{
margin-top:auto;
background:#dd7719;
color:#fff;
text-decoration:none;
padding:12px;
text-align:center;
border-radius:8px;
font-weight:600;
transition:0.3s;
position:relative;
overflow:hidden;
}


.btn-card::after{
content:"";
position:absolute;
top:0;
left:-100%;
width:60%;
height:100%;
background:linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
transform:skewX(-25deg);
animation:shine 3s infinite;
}

@keyframes shine{
0%{left:-100%;}
100%{left:130%;}
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

.grid-produtos{
grid-template-columns:1fr;
}

.titulo-produtos{
font-size:30px;
}
.produtos-novo{
padding:80px 5%;
background:url("img/capa2-celular.png") center/cover no-repeat;
}

}



.why-jmv {
  padding: 100px 8%;
  background-color: #fff;
  color: #000;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.why-jmv .section-title span {
   background-color: #dd7719;
   -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cards {
 display: grid;
  grid-template-columns: repeat(4, 280px); 
  gap: 20px;
  justify-content: center; 
  
}

.card {
   background: rgba(255, 255, 255, 0.078); 
  border: 1px solid rgba(228, 113, 13, 0.505); 
  border-radius: 18px;
  padding: 40px 30px;
  text-align: left;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(60px);
  transition: 
    transform 0.4s ease,
    box-shadow 0.4s ease,
    opacity 0.6s ease,
    border-color 0.4s ease,
    background 0.4s ease;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center; 
}

.card {
  max-width: 350px; 
  max-height: 280px;
  width: 100%;
}


.card:hover {
   transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow:
    0 0 25px rgba(255, 142, 50, 0.35),
    inset 0 0 15px rgba(255, 255, 255, 0.25);
    
}

.icon-box {
  width: 56px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;

  background: #dd7719;
}

.icon-box img {
  width: 30px;
  height: 30px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.85;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.section-title.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (min-width: 950px) and (max-width: 1366px) {

  .card {
  max-width: 350px; 
  max-height: 330px;
  width: 100%;
}

}

/* SEÇÃO */
.form-section{
padding:80px 5%;
background:#000;
}

/* CONTAINER */
.form-container{
display:flex;
align-items:stretch;
justify-content:center;
max-width:1100px;
margin:0 auto;
border-radius:20px;
overflow:hidden;
}

/* FORM */
.form-box{
background:#fff;
padding:40px;
flex:1;
display:flex;
flex-direction:column;
justify-content:center;
}

.form-box h2{
font-size:28px;
margin-bottom:15px;
}

.form-box h2 span{
color:#dd7719;
}

.form-box p{
font-size:14px;
margin-bottom:20px;
color:#555;
}

/* INPUTS */
form{
display:flex;
flex-direction:column;
gap:15px;
}

input, textarea{
width:100%;
padding:12px;
border-radius:6px;
border:1px solid #ccc;
font-size:14px;
}

textarea{
min-height:100px;
resize:none;
}

/* DUAS COLUNAS */
.form-row{
display:flex;
gap:10px;
}

.form-row input{
flex:1;
}

/* BOTÃO */
button{
background:#dd7719;
color:#fff;
border:none;
padding:15px;
border-radius:6px;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

button:hover{
transform:scale(1.03);
}

/* IMAGEM */
.form-image{
flex:1;
}

.form-image img{
width:100%;
height:auto; 
object-fit:contain;
display:block;
}

/* MOBILE */
@media(max-width:768px){

.form-container{
flex-direction:column;
}

.form-box{
order:1;
}

.form-image{
order:2;
}

}

/*footer*/

.footer {
  background-color: #efefef;
  color: #000;
  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: #000;
  text-decoration: none;
  transition: color 0.3s ease;
   font-size: 0.83rem;
}

.footer a:hover,
.footer p:hover {
  color: #dd7719;
}

.footer-small {
  font-size: 0.8rem;
  margin-top: 6px;
}

.footer-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
    background: #dd7719;
  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, 146, 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;
  }
}


.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px; 
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
  z-index: 9999;
  animation: jump 0.6s infinite alternate;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}


.whatsapp-float:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
}


@keyframes jump {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: 15px;
    bottom: 15px;
  }
}