:root{
  --black:#0d1117;
  --black-2:#131a24;
  --white:#ffffff;
  --offwhite:#f5f2eb;

  --text:#1d222b;
  --muted:#6e7683;
  --muted-light:#c5cad3;

  --gold:#b99a63;
  --gold-light:#d6ba82;

  --border:#e5ded1;
  --border-dark:rgba(255,255,255,.1);

  --radius:22px;
  --radius-sm:14px;

  --shadow:
    0 24px 70px rgba(0,0,0,.14);

  --shadow-soft:
    0 14px 40px rgba(0,0,0,.08);

  --container:1180px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Manrope',system-ui,sans-serif;
  background:#fff;
  color:var(--text);
  line-height:1.7;
  font-size:16px;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
textarea,
select{
  font:inherit;
}

.container{
  width:min(100% - 40px, var(--container));
  margin-inline:auto;
}

/* HEADER */

.header{
  position:sticky;
  top:0;
  z-index:1000;

  background:rgba(13,17,23,.96);

  border-bottom:1px solid rgba(255,255,255,.06);

  backdrop-filter:blur(16px);
}

.nav{
  min-height:104px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:28px;
}

.brand{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.brand-logo-box{
  display:flex;
  align-items:center;
  justify-content:center;

  width:230px;
  height:66px;

  padding:10px 16px;

  background:#fff;

  border-radius:14px;

  box-shadow:
    0 10px 28px rgba(0,0,0,.18);
}

.brand-logo-box img{
  width:100%;
  height:auto;
}

.menu{
  display:flex;
  align-items:center;
  gap:30px;
}

.menu a{
  color:var(--muted-light);

  font-size:.95rem;
  font-weight:700;

  transition:.2s ease;
}

.menu a:hover{
  color:#fff;
}

/* BOTÕES */

.btn{
  min-height:50px;

  padding:0 24px;

  border-radius:999px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  font-weight:800;
  font-size:.94rem;

  transition:.25s ease;

  border:0;

  cursor:pointer;
}

.btn-primary{
  background:var(--gold);
  color:#111;

  box-shadow:
    0 12px 28px rgba(185,154,99,.24);
}

.btn-primary:hover{
  background:var(--gold-light);

  transform:translateY(-2px);
}

.btn-secondary{
  color:#fff;

  border:1px solid rgba(255,255,255,.16);

  background:rgba(255,255,255,.04);
}

.btn-secondary:hover{
  background:rgba(255,255,255,.1);
}

.btn-header{
  background:var(--gold);
  color:#111;
}

.btn-header:hover{
  background:var(--gold-light);
}

.btn-secondary-dark{
  border:1px solid var(--border);

  background:transparent;

  color:var(--text);
}

.btn-secondary-dark:hover{
  background:var(--offwhite);
}

/* HERO */

.hero{
  position:relative;

  overflow:hidden;

  background:
    linear-gradient(
      135deg,
      #0d1117 0%,
      #111927 60%,
      #10151d 100%
    );

  padding:120px 0;
}

.hero-light{
  position:absolute;

  width:800px;
  height:800px;

  right:-260px;
  top:-220px;

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(185,154,99,.14),
      transparent 65%
    );

  filter:blur(20px);
}

.hero-grid{
  position:relative;
  z-index:2;

  display:grid;

  grid-template-columns:
    minmax(0,1.15fr)
    minmax(340px,.85fr);

  gap:70px;

  align-items:center;
}

.eyebrow,
.section-label,
.card-kicker{
  display:inline-flex;

  width:max-content;

  padding:8px 14px;

  border-radius:999px;

  background:rgba(185,154,99,.12);

  color:var(--gold-light);

  font-size:.78rem;
  font-weight:800;

  letter-spacing:.06em;

  text-transform:uppercase;

  margin-bottom:24px;
}

.hero h1{
  max-width:760px;

  color:#fff;

  font-size:4.6rem;
  line-height:1.02;

  letter-spacing:-.08em;

  font-weight:800;

  margin-bottom:28px;
}

.hero p{
  max-width:640px;

  color:var(--muted-light);

  font-size:1.08rem;

  line-height:1.9;

  margin-bottom:36px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;

  margin-bottom:38px;
}

.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.trust-row span{
  padding:10px 14px;

  border-radius:999px;

  background:
    rgba(255,255,255,.04);

  border:
    1px solid rgba(255,255,255,.08);

  color:var(--muted-light);

  font-size:.85rem;
  font-weight:600;
}

/* HERO CARD */

.hero-card{
  background:
    rgba(255,255,255,.05);

  border:
    1px solid var(--border-dark);

  border-radius:var(--radius);

  padding:40px;

  backdrop-filter:blur(18px);

  box-shadow:var(--shadow);
}

.hero-card h2{
  color:#fff;

  font-size:2rem;
  line-height:1.2;

  letter-spacing:-.05em;

  font-weight:800;

  margin-bottom:28px;
}

.hero-card ul{
  list-style:none;

  margin-bottom:30px;
}

.hero-card li{
  color:var(--muted-light);

  padding:15px 0;

  border-bottom:
    1px solid rgba(255,255,255,.08);
}

.hero-card li::before{
  content:"";

  width:7px;
  height:7px;

  border-radius:50%;

  background:var(--gold);

  display:inline-block;

  margin-right:10px;
}

.card-link{
  color:var(--gold-light);

  font-weight:800;
}

/* SEÇÕES */

section{
  padding:104px 0;
}

.section-heading{
  max-width:740px;

  margin-bottom:56px;
}

.section-heading h2,
.about h2,
.contact h2{
  font-size:3rem;
  line-height:1.08;

  letter-spacing:-.06em;

  font-weight:800;

  margin-bottom:20px;
}

.section-heading p,
.about-text p,
.contact-info p{
  color:var(--muted);
}

.about{
  background:var(--offwhite);
}

.about-grid{
  display:grid;

  grid-template-columns:
    .9fr 1.1fr;

  gap:70px;
}

.about-text{
  display:grid;
  gap:18px;
}

/* ÁREAS */

.cards-grid{
  display:grid;

  grid-template-columns:
    repeat(3,1fr);

  gap:22px;
}

.service-card{
  position:relative;

  min-height:250px;

  background:#fff;

  border:
    1px solid var(--border);

  border-radius:var(--radius);

  padding:34px;

  box-shadow:var(--shadow-soft);

  transition:.25s ease;
}

.service-card::before{
  content:"";

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:4px;

  background:
    linear-gradient(
      90deg,
      var(--gold),
      transparent
    );
}

.service-card:hover{
  transform:translateY(-6px);

  box-shadow:
    0 20px 50px rgba(0,0,0,.1);
}

.service-card span{
  display:block;

  color:var(--gold);

  font-size:.82rem;
  font-weight:800;

  margin-bottom:22px;
}

.service-card h3{
  font-size:1.35rem;

  font-weight:800;

  letter-spacing:-.04em;

  margin-bottom:14px;
}

.service-card p{
  color:var(--muted);

  font-size:.96rem;
}

/* DIFERENCIAIS */

.differentials{
  background:var(--black);
}

.section-heading-light h2{
  color:#fff;
}

.differentials-grid{
  display:grid;

  grid-template-columns:
    repeat(3,1fr);

  gap:24px;
}

.differential-item{
  background:
    rgba(255,255,255,.04);

  border:
    1px solid rgba(255,255,255,.08);

  border-radius:var(--radius);

  padding:34px;
}

.differential-item strong{
  display:block;

  color:#fff;

  font-size:1.08rem;

  margin-bottom:14px;
}

.differential-item p{
  color:var(--muted-light);
}

/* CONTATO */

.contact{
  background:
    linear-gradient(
      180deg,
      var(--offwhite),
      #fff
    );
}

.contact-grid{
  display:grid;

  grid-template-columns:
    .85fr 1.15fr;

  gap:70px;
}

.contact-note{
  margin-top:28px;

  padding:18px;

  border-radius:var(--radius-sm);

  border:
    1px solid var(--border);

  background:#fff;

  color:var(--muted);

  font-size:.94rem;
}

.contact-form{
  display:grid;

  grid-template-columns:
    1fr 1fr;

  gap:18px;

  padding:34px;

  background:#fff;

  border:
    1px solid var(--border);

  border-radius:var(--radius);

  box-shadow:var(--shadow-soft);
}

.contact-form label{
  display:grid;
  gap:8px;

  font-size:.92rem;
  font-weight:700;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
  width:100%;

  padding:15px 16px;

  border-radius:14px;

  border:
    1px solid #ddd6c8;

  background:#fbfaf7;

  transition:.2s ease;

  outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
  border-color:var(--gold);

  background:#fff;

  box-shadow:
    0 0 0 4px rgba(185,154,99,.14);
}

.contact-form textarea{
  min-height:140px;

  resize:vertical;
}

.full{
  grid-column:1 / -1;
}

.form-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* FOOTER */

.footer{
  background:var(--black);

  color:var(--muted-light);

  padding:42px 0;
}

.footer-grid{
  display:grid;

  grid-template-columns:
    auto 1fr auto;

  gap:40px;

  align-items:center;
}

.footer-brand-box{
  display:flex;
  align-items:center;
  justify-content:center;

  width:220px;
  height:62px;

  background:#fff;

  border-radius:14px;

  padding:10px 16px;
}

.footer-logo{
  width:100%;
  height:auto;
}

.footer p{
  font-size:.9rem;
}

.footer a{
  color:var(--gold-light);

  font-weight:800;
}

/* CONSENT */

.consent-banner{
  position:fixed;

  left:20px;
  right:20px;
  bottom:20px;

  z-index:9999;

  display:none;

  align-items:center;
  justify-content:space-between;

  gap:20px;

  padding:18px;

  border-radius:18px;

  background:var(--black);

  color:#fff;

  box-shadow:var(--shadow);
}

.consent-banner p{
  color:var(--muted-light);

  font-size:.9rem;
}

.consent-banner button{
  border:0;

  border-radius:999px;

  padding:10px 16px;

  font-weight:800;

  cursor:pointer;
}

#consent-accept{
  background:var(--gold);
  color:#111;
}

