*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
 
body{
  font-family:'Outfit',sans-serif;

  background:
  radial-gradient(
    circle at top right,
    rgba(214,171,69,0.08),
    transparent 30%
  ),
  #f5f2eb;
 
  color:#102131;

  overflow-x:hidden;
}

/* =========================================
   HEADER
========================================= */

.header{
  width:100%;
  height:110px;

  padding:0 70px;

  display:flex;
  align-items:center;
  justify-content:center;

  position:fixed;
  top:0;
  left:0;
  z-index:1000;

  background:rgba(245,242,235,0.82);

  backdrop-filter:blur(14px);

  border-bottom:1px solid rgba(0,0,0,0.04);
}

.logo{
  position:absolute;
  left:55px;
}

.logo img{
  height:88px;
}

.menu{
  display:flex;
  align-items:center;
  gap:70px;
}

.menu a{
  text-decoration:none;

  color:#102131;

  font-size:1.08rem;
  font-weight:500;

  letter-spacing:0.3px;

  position:relative;

  transition:0.3s ease;
}

/* LINHA */

.menu a::after{
  content:"";

  position:absolute;
  left:0;
  bottom:-8px;

  width:0%;
  height:2px;

  background:#d6ab45;

  border-radius:20px;

  transition:0.35s ease;
}

.menu a:hover{
  color:#d6ab45;
}

.menu a:hover::after{
  width:100%;
}

.menu a.active{
  color:#d6ab45;
}

.menu a.active::after{
  width:100%;
}

/* =========================================
   HERO
========================================= */

.contacto-hero{
  padding-top:220px;
  padding-bottom:120px;

  background:
  linear-gradient(
    180deg,
    #f5f2eb 0%,
    #f1ede4 100%
  );
}

.hero-content{
  width:min(1280px,88%);
  margin:auto;
}

.hero-mini{
  display:block;

  color:#d6ab45;

  letter-spacing:7px;
  font-size:0.9rem;

  margin-bottom:30px;
}

.hero-content h1{
  font-size:6rem;
  line-height:0.95;

  font-weight:800;

  letter-spacing:-4px;
}

.hero-content p{
  margin-top:40px;

  max-width:850px;

  font-size:1.4rem;
  line-height:1.8;

  color:#29465f;
}

/* =========================================
   CONTACTO
========================================= */

.contacto-section{
  width:min(1400px,90%);
  margin:auto;

  display:grid;
  grid-template-columns:0.9fr 1.1fr;

  gap:50px;

  padding-bottom:120px;
}

/* INFO */

