:root {
  --navy: #09142c;
  --navy-2: #0f1f3d;
  --navy-soft: #172947;
  --gold: #d8c2a2;
  --gold-2: #f3dfbf;
  --paper: #f5f3ef;
  --paper-2: #fbf7ef;
  --white: #fff;
  --ink: #111827;
  --muted: #667085;
  --line: rgba(9, 20, 44, .12);
  --shadow: 0 22px 60px rgba(9, 20, 44, .12);
  --radius: 18px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }

.site-header,
.section,
.section-tight,
.section-soft,
.footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 243, 239, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(173, 145, 111, .16);
}

.home .site-header {
  width: 100%;
  min-height: 205px;
  padding: 22px min(9vw, 170px) 20px;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 1fr auto;
  background: #fff;
  border-bottom: 0;
  position: relative;
  backdrop-filter: none;
}

.home .brand {
  grid-column: 2;
  justify-self: center;
  align-self: start;
}

.home .brand img {
  display: none;
}

.home .brand span {
  min-width: 0;
  min-height: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: .14em;
  color: var(--navy);
  text-align: center;
  text-transform: uppercase;
}

.home .brand small {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--gold);
}

.home .desktop-nav {
  grid-column: 1 / -1;
  justify-self: center;
  align-self: end;
  padding-bottom: 0;
  gap: clamp(46px, 8vw, 150px);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(9,20,44,.68);
  font-size: 14px;
  font-weight: 500;
}

.home .header-service-actions {
  position: absolute;
  top: 28px;
  right: min(9vw, 170px);
  width: 168px;
  align-self: auto;
  margin-top: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}

.brand small {
  display: block;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--gold);
  margin-top: 2px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(9, 20, 44, .74);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover { color: var(--gold); }

.header-service-actions {
  display: grid;
  gap: 8px;
  min-width: 168px;
}

.header-service-actions span {
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.header-service-actions a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--navy-soft);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 800;
  transition: background .2s ease, transform .2s ease;
}

.header-service-actions a:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 11px 14px;
  color: var(--navy);
  font-weight: 800;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 40px));
  margin: -4px auto 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(9, 20, 44, .08);
}

.mobile-nav.open { display: grid; gap: 8px; }
.mobile-nav a { padding: 10px; font-weight: 800; color: var(--navy); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 44px; padding-inline: 18px; font-size: 14px; }
.btn-gold {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(173, 145, 111, .26);
}
.btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.07);
}
.btn.full { width: 100%; }

.section { padding-block: 74px; }
.section-tight { padding-block: 56px; }
.section-soft {
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(173, 145, 111, .2);
  box-shadow: 0 14px 45px rgba(9, 20, 44, .06);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 900;
}
.centered { text-align: center; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--serif);
  color: var(--navy);
  letter-spacing: -.02em;
}
h1 {
  font-size: clamp(44px, 7.2vw, 86px);
  line-height: .96;
  max-width: 900px;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  margin-bottom: 18px;
}
h3 {
  font-size: 22px;
  line-height: 1.12;
  color: var(--navy);
}

.hero {
  width: 100%;
  min-height: 620px;
  display: grid;
  place-items: center start;
  text-align: left;
  background:
    linear-gradient(90deg, rgba(10,35,66,.98), rgba(10,35,66,.94)),
    radial-gradient(circle at 82% 40%, rgba(173,145,111,.16), transparent 28%),
    #0a2342;
  color: rgba(255,255,255,.82);
  border-radius: 0;
  padding: 58px min(9vw, 170px) 76px;
  margin-top: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9,20,44,.9) 0%, rgba(9,20,44,.74) 48%, rgba(9,20,44,.34) 100%),
    radial-gradient(circle at 82% 40%, rgba(173,145,111,.16), transparent 30%);
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(1.02);
  background: #09142c;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  width: min(760px, 100%);
}

.hero-overline {
  display: block;
  margin-bottom: 24px;
  color: rgba(173,145,111,.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 400;
  line-height: 1.08;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.7);
  font-family: var(--sans);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 400;
  line-height: 1.45;
}

