:root{
  --navy:#0d2b4e;
  --navy-2:#163e68;
  --blue-soft:#edf4fa;
  --gold:#c99a2e;
  --gold-2:#e4b84c;
  --bg:#f7f4ef;
  --card:#ffffff;
  --text:#14233a;
  --muted:#637083;
  --stroke:rgba(13,43,78,.12);
  --shadow:0 18px 45px rgba(13,43,78,.12);
  --radius:20px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
}

/* TOPO */

.topbar{
  position:sticky;
  top:0;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--stroke);
  z-index:20;
}

.topbar__inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand__logo{
  width:54px;
  height:auto;
}

.brand__text{
  display:flex;
  flex-direction:column;
  line-height:1;
}

.brand__title{
  font-family:Georgia,serif;
  font-size:28px;
  color:var(--gold);
  letter-spacing:1px;
}

.brand__subtitle{
  font-family:Georgia,serif;
  font-size:13px;
  color:var(--gold);
  letter-spacing:4px;
  margin-top:3px;
}

.brand__tagline{
  margin-top:6px;
  font-size:9px;
  letter-spacing:4px;
  color:var(--navy);
}

/* MENU */

.nav{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:14px;
  font-weight:800;
}

.nav a{
  color:var(--navy);
  position:relative;
  padding:28px 0;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:20px;
  width:0;
  height:3px;
  background:var(--gold);
  border-radius:999px;
  transition:.22s ease;
}

.nav a:hover::after,
.nav a.active::after{
  width:100%;
}

/* BOTÕES */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  padding:12px 22px;
  border-radius:12px;
  background:var(--navy);
  color:#fff;
  font-weight:800;
  border:1px solid transparent;
  box-shadow:0 12px 25px rgba(13,43,78,.18);
  transition:.2s ease;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 30px rgba(13,43,78,.22);
}

.btn--ghost,
.btn--outline{
  background:transparent;
  color:var(--navy);
  border-color:rgba(201,154,46,.65);
  box-shadow:none;
}

.btn--gold{
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  color:var(--navy);
}

.btn--top{
  min-height:44px;
  white-space:nowrap;
}

/* HERO */

.hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 10% 20%,rgba(201,154,46,.13),transparent 28%),
    linear-gradient(90deg,#ffffff 0%,#f8f4ed 48%,#dce7ef 100%);
  padding:62px 0 72px;
}

.hero__grid{
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:48px;
  align-items:center;
}

.eyebrow,
.section-kicker{
  display:inline-block;
  color:var(--gold);
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  margin-bottom:8px;
}

h1,
h2,
h3{
  color:var(--navy);
  margin-top:0;
}

h1{
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(44px,5.5vw,74px);
  line-height:.98;
  letter-spacing:-.03em;
  margin-bottom:20px;
}

h2{
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(28px,3vw,38px);
  line-height:1.1;
  margin-bottom:12px;
}

h3{
  font-size:19px;
  line-height:1.25;
  margin-bottom:10px;
}

.gold-line,
.small-line{
  width:76px;
  height:4px;
  background:var(--gold);
  border-radius:999px;
  margin:0 0 26px;
}

.small-line{
  width:42px;
  height:3px;
  margin-bottom:20px;
}

.lead{
  max-width:560px;
  margin:0 0 28px;
  color:#35445a;
  font-size:clamp(17px,2vw,21px);
}

.hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:34px;
}

/* FOTO DA DIREITA */

.hero__visual{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:420px;
}

.hero__image{
  width:100%;
  max-width:420px;
  display:block;
  object-fit:cover;
  border-radius:24px;
  box-shadow:0 20px 60px rgba(13,43,78,.12);
}

/* ITENS DE CONFIANÇA */

.trust-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  max-width:640px;
}

.trust-item{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--navy);
  font-size:13px;
  font-weight:800;
}

.trust-item .mini-icon,
.mini-icon{
  width:34px;
  height:34px;
  object-fit:contain;
  flex:0 0 auto;
}

/* SEÇÕES */

.section{
  padding:72px 0;
  background:#fff;
}

.section--soft{
  background:
    radial-gradient(circle at top left,rgba(201,154,46,.09),transparent 28%),
    var(--bg);
}

.split{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:58px;
  align-items:start;
}

p{
  color:#344257;
}

.cards-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.cards-grid--four{
  grid-template-columns:repeat(4,1fr);
}

.service-card{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:0 12px 30px rgba(13,43,78,.07);
  transition:.2s ease;
}

.service-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
}

.service-icon{
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  border:2px solid rgba(201,154,46,.55);
  border-radius:16px;
  margin-bottom:18px;
}

.service-icon img{
  width:46px;
  height:46px;
  object-fit:contain;
  display:block;
  margin:0;
}