.contacto-info{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.info-card{
  background:
  rgba(255,255,255,0.7);

  backdrop-filter:blur(10px);

  border-radius:34px;

  padding:38px;

  border:1px solid rgba(255,255,255,0.4);

  box-shadow:
  0 15px 40px rgba(0,0,0,0.05);
}

.info-card span{
  color:#d6ab45;

  font-size:0.8rem;
  font-weight:700;

  letter-spacing:2px;

  text-transform:uppercase;
}

.info-card h3{
  margin-top:18px;

  font-size:2rem;
  line-height:1.2;
}

.info-card p{
  margin-top:18px;

  color:#29465f;

  line-height:1.8;
}

/* FORM */

.contacto-form{
  background:
  rgba(255,255,255,0.72);

  backdrop-filter:blur(10px);

  border-radius:40px;

  padding:50px;

  border:1px solid rgba(255,255,255,0.5);

  box-shadow:
  0 20px 50px rgba(0,0,0,0.06);
}

form{
  display:flex;
  flex-direction:column;
  gap:28px;
}

.input-group{
  display:flex;
  flex-direction:column;
}

.input-group label{
  margin-bottom:12px;

  font-weight:600;
}

.input-group input,
.input-group textarea{
  width:100%;

  border:none;

  background:#f3efe8;

  border-radius:20px;

  padding:18px 22px;

  font-family:'Outfit',sans-serif;
  font-size:1rem;

  color:#102131;

  outline:none;

  transition:0.3s ease;
}

.input-group textarea{
  min-height:180px;
  resize:none;
}

.input-group input:focus,
.input-group textarea:focus{
  background:white;

  box-shadow:
  0 0 0 2px rgba(214,171,69,0.25);
}

button{
  border:none;

  background:#d6ab45;
  color:white;

  padding:18px 30px;

  border-radius:999px;

  font-family:'Outfit',sans-serif;
  font-size:1rem;
  font-weight:600;

  cursor:pointer;

  transition:0.35s ease;
}

button:hover{
  transform:translateY(-3px);

  box-shadow:
  0 14px 30px rgba(214,171,69,0.30);
}



/* =========================================
   HAMBURGER
========================================= */

.hamburger{
  display:none;

  width:34px;
  height:24px;

  position:relative;

  cursor:pointer;

  z-index:2001;
}

.hamburger span{
  position:absolute;

  width:100%;
  height:2px;

  background:#102131;

  border-radius:20px;

  transition:0.3s ease;
}

.hamburger span:nth-child(1){
  top:0;
}

.hamburger span:nth-child(2){
  top:10px;
}

.hamburger span:nth-child(3){
  top:20px;
}

@media(max-width:768px){

  .hamburger{
    display:block;

    margin-left:auto;

    width:34px;
    height:24px;

    position:relative;

    cursor:pointer;

    z-index:2001;
  }

  .menu{
    position:fixed;

    top:0;
    right:-100%;

    width:100%;
    height:100vh;

    background:rgba(255,255,255,0.96);

    backdrop-filter:blur(14px);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:40px;

    transition:right 0.4s ease;

    z-index:2000;
  }

  .menu.active{
    right:0;
  }

  .menu a{
    color:#1f2f3a !important;

    font-size:1.5rem;
  }

  /* X animation */

  .hamburger.active span:nth-child(1){
    transform:rotate(45deg);
    top:10px;
  }

  .hamburger.active span:nth-child(2){
    opacity:0;
  }

  .hamburger.active span:nth-child(3){
    transform:rotate(-45deg);
    top:10px;
  }

  .hamburger.active span{
    background:#1f2f3a;
  }

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px){

  .contacto-section{
    grid-template-columns:1fr;
  }

}

@media(max-width:900px){

  .hero-content h1{
    font-size:4rem;
  }


}

@media(max-width:600px){

  .header{
    padding:0 25px;
  }

  .logo{
    left:25px;
  }

  .logo img{
    height:70px;
  }

  .contacto-hero{
    padding-top:170px;
    padding-bottom:80px;
  }

  .hero-content{
    width:90%;
  }

  .hero-content h1{
    font-size:3rem;
    line-height:1;
    letter-spacing:-1px;
    word-break:break-word;
  }

  .hero-content p{
    font-size:1rem;
    line-height:1.8;
    max-width:100%;
  }

  .contacto-section{
    width:90%;
  }

  .contacto-form{
    padding:30px;
  }

  .info-card{
    padding:30px;
  }

  .info-card h3{
    font-size:1.5rem;
  }


}

.form-consent{
  margin:25px 0;
}

.form-consent label{
  display:flex;
  align-items:flex-start;
  gap:10px;

  font-size:0.95rem;
  line-height:1.6;

  color:#5c7280;
}

.form-consent input[type="checkbox"]{
  margin-top:4px;
  flex-shrink:0;
}

.form-consent a{
  color:#d8b25a;
  text-decoration:none;
}

.form-consent a:hover{
  text-decoration:underline;
}

.mensagem-sucesso{
  display:none;

  margin-top:25px;
  padding:20px;

  background:#eaf7ea;
  color:#2f6b2f;

  border:1px solid #cfe8cf;
  border-left:5px solid #4caf50;

  border-radius:12px;

  font-size:0.95rem;
  line-height:1.6;
}

.popup-sucesso{
  display:none;

  position:fixed;
  inset:0;

  background:rgba(0,0,0,.55);

  z-index:99999;

  align-items:center;
  justify-content:center;

  padding:20px;
}

.popup-box{
  background:#fff;

  width:100%;
  max-width:520px;

  padding:45px;

  border-radius:22px;

  text-align:center;

  box-shadow:
    0 30px 80px rgba(0,0,0,.18);
}

.popup-box h3{
  font-size:2rem;
  color:#1f2f3a;

  margin-bottom:15px;
}

.popup-box p{
  color:#5c7280;

  line-height:1.8;

  margin-bottom:30px;
}

.popup-btn{
  display:inline-block;

  padding:14px 28px;

  border-radius:50px;

  background:#d8b25a;
  color:#fff;

  text-decoration:none;

  transition:.3s;
}

.popup-btn:hover{
  background:#c8a24a;
}