.hero-cta {
  width: auto;
  min-height: 38px;
  padding-inline: 20px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  box-shadow: none;
}

.hero-solutions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-solutions a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(173,145,111,.34);
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.04);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
  font-weight: 800;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.hero-solutions a:hover {
  transform: translateY(-2px);
  border-color: rgba(173,145,111,.72);
  background: rgba(173,145,111,.12);
}

.hero-note {
  display: block;
  margin-top: 34px;
  color: rgba(255,255,255,.58);
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: .04em;
}

.service-picker {
  padding-block: 48px 36px;
  text-align: center;
}
.service-picker h2 {
  max-width: 680px;
  margin: 8px auto 28px;
  font-size: clamp(28px, 3.2vw, 44px);
}
.service-picker-grid {
  width: min(720px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.service-choice {
  min-height: 190px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px 22px;
  border: 1px solid rgba(173,145,111,.22);
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 16px 36px rgba(9,20,44,.06);
  color: var(--navy);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
  position: relative;
}
.service-choice:hover {
  transform: translateY(-4px);
  border-color: rgba(173,145,111,.58);
  background: #fff;
  box-shadow: 0 22px 46px rgba(9,20,44,.1);
}
.service-choice:focus-visible {
  outline: 3px solid rgba(173,145,111,.45);
  outline-offset: 4px;
}
.service-choice:hover .service-choice-icon,
.service-choice:focus-visible .service-choice-icon {
  transform: translateY(-2px) scale(1.03);
}
.service-choice:hover .service-choice-link::after,
.service-choice:focus-visible .service-choice-link::after {
  transform: translateX(3px);
}
.service-choice-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--navy);
  padding: 8px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(173,145,111,.24);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-choice-icon svg {
  width: 52px;
  height: 52px;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-choice-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
  filter: saturate(.9) contrast(1.04);
}
.service-choice strong {
  font-size: 20px;
  line-height: 1.1;
}
.service-choice small {
  max-width: 260px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.service-choice-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(9,20,44,.06);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}
.service-choice-link::after {
  content: "→";
  color: var(--gold);
  transition: transform .2s ease;
}

.real-showcase {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  padding-block: 34px 44px;
}
.real-showcase-head h2 {
  margin: 8px 0 12px;
  max-width: 340px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}
.real-showcase-head p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.real-showcase-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  grid-template-rows: repeat(2, 180px);
  gap: 12px;
}
.real-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(173,145,111,.2);
  background: #fff;
  box-shadow: 0 18px 42px rgba(9,20,44,.09);
}
.real-photo-large {
  grid-row: span 2;
}
.real-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.94) contrast(1.02);
}

.trusted {
  margin-top: 28px;
  text-align: center;
}
.home-clean {
  padding-block: 44px 54px;
  display: grid;
  gap: 34px;
}
.home-clean .eyebrow {
  margin-bottom: -8px;
}
.home-clean .logo-row {
  width: min(880px, 100%);
  margin-inline: auto;
  padding: 0;
  gap: 22px;
}
.clean-statement {
  width: min(920px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding-top: 26px;
  border-top: 1px solid rgba(9, 20, 44, .1);
}
.clean-statement span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 900;
}
.clean-statement p {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.18;
}
.clean-cta {
  width: min(920px, 100%);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(9, 20, 44, .1);
}
.clean-cta span {
  color: var(--muted);
  font-weight: 700;
}
.clean-cta a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(9, 20, 44, .14);
}
.about-home {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  padding-block: 76px 62px;
}
.about-home-head {
  position: sticky;
  top: 28px;
}
.about-home-head h2 {
  max-width: 520px;
  margin-top: 14px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.02;
}
.about-home-copy {
  display: grid;
  gap: 20px;
  padding-left: clamp(24px, 4vw, 56px);
  border-left: 1px solid rgba(173,145,111,.34);
}
.about-home-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.72;
}
.about-home-copy strong {
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(9,20,44,.1);
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.18;
}
.client-strip {
  padding-block: 34px 44px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  border-top: 1px solid rgba(9,20,44,.1);
}
.client-strip-head .eyebrow {
  margin-bottom: 10px;
}
.client-strip-head span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.client-strip .logo-row {
  padding: 18px 24px;
  border: 1px solid rgba(9,20,44,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.56);
  box-shadow: 0 16px 34px rgba(9,20,44,.05);
}
.client-strip .logo-row img {
  height: 46px;
  opacity: .86;
}
.home .clean-cta {
  margin-block: 0 44px;
}
.logo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: center;
}
.logo-row img {
  width: 100%;
  height: 64px;
  object-fit: contain;
  filter: saturate(.88);
  mix-blend-mode: multiply;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}