.service-card p{
  margin-bottom:0;
  color:#4c5a6d;
}

/* FAQ */

.faq{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:40px;
}

.faq-list{
  display:grid;
  gap:12px;
}

details{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:18px 20px;
  box-shadow:0 10px 28px rgba(13,43,78,.06);
}

summary{
  cursor:pointer;
  color:var(--navy);
  font-weight:900;
}

details p{
  margin-bottom:0;
}

/* CTA */

.cta-section{
  background:#fff;
  padding-top:28px;
}

.cta-card{
  min-height:132px;
  padding:28px 34px;
  border-radius:20px;
  background:linear-gradient(135deg,var(--navy),#174675);
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:22px;
  box-shadow:var(--shadow);
}

.cta-card h2,
.cta-card p{
  color:#fff;
  margin-bottom:0;
}

.cta-card p{
  opacity:.9;
}

.cta__icon{
  width:54px;
  height:54px;
  flex:0 0 auto;
}

/* RODAPÉ */

.footer{
  background:var(--navy);
  color:rgba(255,255,255,.78);
  padding:26px 0;
}

.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  font-size:14px;
}

/* WHATSAPP FLUTUANTE */

.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  width:58px;
  height:58px;
  border-radius:50%;
  background:#25D366;
  display:grid;
  place-items:center;
  box-shadow:0 12px 30px rgba(0,0,0,.18);
  border:2px solid #fff;
  z-index:50;
}

.wa-float svg{
  width:30px;
  height:30px;
  fill:white;
}

/* RESPONSIVO TABLET */

@media (max-width:980px){
  .topbar__inner{
    flex-wrap:wrap;
  }

  .nav{
    display:flex;
    gap:14px;
    overflow-x:auto;
    white-space:nowrap;
    width:100%;
    order:3;
    padding:0 0 8px;
    font-size:13px;
  }

  .nav a{
    padding:8px 0;
  }

  .nav a::after{
    bottom:2px;
  }

  .hero__grid,
  .split,
  .faq{
    grid-template-columns:1fr;
  }

  .hero__visual{
    min-height:auto;
    justify-content:center;
    margin-top:24px;
  }

  .hero__image{
    max-width:340px;
  }

  .cards-grid--four{
    grid-template-columns:repeat(2,1fr);
  }

  .trust-row{
    grid-template-columns:repeat(3,1fr);
    gap:10px;
  }

  .trust-item{
    display:flex;
    align-items:flex-start;
    font-size:11px;
    gap:10px;
  }

  .trust-item .mini-icon,
  .mini-icon{
    width:36px;
    height:36px;
    
    min-width:36px;
    min-height:36px;
  }
}

/* RESPONSIVO CELULAR */

@media (max-width:640px){
  .container{
    width:min(100% - 28px,1180px);
  }

  .topbar__inner{
    min-height:74px;
  }

  .brand__logo{
    width:56px;
  }

  .brand__title{
    font-size:24px;
  }

  .brand__subtitle{
    font-size:11px;
    letter-spacing:3px;
  }

  .brand__tagline{
    font-size:8px;
    letter-spacing:3px;
  }

  .btn--top{
    display:none;
  }

  .hero{
    padding:42px 0 58px;
  }

  h1{
    font-size:42px;
  }

  .hero__actions{
    gap:12px;
  }

  .hero__visual{
    display:flex;
    justify-content:center;
    margin-top:22px;
  }

  .hero__image{
    max-width:260px;
    
  }

  .trust-row{
    grid-template-columns:repeat(3,1fr);
    gap:10px;
  }

  .trust-item{
    display:flex;
    flex-direction:row;
    align-items:flex-start;
    text-align:left;
    font-size:10px;
    gap:6px;
  }
    .trust-item .mini-icon,
  .mini-icon{
    width:24px;
    height:24px;
    min-width:24px;
    flex:0 0 24px;
    
  }

  .cards-grid,
  .cards-grid--four{
    grid-template-columns:1fr;
  }

  .cta-card{
    align-items:flex-start;
    flex-direction:column;
  }
}

@media (max-width:640px){
  .trust-row{
    display:grid !important;
    grid-template-columns:repeat(3, 1fr) !important;
    gap:10px !important;
  }

  .trust-row .trust-item{
    display:grid !important;
    grid-template-columns:24px 1fr !important;
    align-items:start !important;
    text-align:left !important;
    column-gap:6px !important;
  }

  .trust-row .trust-item .mini-icon{
    width:24px !important;
    height:24px !important;
    min-width:24px !important;
    grid-column:1 !important;
  }

  .trust-row .trust-item span{
    grid-column:2 !important;
    display:block !important;
  }
}