#consent-reject{
  background:transparent;

  color:#fff;

  border:
    1px solid rgba(255,255,255,.18);
}

/* RESPONSIVO */

@media(max-width:1060px){

  .menu{
    display:none;
  }

  .hero-grid,
  .about-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .cards-grid,
  .differentials-grid{
    grid-template-columns:
      repeat(2,1fr);
  }

  .hero h1{
    font-size:3.6rem;
  }

}

@media(max-width:760px){

  .container{
    width:min(100% - 28px, var(--container));
  }

  .nav{
    min-height:88px;
  }

  .brand-logo-box{
    width:178px;
    height:54px;

    padding:8px 12px;
  }

  .btn-header{
    display:none;
  }

  .hero{
    padding:84px 0;
  }

  .hero h1{
    font-size:2.7rem;
  }

  section{
    padding:78px 0;
  }

  .section-heading h2,
  .about h2,
  .contact h2{
    font-size:2.2rem;
  }

  .cards-grid,
  .differentials-grid,
  .contact-form,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .form-actions{
    flex-direction:column;
  }

  .form-actions .btn{
    width:100%;
  }

  .consent-banner{
    flex-direction:column;
    align-items:flex-start;
  }

}

@media(max-width:420px){

  .brand-logo-box{
    width:154px;
    height:48px;
  }

  .hero h1{
    font-size:2.25rem;
  }

  .hero-actions .btn{
    width:100%;
  }

}