.section-head h2 { max-width: 720px; }

.service-grid,
.plans-compare,
.benefits,
.steps,
.info-band,
.work-info {
  display: grid;
  gap: 16px;
}
.service-grid { grid-template-columns: repeat(2, 1fr); }
.plans-compare { grid-template-columns: repeat(3, 1fr); }
.benefits, .steps, .info-band, .work-info { grid-template-columns: repeat(4, 1fr); }

.card,
.plan-card,
.benefits article,
.steps article,
.info-band article,
.work-info article,
.builder-card,
.quote-card,
.faq details {
  border-radius: var(--radius);
  border: 1px solid rgba(9,20,44,.1);
  background: rgba(255,255,255,.76);
  box-shadow: 0 14px 38px rgba(9, 20, 44, .07);
}

.service-card {
  padding: 34px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card.dark {
  background: var(--navy);
  color: rgba(255,255,255,.76);
}
.service-card.dark h3 { color: var(--white); }
.card-kicker {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 12px;
}
.text-link {
  color: var(--gold);
  font-weight: 900;
  margin-top: 12px;
}

.about {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 34px;
  align-items: start;
}
.about-copy p {
  color: var(--muted);
  font-size: 17px;
}
blockquote {
  margin: 24px 0 0;
  padding: 20px;
  border: 1px solid rgba(173,145,111,.42);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.18;
}

.home .about {
  padding-block: 54px 34px;
}

.home .final-cta {
  padding-block: 50px 64px;
}

.info-band {
  margin-block: 18px;
}
.info-band article {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-left: 1px solid rgba(173,145,111,.3);
  border-radius: 0;
  padding: 4px 22px;
}
.info-band span,
.work-info span,
.plan-card span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 8px;
}
.info-band strong { display: block; color: var(--navy); margin-bottom: 6px; }
.info-band p, .work-info p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.work-info.section-soft {
  padding: 16px;
}

.work-info article {
  min-height: auto;
  padding: 14px 16px;
  box-shadow: none;
}

.work-info p {
  font-size: 13px;
  line-height: 1.35;
}

.final-cta {
  text-align: center;
}
.final-cta p {
  max-width: 620px;
  margin-inline: auto;
  color: var(--muted);
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: stretch;
  padding-top: 32px;
  padding-bottom: 34px;
}
.service-hero h1 {
  font-size: clamp(34px, 4.8vw, 58px);
  color: var(--navy);
  max-width: 850px;
  margin-bottom: 16px;
}
.service-hero p {
  max-width: 660px;
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 18px;
}
.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.service-hero-actions .text-link {
  margin-top: 0;
}
.hero-summary {
  display: grid;
  align-content: center;
  gap: 0;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid rgba(173,145,111,.26);
  background: rgba(255,255,255,.7);
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(9, 20, 44, .06);
}
.hero-summary span {
  padding: 10px 0;
  border-bottom: 1px solid rgba(9,20,44,.08);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}
.hero-summary span:last-child { border-bottom: 0; }

