/* RESET */
.logo img{

  width:46px;

  height:46px;

  object-fit:cover;

  border-radius:12px;
}

.business-card img{

  width:100%;

  height:160px;

  object-fit:cover;

  display:block;
}
.business-card-content{

  padding:22px;
}

.services ul{

  margin-top: 20px;
  padding-left: 20px;
}

.services ul li{

  color: #d6d6d6;
  margin-bottom: 10px;
  line-height: 1.6;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:
  radial-gradient(circle at top,#10265e 0%,#08152f 40%,#050b1d 100%);
  color:white;
  overflow-x:hidden;
}

/* NAVBAR */

header{

  width:100%;

  padding:22px 6%;

  display:flex;

  justify-content:space-between;

  align-items:center;

  position:fixed;

  top:0;

  left:0;

  z-index:999;

  background:rgba(5,10,30,0.78);

  backdrop-filter:blur(12px);

  border-bottom:
  1px solid rgba(212,175,55,0.12);
}

.logo{

  color:#d4af37;

  font-size:32px;

  font-weight:700;

  letter-spacing:2px;

  text-shadow:
  0 0 12px rgba(212,175,55,0.35);
}

nav{

  display:flex;

  align-items:center;

  gap:35px;

  flex-wrap:wrap;
}

nav a{

  color:white;

  text-decoration:none;

  font-size:15px;

  position:relative;

  transition:.3s;
}

nav a::after{

  content:"";

  position:absolute;

  left:0;

  bottom:-6px;

  width:0;

  height:2px;

  background:#d4af37;

  transition:.3s;
}

nav a:hover::after{
  width:100%;
}

/* HERO */

.hero{

  min-height:100vh;

  padding:190px 6% 120px;

  display:flex;

  align-items:center;

  background:
  linear-gradient(
    rgba(3,8,25,.82),
    rgba(3,8,25,.78)
  ),
  url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1974&auto=format&fit=crop');

  background-size:cover;

  background-position:center;
}

.hero-content{

  max-width:850px;
}

.hero-content h1{

  font-family:'Cormorant Garamond',serif;

  font-size:clamp(52px,7vw,96px);

  line-height:1.05;

  margin-bottom:35px;
}

.hero-content p{

  font-size:clamp(18px,2vw,24px);

  color:#d6d9e0;

  line-height:1.8;

  margin-bottom:45px;

  max-width:760px;
}

.hero-content button{

  padding:20px 42px;

  border:none;

  border-radius:50px;

  background:
  linear-gradient(
    135deg,
    #b68a28,
    #f5d77a
  );

  color:#07152f;

  font-size:16px;

  font-weight:700;

  cursor:pointer;

  transition:.4s;

  box-shadow:
  0 10px 30px rgba(212,175,55,0.25);
}

.hero-content button:hover{

  transform:translateY(-4px);

  box-shadow:
  0 12px 35px rgba(212,175,55,0.4);
}

/* TITLES */

.section-title{

  text-align:center;

  margin-bottom:70px;
}

.section-title span{

  color:#d4af37;

  letter-spacing:3px;

  font-size:13px;
}

.section-title h2{

  font-family:'Cormorant Garamond',serif;

  font-size:54px;

  margin-top:15px;
}

.section-title p{

  margin-top:20px;

  color:#c6d0e0;

  line-height:1.9;
}

/* ABOUT */

.about{

  padding:140px 6%;
}

.about-container{

  max-width:1400px;

  margin:auto;

  display:flex;

  align-items:center;

  justify-content:center;

  gap:90px;

  flex-wrap:wrap;
}

/* FOTO */

.about-image{

  flex:1 1 420px;

  display:flex;

  justify-content:center;
}

.about-image img{

  width:100%;

  max-width:470px;

  height:620px;

  object-fit:cover;

  border-radius:28px;

  box-shadow:
  0 20px 50px rgba(0,0,0,0.35);
}

/* TEXTO */

.about-content{

  flex:1 1 520px;

  max-width:700px;

  padding-left:20px;
}

.about-content span{

  color:#d4af37;

  letter-spacing:4px;

  font-size:14px;

  text-transform:uppercase;
}

.about-content h2{

  font-family:'Cormorant Garamond',serif;

  font-size:clamp(40px,4.2vw,74px);

  line-height:1.08;

  margin:20px 0 28px;
}

.about-content p{

  color:#d6d9e0;

  line-height:1.9;

  font-size:18px;

  max-width:650px;
}

/* HIGHLIGHTS */

.highlights{

  display:flex;

  gap:40px;

  margin-top:35px;

  flex-wrap:wrap;
}

.highlight strong{

  display:block;

  font-size:28px;

  color:#f5d77a;
}

.highlight span{

  color:#b8c1d1;
}

/* SERVICES */

.services{

  padding:140px 6%;

  background:rgba(255,255,255,0.02);
}

.services-grid{

  max-width:1400px;

  margin:auto;

  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

  gap:22px;
}
.service-card{

  background:rgba(255,255,255,0.03);

  border-radius:24px;

  backdrop-filter:blur(10px);

  border:1px solid rgba(212,175,55,0.1);

  transition:.4s;

  padding:24px;

  display:flex;

  flex-direction:column;
}

.service-card:hover{

  transform:translateY(-6px);

  border:1px solid rgba(212,175,55,0.4);

  box-shadow:
  0 20px 50px rgba(0,0,0,0.35);
}

.service-card img{

  width:100%;

  height:140px;

  object-fit:cover;

  display:block;

  border-radius:14px;
}

.service-card-content{

  padding:0;

  margin-top:18px;


}

.service-card h3{

  font-size:22px;

  margin-top:18px;

  margin-bottom:12px;

  color:#f5d77a;
}
.service-card p{

  color:#c6d0e0;

  line-height:1.7;

  font-size:15px;
}
.service-card li{

  font-size:15px;

  line-height:1.6;
}
/* BUSINESS */

.business{

  padding:140px 6%;
}
.business-grid{
  max-width:1400px;
  margin:auto;
  display:grid;

  /* cards menores */
  grid-template-columns:
  repeat(auto-fit,minmax(260px,1fr));

  gap:22px;
}

.business-card{

  background:rgba(255,255,255,0.03);
  backdrop-filter:blur(10px);

  /* menos espaço interno */
  padding:24px;

  border-radius:24px;
  border:1px solid rgba(212,175,55,0.1);

  transition:.4s;
}

.business-card img{

  width:100%;

  /* imagem menor */
  height:140px;

  object-fit:cover;

  display:block;

  border-radius:14px;
}

.business-card h3{

  font-size:22px;

  margin-top:18px;
  margin-bottom:12px;

  color:#f5d77a;
}

.business-card li{
  font-size:15px;
  line-height:1.6;
}

.business-card p{
  font-size:15px;
  line-height:1.7;
}
/* CTA */

.cta{

  padding:140px 6%;

  background:
  linear-gradient(
    180deg,
    rgba(3,8,25,0.5),
    rgba(3,8,25,0.9)
  );

  text-align:center;
}

.cta h2{

  font-family:'Cormorant Garamond',serif;

  font-size:clamp(40px,5vw,68px);

  line-height:1.2;

  margin-bottom:25px;
}

.cta p{

  color:#d6d9e0;

  line-height:1.9;

  margin-bottom:40px;

  max-width:700px;

  margin-inline:auto;
}

.cta button{

  padding:18px 38px;

  border:none;

  border-radius:40px;

  background:
  linear-gradient(
    135deg,
    #b68a28,
    #f5d77a
  );

  color:#07152f;

  font-size:15px;

  font-weight:700;

  cursor:pointer;
}

/* MODAL */

.modal{

  display:none;

  position:fixed;

  z-index:99999;

  left:0;

  top:0;

  width:100%;

  height:100%;

  background:rgba(0,0,0,0.7);

  justify-content:center;

  align-items:center;

  padding:20px;
}

.modal-content{

  background:#09152e;

  width:100%;

  max-width:550px;

  border-radius:30px;

  padding:45px;

  position:relative;

  border:1px solid rgba(212,175,55,0.15);
}

.close{

  position:absolute;

  right:20px;

  top:15px;

  font-size:32px;

  cursor:pointer;

  color:#d4af37;
}

.modal-content h2{

  font-family:'Cormorant Garamond',serif;

  font-size:42px;

  margin-bottom:15px;
}

.modal-content p{

  color:#c6d0e0;

  margin-bottom:30px;

  line-height:1.8;
}

.modal form{

  display:flex;

  flex-direction:column;

  gap:18px;
}

.modal input,
.modal textarea{

  width:100%;

  padding:16px;

  border:1px solid rgba(255,255,255,0.08);

  background:rgba(255,255,255,0.03);

  border-radius:14px;

  font-size:15px;

  outline:none;

  color:white;
}

.modal textarea{
  resize:none;
}

.modal input:focus,
.modal textarea:focus{
  border-color:#d4af37;
}

.submit-btn{

  background:
  linear-gradient(
    135deg,
    #b68a28,
    #f5d77a
  );

  color:#07152f;

  border:none;

  padding:18px;

  border-radius:40px;

  font-size:16px;

  cursor:pointer;

  font-weight:700;
}

/* FOOTER */

footer{

  background:#040b1f;

  color:white;

  padding:80px 6% 30px;

  border-top:
  1px solid rgba(212,175,55,0.08);
}

.footer-container{

  max-width:1400px;

  margin:auto;

  display:flex;

  justify-content:space-between;

  gap:50px;

  flex-wrap:wrap;

  margin-bottom:40px;
}

.footer-brand h3{

  font-size:36px;

  margin-bottom:10px;

  color:#d4af37;
}

.footer-brand p{
  color:#c6d0e0;
}

.footer-info p{

  line-height:1.9;

  color:#c6d0e0;

  margin-bottom:20px;
}

.footer-info a{

  color:#f5d77a;

  text-decoration:none;
}

.footer-bottom{

  border-top:1px solid rgba(255,255,255,0.08);

  padding-top:25px;

  text-align:center;

  color:#7d8799;
}

/* RESPONSIVO */

@media(max-width:900px){

  header{

    flex-direction:column;

    gap:18px;

    padding:18px 5%;
  }

  nav{

    justify-content:center;

    gap:18px;
  }

  .hero{

    padding:180px 5% 100px;

    text-align:left;
  }

  .hero-content h1{

    font-size:64px;
  }

  .about{

    padding:110px 5%;
  }

  .about-container{

    flex-direction:column;

    gap:50px;
  }

  .about-content{

    padding-left:0;

    max-width:100%;
  }

  .about-content h2{

    font-size:48px;
  }

  .services,
  .business,
  .cta{

    padding:100px 5%;
  }

  .cta h2{

    font-size:42px;
  }

  .footer-container{

    flex-direction:column;
  }

}
@media(max-width:600px){

  header{

    padding:12px 5%;

    flex-direction:column;

    gap:12px;
  }

  .logo{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    font-size:22px;
  }

  .logo img{

    width:32px;

    height:32px;
  }

  nav{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:10px;
  }

  nav a{

    font-size:12px;
  }

  .hero{

    padding:160px 5% 80px;

    min-height:auto;
  }

  .hero-content h1{

    font-size:42px;

    line-height:1.1;
  }

  .hero-content p{

    font-size:16px;
  }

  .hero-content button{

    width:100%;

    max-width:320px;
  }

  .about{

    padding:90px 5%;
  }

  .about-image img{

    height:420px;
  }

  .about-content h2{

    font-size:36px;
  }

  .about-content p{

    font-size:15px;
  }

  .highlights{

    flex-direction:column;

    gap:20px;
  }

  .section-title h2{

    font-size:38px;
  }

  .service-card-content,
  .business-card{

    padding:25px;
  }

  .business-card h3{

    font-size:24px;
  }

  .cta h2{

    font-size:34px;
  }

  .cta p{

    font-size:15px;
  }

  .cta button{

    width:100%;

    max-width:320px;
  }

  .modal-content{

    padding:28px 20px;
  }

  .modal-content h2{

    font-size:32px;
  }

  footer{

    padding:60px 5% 25px;
  }

  .footer-container{

    text-align:center;
  }

}


#popup-sucesso{

  position:fixed;

  top:30px;

  right:30px;

  background:linear-gradient(135deg,#d4af37,#f5d77a);

  color:#07152f;

  padding:18px 28px;

  border-radius:14px;

  font-weight:700;

  font-size:15px;

  box-shadow:0 10px 30px rgba(0,0,0,0.35);

  display:none;

  z-index:999999;

  min-width:280px;

  justify-content:center;

  align-items:center;
}

@media (max-width: 768px){

  .services-grid{
    grid-template-columns:1fr !important;
  }

  .service-card{
    width:100%;
  }

  .service-card img{
    height:220px;
  }

}