/* contato.css */

/* RESET */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  background:#f7f4f2;
  color:#222;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */

.header{
  width: 100%;
  padding: 22px 8%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  position: fixed;
  top: 0;
  left: 0;

  z-index: 999;

  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* LOGO */

.logo img{
  width: 220px;
  display: block;
}

/* MENU */

.menu{
  display: flex;
  align-items: center;
  gap: 35px;
}

.menu a{
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;

  transition: .3s ease;
}

.menu a:hover{
  color: #ff7a00;
}

/* LINK ATIVO */

.menu .active{
  color: #ff7a00;
}

/* BOTÃO */

.btn-contato{
  background: linear-gradient(135deg, #ff9d3f, #ff5e00);

  padding: 14px 28px;
  border-radius: 999px;

  color: white !important;
  font-weight: 600;

  transition: .3s ease;
}

.btn-contato:hover{
  transform: translateY(-3px);

  box-shadow: 0 10px 25px rgba(255,122,0,0.35);
}

/* RESPONSIVO */

@media(max-width: 768px){

  .header{
    padding: 18px 5%;
  }

  .logo img{
    width: 115px;
  }

  .menu{
    gap: 18px;
  }

  .menu a{
    font-size: .85rem;
  }

  .btn-contato{
    padding: 10px 18px;
  }

}

/* HERO */

.contact-hero{
  background:#101010;
  padding:100px 0;
  color:white;
}

.hero-text span{
  font-size:.9rem;
  letter-spacing:2px;
}

.hero-text h1{
  font-size:4rem;
  line-height:1.1;
  margin:20px 0;
  max-width:700px;
}

.hero-text p{
  max-width:600px;
  font-size:1.1rem;
  line-height:1.7;
}

/* CONTACT */

.contact-section{
  padding:100px 0;
}

.contact-container{
  display:flex;
  gap:50px;
  align-items:flex-start;
}

/* FORM */

.contact-form{
  flex:2;
  background:white;
  padding:50px;
  border-radius:25px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.contact-form h2{
  margin-bottom:35px;
  font-size:2rem;
}

.input-group{
  margin-bottom:25px;
}

.input-group input,
.input-group textarea{
  width:100%;
  border:none;
  background:#f3f3f3;
  padding:18px 20px;
  border-radius:14px;
  font-size:1rem;
  font-family:'Poppins', sans-serif;
}

.input-group textarea{
  height:180px;
  resize:none;
}

.input-group input:focus,
.input-group textarea:focus{
  outline:2px solid #ff6b00;
}

.btn-submit{
  width:100%;
  border:none;
  background:#ff6b00;
  color:white;
  padding:18px;
  border-radius:14px;
  font-size:1rem;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.btn-submit:hover{
  transform:translateY(-3px);
}

/* INFO */

.contact-info{
  flex:1;
  background:white;
  padding:50px 35px;
  border-radius:25px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.contact-info h2{
  margin-bottom:35px;
}

.info-card{
  display:flex;
  gap:18px;
  margin-bottom:30px;
  align-items:flex-start;
}

.info-card i{
  font-size:1.4rem;
  color:#ff6b00;
  margin-top:5px;
}

.info-card h4{
  margin-bottom:5px;
}

.info-card p{
  color:#666;
}

/* FOOTER */

.footer{
  background:#111;
  color:white;
  padding:30px 0;
}

.footer-content{
  text-align:center;
}

/* RESPONSIVO */

@media(max-width:992px){

  .contact-container{
    flex-direction:column;
  }

  .contact-form,
  .contact-info{
    width:100%;
  }

}

@media(max-width:768px){

  .nav-links{
    display:none;
  }

  .hero-text h1{
    font-size:2.5rem;
  }

  .contact-form{
    padding:35px 25px;
  }

  .contact-info{
    padding:35px 25px;
  }

}