.steps {
  grid-template-columns: repeat(3, 1fr);
  padding: 14px;
  gap: 10px;
}
.steps article,
.benefits article,
.work-info article {
  padding: 14px 16px;
}
.steps article {
  border-radius: 12px;
  box-shadow: none;
}
.steps span {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 6px;
  font-size: 12px;
}
.steps strong,
.benefits strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}
.steps p, .benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.plan-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.plan-card.featured {
  background: var(--navy);
  color: rgba(255,255,255,.76);
  transform: none;
}
.plan-card.featured h3 { color: #fff; }
.plan-card p {
  color: inherit;
  margin-bottom: 16px;
}
.plan-card a {
  margin-top: auto;
  color: var(--gold);
  font-weight: 900;
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}
.builder-disclosure {
  border-radius: var(--radius);
  border: 1px solid rgba(9,20,44,.1);
  background: rgba(255,255,255,.76);
  box-shadow: 0 14px 38px rgba(9, 20, 44, .07);
  overflow: hidden;
}
.builder-disclosure summary {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
}
.builder-disclosure summary::-webkit-details-marker { display: none; }
.builder-disclosure summary small {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.builder-disclosure summary strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}
.builder-disclosure summary em {
  flex: 0 0 auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}
.builder-disclosure summary em::before {
  content: "Abrir " attr(data-label);
}
.builder-disclosure summary em {
  font-size: 0;
}
.builder-disclosure summary em::before {
  font-size: 13px;
}
.builder-disclosure[open] summary {
  border-bottom: 1px solid rgba(9,20,44,.09);
}
.builder-disclosure[open] summary em::before {
  content: "Fechar " attr(data-label);
}
.builder-disclosure > .builder-layout {
  padding: 22px;
}
.builder-card,
.quote-card {
  padding: 22px;
}
.quote-card {
  position: sticky;
  top: 98px;
}
.field-label,
.builder-block strong {
  display: block;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 10px;
}
.number-input {
  width: 100%;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 16px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  font-size: 18px;
}
.builder-block { margin-top: 22px; }
.hint { color: var(--muted); margin-bottom: 12px; }
.chip-grid,
.day-tabs,
.item-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip,
.item-button,
.day-button {
  min-height: 42px;
  border: 1px solid rgba(9,20,44,.12);
  border-radius: 999px;
  padding: 0 14px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}
.chip.active,
.day-button.active,
.item-button.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.item-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.item-button {
  min-height: 58px;
  border-radius: 14px;
  text-align: left;
  justify-content: flex-start;
}
.item-button small {
  display: block;
  color: var(--gold);
  margin-top: 2px;
  font-weight: 800;
}
.item-button.active small { color: var(--gold-2); }

.quote-lines {
  display: grid;
  gap: 12px;
  margin: 14px 0;
}
.quote-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(9,20,44,.09);
  color: var(--muted);
  font-size: 14px;
}
.quote-line strong { color: var(--navy); text-align: right; }
.quote-note {
  color: var(--muted);
  font-size: 13px;
}

.faq {
  max-width: 860px;
}
.faq details {
  padding: 18px 20px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}
.faq p { color: var(--muted); margin: 12px 0 0; }

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: start;
  padding-block: 34px;
  border-top: 1px solid rgba(9,20,44,.12);
  color: var(--muted);
  font-size: 14px;
}
.footer strong { color: var(--navy); }
.footer a {
  display: block;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 8px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(34,197,94,.32);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }
  .desktop-nav,
  .header-cta,
  .header-service-actions,
  .site-header > .btn { display: none; }
  .menu-toggle { display: inline-flex; justify-self: end; }

  .hero,
  .service-hero,
  .builder-layout,
  .about,
  .about-home,
  .client-strip {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-block: 76px;
    text-align: left;
  }
  .hero-copy {
    justify-items: start;
  }
  .hero-summary { max-width: 620px; }
  .quote-card { position: static; }
  .real-showcase {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 30px 34px;
  }
  .real-showcase-head h2 {
    max-width: 560px;
  }
  .real-showcase-head p:last-child {
    max-width: 620px;
  }
  .real-showcase-grid {
    grid-template-rows: repeat(2, 150px);
  }
  .service-grid,
  .plans-compare {
    grid-template-columns: 1fr;
  }
  .plans-compare {
    gap: 10px;
  }
  .plan-card,
  .plan-card.featured {
    min-height: auto;
    transform: none;
  }
  .benefits,
  .steps,
  .info-band,
  .work-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .section-tight,
  .section-soft,
  .footer {
    width: min(100% - 28px, 1180px);
  }
  .site-header {
    min-height: 72px;
    gap: 10px;
  }
  .home .site-header {
    width: 100%;
    min-height: 72px;
    padding: 10px 16px;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    position: relative;
  }
  .home .brand {
    grid-column: auto;
    justify-self: start;
  }
  .brand img {
    width: 42px;
    height: 42px;
  }
  .home .brand img {
    display: none;
  }
  .brand span {
    font-size: 13px;
  }
  .home .brand span {
    min-width: 0;
    min-height: 0;
    padding: 0;
    font-size: 22px;
    letter-spacing: .12em;
  }
  .brand small {
    font-size: 9px;
  }
  .home .brand small {
    font-size: 8px;
    letter-spacing: .2em;
  }
  .section { padding-block: 46px; }
  .section-tight { padding-block: 28px; }
  .section-soft { padding: 22px; }

  .hero {
    border-radius: 0;
    width: 100%;
    min-height: calc(100vh - 72px);
    padding: 40px 24px 52px;
    background:
      linear-gradient(90deg, rgba(10,35,66,.98), rgba(10,35,66,.94)),
      radial-gradient(circle at 85% 20%, rgba(173,145,111,.14), transparent 32%),
      #0a2342;
  }
  h1 {
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1;
  }
  h2 {
    font-size: clamp(28px, 9vw, 38px);
  }
  .hero h1 {
    font-size: clamp(40px, 12vw, 54px);
    line-height: 1.1;
    margin-bottom: 22px;
  }
  .hero-overline {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: .16em;
  }
  .hero p:not(.eyebrow) {
    max-width: 340px;
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.45;
  }
  .service-hero p {
    font-size: 16px;
  }
  .service-hero {
    gap: 14px;
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .service-hero h1 {
    font-size: clamp(32px, 9.8vw, 44px);
    line-height: 1.02;
  }
  .service-hero-actions {
    gap: 8px;
  }
  .hero-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    padding: 10px;
    border-radius: 14px;
    gap: 0;
  }
  .hero-summary span {
    display: grid;
    place-items: center;
    min-height: 44px;
    padding: 4px 6px;
    border-bottom: 0;
    border-right: 1px solid rgba(9,20,44,.08);
    text-align: center;
    font-size: 10px;
    line-height: 1.2;
  }
  .hero-summary span:last-child {
    border-right: 0;
  }
  .hero-cta {
    width: auto;
    min-height: 40px;
    padding-inline: 20px;
    font-size: 14px;
  }
  .hero-note {
    max-width: 260px;
    margin-top: 26px;
    font-size: 14px;
  }
  .hero-solutions {
    gap: 8px;
    margin-top: 22px;
  }
  .hero-solutions a {
    min-height: 32px;
    padding-inline: 12px;
    font-size: 10px;
    letter-spacing: .07em;
  }
  .service-picker {
    padding-block: 34px 24px;
  }
  .service-picker h2 {
    margin-bottom: 18px;
    font-size: clamp(26px, 8vw, 34px);
  }
  .service-picker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .service-choice {
    min-height: 174px;
    padding: 16px 10px;
    border-radius: 14px;
  }
  .service-choice-icon {
    width: 68px;
    height: 68px;
    padding: 7px;
  }
  .service-choice-icon img {
    width: 100%;
    height: 100%;
  }
  .service-choice strong {
    font-size: 16px;
  }
  .service-choice small {
    font-size: 12px;
    line-height: 1.35;
  }
  .service-choice-link {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 10px;
  }
  .real-showcase {
    padding-block: 28px 32px;
    gap: 14px;
  }
  .real-showcase-head h2 {
    max-width: 340px;
    font-size: clamp(28px, 8.4vw, 36px);
  }
  .real-showcase-head p:last-child {
    font-size: 13px;
    line-height: 1.45;
  }
  .real-showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 120px;
    gap: 8px;
  }
  .real-photo {
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(9,20,44,.08);
  }
  .real-photo-large {
    grid-column: span 2;
    grid-row: auto;
  }
  .home-clean {
    padding-block: 34px 42px;
    gap: 24px;
  }
  .about-home {
    padding-block: 44px 36px;
    gap: 22px;
  }
  .about-home-head {
    position: static;
  }
  .about-home-head h2 {
    font-size: clamp(32px, 10vw, 44px);
  }
  .about-home-copy {
    gap: 16px;
    padding-left: 0;
    border-left: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(173,145,111,.28);
  }
  .about-home-copy p {
    font-size: 15px;
    line-height: 1.62;
  }
  .about-home-copy strong {
    font-size: 22px;
  }
  .client-strip {
    padding-block: 28px 34px;
    gap: 18px;
  }
  .client-strip .logo-row {
    border-radius: 18px;
    padding: 14px;
  }
  .home-clean .logo-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }
  .home-clean .logo-row img,
  .client-strip .logo-row img {
    height: 36px;
  }
  .clean-statement {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 20px;
  }
  .clean-statement p {
    font-size: 23px;
  }
  .clean-cta {
    display: grid;
    gap: 12px;
  }
  .clean-cta a {
    width: fit-content;
  }
  .btn {
    min-height: 50px;
  }
  .final-cta .btn,
  .builder-layout .btn,
  .site-header .btn {
    width: 100%;
  }
  .logo-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }
  .logo-row img {
    height: 42px;
  }
  .section-head {
    display: block;
  }
  .service-card {
    min-height: auto;
    padding: 24px;
  }
  .benefits,
  .steps,
  .info-band,
  .work-info {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }
  .steps {
    padding: 8px;
    border-radius: 14px;
    gap: 5px;
  }
  .steps article,
  .benefits article {
    padding: 9px 6px;
    border-radius: 10px;
  }
  .steps span {
    margin-bottom: 4px;
    font-size: 10px;
  }
  .steps strong,
  .benefits strong {
    font-size: 10px;
    line-height: 1.2;
  }
  .steps p,
  .benefits p {
    display: none;
  }
  .info-band article {
    border-left: 0;
    border-top: 1px solid rgba(173,145,111,.28);
    padding: 16px 0 0;
  }
  .work-info.section-soft {
    padding: 10px;
  }
  .work-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .work-info article {
    padding: 10px 9px;
    border-radius: 12px;
  }
  .work-info span {
    margin-bottom: 4px;
    font-size: 8px;
    letter-spacing: .08em;
  }
  .work-info p {
    font-size: 11px;
    line-height: 1.25;
  }
  .plans-compare {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }
  .plan-card {
    padding: 12px 8px;
    border-radius: 14px;
    min-height: 150px;
    box-shadow: 0 10px 24px rgba(9, 20, 44, .06);
  }
  .plan-card span {
    font-size: 8px;
    letter-spacing: .08em;
  }
  .plan-card h3 {
    font-family: var(--sans);
    font-size: 12px;
    line-height: 1.22;
  }
  .plan-card p,
  .plan-card a {
    font-size: 10px;
    line-height: 1.35;
  }
  .plan-card p {
    margin-bottom: 10px;
  }
  .builder-card,
  .quote-card {
    padding: 18px;
  }
  .builder-layout {
    gap: 10px;
  }
  .builder-disclosure summary {
    min-height: auto;
    padding: 18px;
    align-items: flex-start;
  }
  .builder-disclosure summary strong {
    font-family: var(--sans);
    font-size: 18px;
    line-height: 1.18;
  }
  .builder-disclosure summary em {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 0;
    white-space: nowrap;
  }
  .builder-disclosure > .builder-layout {
    padding: 12px;
  }
  .item-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .item-button {
    min-height: 54px;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.15;
  }
  .item-button small {
    font-size: 10px;
  }
  .chip,
  .day-button,
  .item-button {
    font-size: 13px;
  }
  .day-tabs {
    gap: 6px;
  }
  .day-button,
  .chip {
    min-height: 36px;
    padding: 0 10px;
    font-size: 11px;
  }
  .footer {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 88px;
  }
  .whatsapp-float {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
  }
}
