﻿:root {
  --black: #080808;
  --graphite: #111315;
  --panel: #171a1d;
  --panel-2: #1e2226;
  --gold: #d99b32;
  --gold-2: #f0b85a;
  --white: #f7f4ee;
  --muted: #c7c4bc;
  --line: rgba(217, 155, 50, 0.22);
  --danger: #461816;
  --whatsapp: #20c466;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(217, 155, 50, 0.12), transparent 30%),
    linear-gradient(180deg, #080808 0%, #111315 48%, #080808 100%);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.7rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.45rem);
}

h3 {
  font-size: 1.08rem;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

li + li {
  margin-top: 0.42rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(8, 8, 8, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  min-width: fit-content;
}

.brand-logo {
  width: clamp(170px, 18vw, 250px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.footer-logo {
  width: min(260px, 100%);
  max-height: none;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.02rem;
  text-transform: uppercase;
}

.brand-text small {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.5vw, 1.15rem);
  font-size: 0.9rem;
  color: #ece7dc;
}

.main-nav a {
  padding: 0.65rem 0;
  color: rgba(247, 244, 238, 0.86);
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold-2);
}

.main-nav .nav-cta {
  padding: 0.78rem 1rem;
  color: #0b0b0b;
  font-weight: 800;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #141414;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold-2);
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.6rem, 8vw, 7.4rem) 0;
  scroll-margin-top: 120px;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.88fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-top: 8.5rem;
}

.hero-copy {
  display: grid;
  gap: 1.2rem;
}

.eyebrow {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker {
  color: var(--gold-2);
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  font-weight: 800;
  line-height: 1.18;
}

.hero-text {
  max-width: 680px;
  font-size: clamp(1.03rem, 1.7vw, 1.22rem);
}

.hero-actions,
.center-cta,
.dual {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.05rem;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn.primary {
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--gold), #ffd17d);
  box-shadow: 0 14px 32px rgba(217, 155, 50, 0.22);
}

.btn.secondary {
  color: var(--gold-2);
  border-color: rgba(217, 155, 50, 0.55);
  background: rgba(217, 155, 50, 0.07);
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.image-shell {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  border: 1px solid rgba(217, 155, 50, 0.2);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.image-shell::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.74));
  pointer-events: none;
}

.image-shell img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.08);
}

.hero-media {
  aspect-ratio: 0.88;
}

.hero-media figcaption {
  position: absolute;
  inset: auto 1.1rem 1.1rem;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid rgba(217, 155, 50, 0.28);
  border-radius: 6px;
  background: rgba(8, 8, 8, 0.62);
  backdrop-filter: blur(10px);
}

.hero-media figcaption strong {
  color: var(--white);
}

.hero-media figcaption span {
  color: var(--muted);
  font-size: 0.9rem;
}

.impact-strip {
  width: 100%;
  padding: clamp(2.3rem, 4.5vw, 3.3rem) 1rem;
  background:
    linear-gradient(90deg, rgba(217, 155, 50, 0.08), rgba(217, 155, 50, 0.2), rgba(217, 155, 50, 0.08)),
    #111111;
  border-block: 1px solid var(--line);
}

.impact-strip p {
  width: min(1050px, 100%);
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(1.16rem, 2vw, 1.65rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.35;
}

.section-heading {
  display: grid;
  gap: 0.85rem;
  max-width: 820px;
  margin-bottom: 2.1rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.card-grid,
.solution-grid,
.compact-grid,
.risk-grid,
.location-grid,
.contract-grid,
.package-grid,
.gallery-grid,
.timeline-grid,
.wide-card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.six,
.solution-grid,
.compact-grid,
.risk-grid,
.contract-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.solution-grid article,
.compact-grid article,
.location-grid article,
.risk-grid article,
.list-card,
.contract-grid article,
.package-card,
.timeline-grid article,
.leader-card,
.contact-cards article,
.contact-form,
.privacy-box {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.info-card,
.solution-grid article,
.compact-grid article,
.location-grid article,
.risk-grid article {
  min-height: 190px;
  padding: 1.25rem;
}

.info-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.card-index {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
}

.fine {
  color: #f0d5a5;
  font-size: 0.87rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split-copy {
  display: grid;
  gap: 1.05rem;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.mini-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(217, 155, 50, 0.26);
  border-radius: 999px;
  color: #f5d9ab;
  background: rgba(217, 155, 50, 0.08);
  font-size: 0.86rem;
}

.leader-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: 1rem;
  align-items: stretch;
}

.leader-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.role {
  color: #f3c879;
  font-weight: 750;
}

.credential-row {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.credential-row span {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--white);
  background: rgba(217, 155, 50, 0.08);
  font-weight: 800;
}

.portrait-panel {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.65rem;
  min-height: 460px;
  padding: 1.5rem;
  border: 1px solid rgba(217, 155, 50, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(217, 155, 50, 0.16), transparent 45%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 12px),
    #151515;
  box-shadow: var(--shadow);
  text-align: center;
}

.leader-photo {
  width: min(100%, 300px);
  aspect-ratio: 4 / 5;
  border: 2px solid rgba(217, 155, 50, 0.55);
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
}

.portrait-panel strong {
  font-size: 1.4rem;
}

.portrait-panel span {
  color: var(--muted);
}

.wide-card-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.list-card {
  grid-column: span 2;
  min-height: 100%;
  padding: 1.3rem;
}

.list-card:nth-child(4),
.list-card:nth-child(5) {
  grid-column: span 3;
}

.list-card h3,
.contract-grid h3,
.package-card h3 {
  margin-bottom: 0.85rem;
}

.dark-band {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100% - var(--max)) / 2));
  background: linear-gradient(180deg, rgba(217, 155, 50, 0.04), rgba(255, 255, 255, 0.02));
  border-block: 1px solid rgba(255, 255, 255, 0.07);
}

.quote {
  padding: 1rem;
  border-left: 3px solid var(--gold);
  color: var(--white);
  background: rgba(217, 155, 50, 0.09);
  font-weight: 850;
}

.stacked-lists {
  display: grid;
  gap: 0.8rem;
}

.stacked-lists article {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.risk-section {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(70, 24, 22, 0.28), rgba(8, 8, 8, 0)),
    #0d0d0d;
}

.risk-grid article {
  border-color: rgba(255, 98, 83, 0.18);
  background: linear-gradient(180deg, rgba(70, 24, 22, 0.65), rgba(20, 20, 20, 0.78));
}

.center-cta {
  justify-content: center;
  margin-top: 2rem;
  text-align: center;
}

.center-cta p {
  width: 100%;
  color: var(--white);
  font-weight: 850;
  font-size: 1.1rem;
}

.timeline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-grid article {
  min-height: 210px;
  padding: 1.25rem;
}

.timeline-grid span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 6px;
  color: #0c0c0c;
  background: var(--gold);
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 0.65rem;
  padding-left: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1rem;
  content: "âœ“";
  color: var(--gold-2);
  font-weight: 900;
}

.package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.package-card {
  position: relative;
  display: grid;
  gap: 0.8rem;
  align-content: start;
  min-height: 100%;
  padding: 1.25rem;
}

.package-card.featured {
  border-color: rgba(217, 155, 50, 0.55);
  background:
    linear-gradient(180deg, rgba(217, 155, 50, 0.16), rgba(255, 255, 255, 0.035)),
    #171717;
}

.badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  color: #0c0c0c;
  background: var(--gold-2);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  margin: 0;
  border: 1px solid rgba(217, 155, 50, 0.22);
  border-radius: 8px;
  background: var(--panel);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08);
}

.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
  font-weight: 850;
}

.contract-grid article {
  min-height: 250px;
  padding: 1.25rem;
}

.feature-section {
  align-items: center;
}

.book-price {
  color: #f6d28f;
  font-weight: 900;
}

.book-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.book-facts article {
  padding: 1rem;
  border: 1px solid rgba(217, 155, 50, 0.2);
  border-radius: 8px;
  background: rgba(217, 155, 50, 0.07);
}

.book-facts h3 {
  margin-bottom: 0.45rem;
  color: var(--gold-2);
}

.book-media {
  background: #0c0c0c;
}

.book-media img {
  object-fit: contain;
  padding: 1rem;
}

.nr-section {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(217, 155, 50, 0.075), rgba(8, 8, 8, 0.15)),
    #0b0b0b;
  border-block: 1px solid rgba(217, 155, 50, 0.16);
}

.nr-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.nr-items article {
  min-height: 120px;
}

.contact-section {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100% - var(--max)) / 2));
  background: linear-gradient(180deg, rgba(217, 155, 50, 0.08), rgba(8, 8, 8, 0.95));
  border-top: 1px solid rgba(217, 155, 50, 0.18);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1rem;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-cards article {
  display: grid;
  gap: 0.45rem;
  padding: 1.2rem;
}

.contact-cards a,
.site-footer a,
.privacy-content a {
  color: #ffd58a;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 1.7rem);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--white);
  font-weight: 800;
}

.contact-form .full,
.contact-form .lgpd-note,
.contact-form .form-status,
.contact-form .whatsapp-inline {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.88rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.24);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(217, 155, 50, 0.45);
  border-color: var(--gold);
}

.field-error {
  border-color: #ff786d;
  outline: 1px solid rgba(255, 120, 109, 0.32);
}

.lgpd-note {
  font-size: 0.86rem;
}

.whatsapp-inline {
  color: #8cf0b4;
  font-weight: 800;
}

.form-status {
  min-height: 1.5rem;
  font-weight: 800;
}

.form-status.success {
  color: #8cf0b4;
}

.form-status.error {
  color: #ffb1aa;
}

.form-status.loading {
  color: #ffd58a;
}

.contact-form button[disabled] {
  cursor: wait;
  filter: grayscale(0.2);
  opacity: 0.75;
}

.site-footer {
  padding: 3rem max(1rem, calc((100% - var(--max)) / 2)) 1.2rem;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr 1.1fr;
  gap: 1.4rem;
}

.site-footer h3 {
  margin-bottom: 0.65rem;
  color: var(--gold-2);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.site-footer p + p {
  margin-top: 0.65rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  color: #9b988f;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
}

.float-whatsapp {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 1100;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 14px 32px rgba(32, 196, 102, 0.28);
}

.float-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: white;
}

.privacy-page main {
  min-height: 72vh;
}

.privacy-content {
  max-width: 880px;
  padding-top: 9rem;
}

.privacy-content h1 {
  margin: 0.8rem 0 1.1rem;
  font-size: clamp(2.35rem, 6vw, 4rem);
}

.privacy-content p + p {
  margin-top: 1rem;
}

.privacy-box {
  margin: 1.6rem 0;
  padding: 1.25rem;
}

.compact-footer {
  text-align: center;
}

@media (max-width: 1080px) {
  .hero,
  .split,
  .leader-grid,
  .nr-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .card-grid.six,
  .solution-grid,
  .compact-grid,
  .risk-grid,
  .contract-grid,
  .package-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wide-card-grid,
  .timeline-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .list-card,
  .list-card:nth-child(4),
  .list-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 880px) {
  .site-header {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    padding: 1rem;
    border-bottom: 1px solid rgba(217, 155, 50, 0.18);
    background: rgba(8, 8, 8, 0.98);
  }

  .main-nav.is-open {
    display: grid;
    grid-template-columns: 1fr;
  }

  .main-nav a {
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
  }

  .main-nav .nav-cta {
    text-align: center;
  }

  .privacy-nav {
    position: static;
    display: flex;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .section {
    scroll-margin-top: 95px;
  }

  .hero {
    padding-top: 7rem;
  }

  .brand-text small {
    display: none;
  }

  .brand-logo {
    width: clamp(150px, 42vw, 210px);
    max-height: 48px;
  }
}

@media (max-width: 680px) {
  .section {
    width: min(100% - 1.1rem, var(--max));
    padding-block: 3.8rem;
  }

  .hero {
    padding-top: 7.4rem;
  }

  .hero-actions,
  .center-cta,
  .dual {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .card-grid.six,
  .solution-grid,
  .compact-grid,
  .risk-grid,
  .contract-grid,
  .package-grid,
  .gallery-grid,
  .wide-card-grid,
  .timeline-grid,
  .location-grid,
  .footer-grid,
  .credential-row,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form .full,
  .contact-form .lgpd-note,
  .contact-form .form-status,
  .contact-form .whatsapp-inline {
    grid-column: auto;
  }

  .info-card,
  .solution-grid article,
  .compact-grid article,
  .location-grid article,
  .risk-grid article,
  .timeline-grid article,
    .contract-grid article {
    min-height: auto;
  }

  .book-facts {
    grid-template-columns: 1fr;
  }

  .image-shell img,
  .gallery-grid img {
    min-height: 300px;
  }

  .portrait-panel {
    min-height: auto;
  }

  .leader-photo {
    width: min(100%, 260px);
  }

  .hero-media {
    aspect-ratio: auto;
  }

  .float-whatsapp {
    width: 48px;
    height: 48px;
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .float-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 410px) {
  .brand-text strong {
    font-size: 0.9rem;
  }
}

/* Ajuste visual final: acabamento, responsividade e consistencia sem alterar conteudo. */
:root {
  --border: rgba(217, 155, 50, 0.18);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  --header-height: 78px;
}

html,
body {
  overflow-x: hidden;
}

section[id],
[id] {
  scroll-margin-top: 120px;
}

body {
  text-rendering: optimizeLegibility;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 4px;
}

h1 {
  font-size: clamp(3rem, 6.8vw, 6.35rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 4.6vw, 4.25rem);
  line-height: 1.06;
}

h3 {
  font-size: clamp(1.05rem, 1.55vw, 1.42rem);
  line-height: 1.22;
}

p,
li {
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.65;
}

.site-header {
  min-height: var(--header-height);
  padding: 0.7rem clamp(1rem, 3.2vw, 2.6rem);
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.96), rgba(8, 8, 8, 0.86)),
    rgba(8, 8, 8, 0.92);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.brand-logo {
  width: clamp(178px, 16.5vw, 244px);
  max-height: 56px;
  object-fit: contain;
}

.main-nav {
  gap: clamp(0.48rem, 1vw, 0.9rem);
  font-size: clamp(0.82rem, 0.86vw, 0.94rem);
  white-space: nowrap;
}

.main-nav a {
  border-radius: 6px;
}

.main-nav a:not(.nav-cta):hover {
  background: rgba(217, 155, 50, 0.07);
}

.main-nav .nav-cta {
  min-height: 44px;
  padding: 0.68rem 0.92rem;
}

.section {
  padding-top: clamp(64px, 6.4vw, 108px);
  padding-bottom: clamp(64px, 6.4vw, 108px);
}

.dark-band,
.risk-section,
.nr-section,
.contact-section {
  padding-top: clamp(64px, 6vw, 96px);
  padding-bottom: clamp(64px, 6vw, 96px);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.86fr);
  gap: clamp(1.8rem, 4vw, 3.8rem);
  padding-top: clamp(96px, 8vw, 124px);
  padding-bottom: clamp(56px, 6vw, 88px);
}

.hero-copy,
.split-copy {
  gap: clamp(0.95rem, 1.6vw, 1.28rem);
}

.hero-text,
.section-heading p,
.split-copy > p {
  max-width: 72ch;
}

.section-heading {
  gap: 0.75rem;
  max-width: 860px;
  margin-bottom: clamp(1.45rem, 3vw, 2.45rem);
}

.impact-strip {
  padding-top: clamp(34px, 4vw, 52px);
  padding-bottom: clamp(34px, 4vw, 52px);
}

.card-grid,
.solution-grid,
.compact-grid,
.risk-grid,
.location-grid,
.contract-grid,
.package-grid,
.gallery-grid,
.timeline-grid,
.wide-card-grid,
.book-facts,
.contact-cards {
  gap: clamp(0.9rem, 1.5vw, 1.35rem);
}

.info-card,
.solution-grid article,
.compact-grid article,
.location-grid article,
.risk-grid article,
.list-card,
.contract-grid article,
.package-card,
.timeline-grid article,
.leader-card,
.contact-cards article,
.contact-form,
.privacy-box,
.book-facts article,
.stacked-lists article {
  min-height: auto;
  height: auto;
  border-color: var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.022)),
    var(--panel);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.24);
}

.info-card,
.solution-grid article,
.compact-grid article,
.location-grid article,
.risk-grid article,
.timeline-grid article,
.contract-grid article,
.package-card,
.list-card {
  padding: clamp(1rem, 1.8vw, 1.45rem);
  align-content: start;
}

.info-card,
.package-card,
.timeline-grid article,
.contract-grid article,
.list-card,
.compact-grid article,
.solution-grid article,
.location-grid article,
.risk-grid article {
  display: grid;
  gap: 0.68rem;
}

.risk-grid article {
  border-color: rgba(255, 120, 109, 0.24);
  background:
    linear-gradient(145deg, rgba(70, 24, 22, 0.78), rgba(18, 18, 18, 0.82)),
    var(--danger);
}

.wide-card-grid {
  align-items: stretch;
}

.list-card {
  min-height: 0;
}

.leader-grid,
.contact-grid,
.nr-grid,
.split {
  gap: clamp(1.35rem, 3.4vw, 3.4rem);
}

.portrait-panel {
  min-height: clamp(360px, 44vw, 460px);
  padding: clamp(1rem, 2vw, 1.5rem);
}

.leader-photo {
  width: min(100%, 280px);
  object-fit: cover;
  object-position: center top;
}

img {
  max-width: 100%;
  height: auto;
}

.image-shell {
  isolation: isolate;
}

.image-shell img {
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 32vw, 410px);
  object-fit: cover;
  object-position: center;
}

.hero-media {
  aspect-ratio: 4 / 3;
}

.hero-media img {
  min-height: clamp(330px, 36vw, 480px);
}

.hero-media figcaption {
  inset: auto 1rem 1rem;
  max-width: calc(100% - 2rem);
}

.book-media {
  display: grid;
  place-items: center;
  min-height: 0;
}

.book-media::after {
  display: none;
}

.book-media img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 620px;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  object-fit: contain;
}

.gallery-grid figure {
  min-height: 0;
  aspect-ratio: 4 / 3;
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.24);
}

.gallery-grid img {
  min-height: 0;
  height: 100%;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 1rem 1.05rem;
  line-height: 1.35;
}

.nr-grid {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  align-items: center;
}

.nr-items {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nr-items article {
  min-height: 86px;
  align-content: center;
}

.package-card {
  align-content: start;
}

.package-card .btn,
.contact-form .btn {
  margin-top: auto;
}

.btn {
  min-height: 50px;
  padding: 0.84rem 1.12rem;
  border-radius: 8px;
  text-align: center;
}

.btn.primary:hover,
.btn.primary:focus-visible {
  box-shadow: 0 18px 42px rgba(217, 155, 50, 0.28);
}

.btn.secondary:hover,
.btn.ghost:hover,
.btn.secondary:focus-visible,
.btn.ghost:focus-visible {
  border-color: var(--gold-2);
  background: rgba(217, 155, 50, 0.12);
}

input,
select,
textarea {
  border-radius: 8px;
}

textarea {
  min-height: 132px;
}

.check-list li::before {
  top: 0.52rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold-2);
  content: "";
}

.contact-section {
  padding-bottom: clamp(88px, 8vw, 128px);
}

.contact-form {
  align-items: start;
}

.contact-cards article {
  min-width: 0;
}

.contact-cards a,
.site-footer a,
.privacy-content a {
  overflow-wrap: anywhere;
  word-break: normal;
}

.site-footer {
  padding-top: clamp(44px, 5vw, 72px);
}

.footer-grid {
  align-items: start;
  gap: clamp(1.4rem, 3vw, 2.4rem);
}

.footer-logo {
  width: min(330px, 100%);
  max-height: 96px;
  object-fit: contain;
}

.site-footer p {
  max-width: 48ch;
}

.footer-bottom {
  margin-top: clamp(1.5rem, 3vw, 2.4rem);
}

.float-whatsapp {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.float-whatsapp:hover,
.float-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(32, 196, 102, 0.34);
}

@media (min-width: 1280px) {
  .card-grid.six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solution-grid,
  .compact-grid,
  .risk-grid,
  .contract-grid,
  .package-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .brand-logo {
    width: clamp(154px, 28vw, 212px);
    max-height: 50px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    grid-template-columns: 1fr;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    padding: 1rem;
    white-space: normal;
    border-bottom: 1px solid rgba(217, 155, 50, 0.18);
    background: rgba(8, 8, 8, 0.98);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 0.86rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
  }

  .main-nav .nav-cta {
    text-align: center;
  }

  .hero,
  .split,
  .leader-grid,
  .nr-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  section[id],
  [id] {
    scroll-margin-top: 96px;
  }

  .section {
    width: min(100% - 1.2rem, var(--max));
    padding-top: clamp(48px, 10vw, 72px);
    padding-bottom: clamp(48px, 10vw, 72px);
  }

  .dark-band,
  .risk-section,
  .nr-section,
  .contact-section {
    padding-top: clamp(52px, 11vw, 76px);
    padding-bottom: clamp(52px, 11vw, 76px);
  }

  .hero {
    padding-top: clamp(92px, 18vw, 112px);
    padding-bottom: clamp(44px, 11vw, 68px);
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.95rem, 9vw, 3rem);
  }

  .hero-kicker {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .image-shell img,
  .hero-media img {
    min-height: clamp(250px, 68vw, 340px);
  }

  .book-media img {
    max-height: none;
  }

  .nr-items {
    grid-template-columns: 1fr;
  }

  .nr-items article {
    min-height: auto;
  }

  .gallery-grid figure {
    aspect-ratio: 16 / 11;
  }

  .footer-grid {
    gap: 1.3rem;
  }

  .float-whatsapp {
    right: 0.75rem;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.75rem);
    width: 50px;
    height: 50px;
  }

  .float-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding-inline: 0.82rem;
  }

  .brand-logo {
    width: min(58vw, 190px);
  }

  .section-heading {
    margin-bottom: 1.35rem;
  }

  .hero-actions,
  .center-cta,
  .dual {
    gap: 0.7rem;
  }

  .btn {
    min-height: 48px;
    padding-inline: 0.92rem;
  }

  .hero-media figcaption {
    position: relative;
    inset: auto;
    max-width: none;
    margin: 0;
    border-radius: 0;
    border-inline: 0;
    border-bottom: 0;
    background: rgba(8, 8, 8, 0.9);
  }

  .hero-media::after {
    display: none;
  }

  .contact-section {
    padding-bottom: 96px;
  }

  .site-footer p {
    max-width: 100%;
  }
}

/* Ajuste visual final contido: recuperar proporcao premium B2B sem alterar conteudo. */
:root {
  --max: 1240px;
  --header-height: 88px;
  --border: rgba(217, 155, 50, 0.16);
  --soft-border: rgba(255, 255, 255, 0.09);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

html,
body {
  overflow-x: hidden;
}

section[id],
[id] {
  scroll-margin-top: 112px;
}

body {
  background:
    radial-gradient(circle at 12% -8%, rgba(217, 155, 50, 0.09), transparent 28%),
    linear-gradient(180deg, #080808 0%, #111315 46%, #080808 100%);
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 4.9vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  max-width: 980px;
  font-size: clamp(2rem, 3.45vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.18rem, 1.25vw, 1.48rem);
  line-height: 1.22;
}

p,
li {
  font-size: clamp(1rem, 0.98vw, 1.08rem);
  line-height: 1.68;
}

.site-header {
  min-height: var(--header-height);
  padding: 0.82rem clamp(1.25rem, 2.8vw, 2.75rem);
  background: rgba(8, 8, 8, 0.92);
  border-bottom: 1px solid rgba(217, 155, 50, 0.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.brand-logo {
  width: clamp(198px, 15.8vw, 236px);
  max-height: 62px;
  object-fit: contain;
}

.main-nav {
  gap: clamp(0.55rem, 0.82vw, 0.88rem);
  font-size: clamp(0.88rem, 0.8vw, 0.98rem);
  font-weight: 500;
  line-height: 1.25;
}

.main-nav a {
  padding: 0.55rem 0.12rem;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--gold-2);
  background: transparent;
}

.main-nav .nav-cta {
  min-height: 48px;
  padding: 0.72rem 1rem;
  border-radius: 8px;
  box-shadow: none;
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  padding-top: clamp(80px, 6.5vw, 112px);
  padding-bottom: clamp(80px, 6.5vw, 112px);
}

.dark-band,
.risk-section,
.nr-section,
.contact-section {
  padding-top: clamp(78px, 6vw, 104px);
  padding-bottom: clamp(78px, 6vw, 104px);
}

.hero {
  min-height: auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  gap: clamp(2rem, 4.2vw, 3.4rem);
  padding-top: clamp(122px, 12vh, 138px);
  padding-bottom: clamp(72px, 6vw, 92px);
}

.hero-copy {
  gap: 1rem;
}

.hero-kicker {
  max-width: 760px;
  font-size: clamp(1.28rem, 2vw, 1.95rem);
  line-height: 1.22;
}

.hero-text,
.section-heading p,
.split-copy > p {
  max-width: 72ch;
}

.hero-actions,
.center-cta,
.dual {
  gap: 0.78rem;
}

.section-heading {
  max-width: 900px;
  gap: 0.72rem;
  margin-bottom: clamp(1.75rem, 2.8vw, 2.35rem);
}

.section-heading.centered {
  max-width: 920px;
}

.impact-strip {
  padding-top: clamp(34px, 3.6vw, 48px);
  padding-bottom: clamp(34px, 3.6vw, 48px);
}

.impact-strip p {
  max-width: 1050px;
  font-size: clamp(1.08rem, 1.65vw, 1.42rem);
  line-height: 1.42;
}

.card-grid,
.solution-grid,
.compact-grid,
.risk-grid,
.location-grid,
.contract-grid,
.package-grid,
.gallery-grid,
.timeline-grid,
.wide-card-grid,
.book-facts,
.contact-cards {
  gap: clamp(1.25rem, 2vw, 2rem);
}

.card-grid.six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-grid,
.compact-grid,
.risk-grid,
.contract-grid,
.package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.solution-grid article,
.compact-grid article,
.location-grid article,
.risk-grid article,
.list-card,
.contract-grid article,
.package-card,
.timeline-grid article,
.leader-card,
.contact-cards article,
.contact-form,
.privacy-box,
.book-facts article,
.stacked-lists article {
  min-height: 0;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.018)),
    #15181b;
  box-shadow: var(--shadow);
}

.info-card,
.solution-grid article,
.compact-grid article,
.location-grid article,
.risk-grid article,
.timeline-grid article,
.contract-grid article,
.package-card,
.list-card,
.book-facts article,
.stacked-lists article {
  padding: clamp(1.45rem, 2vw, 1.9rem);
  align-content: start;
}

.info-card,
.package-card,
.timeline-grid article,
.contract-grid article,
.list-card,
.compact-grid article,
.solution-grid article,
.location-grid article,
.risk-grid article {
  display: grid;
  gap: 0.7rem;
}

.info-card h3,
.solution-grid h3,
.compact-grid h3,
.location-grid h3,
.risk-grid h3,
.list-card h3,
.contract-grid h3,
.package-card h3,
.timeline-grid h3,
.book-facts h3,
.contact-cards h3 {
  font-size: clamp(1.18rem, 1.25vw, 1.38rem);
}

.info-card p,
.solution-grid p,
.compact-grid p,
.location-grid p,
.risk-grid p,
.list-card p,
.contract-grid p,
.package-card p,
.timeline-grid p,
.book-facts p,
.contact-cards p,
.contact-cards a {
  font-size: clamp(0.98rem, 0.92vw, 1.06rem);
}

.risk-grid article {
  border-color: rgba(217, 155, 50, 0.12);
  background:
    linear-gradient(145deg, rgba(70, 24, 22, 0.58), rgba(23, 26, 29, 0.92)),
    #171a1d;
}

.split {
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}

.split-copy {
  gap: 1rem;
}

.split-copy h2 {
  font-size: clamp(2rem, 2.7vw, 2.75rem);
  line-height: 1.08;
}

.leader-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.72fr);
  gap: clamp(1.5rem, 2.5vw, 2rem);
  align-items: stretch;
}

.leader-card {
  padding: clamp(1.65rem, 2.3vw, 2.1rem);
}

.portrait-panel {
  min-height: auto;
  padding: clamp(1.3rem, 2vw, 1.7rem);
}

.leader-photo {
  width: min(100%, 300px);
  max-height: 380px;
  object-fit: cover;
  object-position: center top;
}

.credential-row span,
.mini-tags span,
.badge {
  border-radius: 8px;
}

.image-shell {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-shell img {
  width: 100%;
  height: 100%;
  min-height: clamp(300px, 28vw, 420px);
  object-fit: cover;
  object-position: center;
}

.hero-media {
  aspect-ratio: 4 / 3;
}

.hero-media img {
  min-height: clamp(340px, 32vw, 440px);
}

.hero-media figcaption {
  inset: auto 1rem 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.9rem 1rem;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid figure {
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
}

.gallery-grid img {
  min-height: 0;
  height: 100%;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 1rem 1.05rem;
  font-size: 0.98rem;
  line-height: 1.35;
}

.book-media {
  display: grid;
  place-items: center;
  background: #0c0c0c;
}

.book-media::after {
  display: none;
}

.book-media img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 560px;
  padding: clamp(0.85rem, 1.8vw, 1.2rem);
  object-fit: contain;
}

.nr-grid {
  grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(1.5rem, 2.4vw, 2rem);
  align-items: center;
}

.nr-items {
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 1rem;
}

.nr-items article {
  min-height: auto;
  padding: 1.1rem 1.2rem;
  align-content: center;
}

.nr-items h3 {
  font-size: clamp(1rem, 0.95vw, 1.15rem);
  line-height: 1.28;
  overflow-wrap: normal;
  hyphens: none;
}

.timeline-grid article {
  min-height: 0;
}

.contract-grid article {
  min-height: 0;
}

.package-card {
  min-height: 0;
  align-content: start;
}

.package-card .btn {
  align-self: end;
  margin-top: 0.5rem;
}

.package-card.featured {
  border-color: rgba(217, 155, 50, 0.34);
  background:
    linear-gradient(145deg, rgba(217, 155, 50, 0.11), rgba(255, 255, 255, 0.028)),
    #171a1d;
}

.btn {
  width: auto;
  min-height: 48px;
  padding: 0.82rem 1.08rem;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: none;
}

.btn.primary {
  box-shadow: 0 10px 24px rgba(217, 155, 50, 0.16);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  box-shadow: 0 12px 28px rgba(217, 155, 50, 0.2);
}

.contact-grid {
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(1.5rem, 2.5vw, 2rem);
}

.contact-form {
  gap: 1rem 1.15rem;
  padding: clamp(1.45rem, 2.2vw, 2rem);
}

.contact-form button {
  justify-self: start;
  min-width: 190px;
}

input,
select,
textarea {
  min-height: 48px;
  border-radius: 8px;
}

textarea {
  min-height: 132px;
}

.site-footer {
  padding-top: clamp(46px, 4.8vw, 68px);
}

.footer-grid {
  grid-template-columns: 1.05fr 1.18fr 1.24fr 1.22fr;
  gap: clamp(1.35rem, 2.4vw, 2rem);
  align-items: start;
}

.footer-logo {
  width: min(310px, 100%);
  max-height: 90px;
  object-fit: contain;
}

.site-footer p {
  max-width: 50ch;
}

.site-footer a,
.contact-cards a,
.privacy-content a {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.float-whatsapp {
  width: 56px;
  height: 56px;
  box-shadow: 0 12px 28px rgba(32, 196, 102, 0.24);
}

.float-whatsapp svg {
  width: 31px;
  height: 31px;
}

@media (max-width: 1180px) {
  :root {
    --header-height: 76px;
  }

  section[id],
  [id] {
    scroll-margin-top: 100px;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .brand-logo {
    width: clamp(168px, 30vw, 220px);
    max-height: 54px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    grid-template-columns: 1fr;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    padding: 1rem;
    white-space: normal;
    border-bottom: 1px solid rgba(217, 155, 50, 0.18);
    background: rgba(8, 8, 8, 0.98);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 0.84rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
  }

  .main-nav .nav-cta {
    text-align: center;
  }

  .hero,
  .split,
  .leader-grid,
  .nr-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 112px;
  }

  .nr-items {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .gallery-grid,
  .card-grid.six,
  .package-grid,
  .solution-grid,
  .compact-grid,
  .risk-grid,
  .contract-grid,
  .wide-card-grid,
  .timeline-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  section[id],
  [id] {
    scroll-margin-top: 96px;
  }

  .section {
    width: min(100% - 1.25rem, var(--max));
    padding-top: clamp(58px, 11vw, 78px);
    padding-bottom: clamp(58px, 11vw, 78px);
  }

  .dark-band,
  .risk-section,
  .nr-section,
  .contact-section {
    padding-top: clamp(58px, 11vw, 78px);
    padding-bottom: clamp(58px, 11vw, 78px);
  }

  .hero {
    padding-top: clamp(104px, 18vw, 118px);
    padding-bottom: clamp(58px, 10vw, 72px);
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.55rem, 10vw, 3.75rem);
  }

  h2,
  .split-copy h2 {
    font-size: clamp(1.85rem, 7.4vw, 2.85rem);
  }

  h3 {
    font-size: clamp(1.1rem, 4.5vw, 1.35rem);
  }

  .hero-kicker {
    font-size: clamp(1.28rem, 5.4vw, 1.85rem);
  }

  .image-shell img,
  .hero-media img {
    min-height: clamp(250px, 64vw, 330px);
  }

  .book-media img {
    max-height: none;
  }

  .nr-items,
  .card-grid.six,
  .gallery-grid,
  .package-grid,
  .solution-grid,
  .compact-grid,
  .risk-grid,
  .contract-grid,
  .wide-card-grid,
  .timeline-grid,
  .location-grid,
  .footer-grid,
  .credential-row,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .gallery-grid figure {
    aspect-ratio: 16 / 11;
  }

  .contact-form button,
  .btn {
    width: 100%;
  }

  .site-footer a,
  .contact-cards a {
    overflow-wrap: anywhere;
  }

  .float-whatsapp {
    right: 0.75rem;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.75rem);
    width: 50px;
    height: 50px;
  }

  .float-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding-inline: 0.9rem;
  }

  .brand-logo {
    width: min(58vw, 188px);
  }

  .hero-actions,
  .center-cta,
  .dual {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-media figcaption {
    position: relative;
    inset: auto;
    max-width: none;
    border-radius: 0;
    border-inline: 0;
    border-bottom: 0;
    background: rgba(8, 8, 8, 0.9);
  }

  .hero-media::after {
    display: none;
  }

  .contact-section {
    padding-bottom: 98px;
  }
}

/* Polimento final leve: imagens amplas, cards delicados e fluxo mais compacto. */
:root {
  --header-height: 86px;
  --border: rgba(217, 155, 50, 0.12);
  --shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

section[id],
[id] {
  scroll-margin-top: 108px;
}

h1 {
  font-size: clamp(2.9rem, 4.6vw, 4.5rem);
  line-height: 1.03;
}

h2 {
  max-width: 920px;
  font-size: clamp(1.9rem, 3.05vw, 3.1rem);
  line-height: 1.09;
}

h3 {
  font-weight: 650;
}

p,
li {
  font-weight: 400;
}

.site-header {
  min-height: var(--header-height);
  background: rgba(8, 8, 8, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.brand-logo {
  width: clamp(210px, 16vw, 248px);
  max-height: 64px;
}

.main-nav {
  font-weight: 500;
}

.main-nav .nav-cta {
  min-height: 46px;
  box-shadow: none;
}

.section {
  padding-top: clamp(56px, 5.2vw, 86px);
  padding-bottom: clamp(56px, 5.2vw, 86px);
}

.dark-band,
.risk-section,
.nr-section,
.contact-section {
  padding-top: clamp(56px, 5vw, 82px);
  padding-bottom: clamp(56px, 5vw, 82px);
}

.hero {
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1fr);
  gap: clamp(2rem, 4vw, 3.25rem);
  padding-top: clamp(112px, 10vh, 128px);
  padding-bottom: clamp(52px, 5vw, 78px);
}

.hero-kicker {
  font-weight: 760;
}

.section-heading {
  margin-bottom: clamp(1.2rem, 2.2vw, 1.8rem);
}

.impact-strip {
  padding-top: clamp(26px, 3vw, 38px);
  padding-bottom: clamp(26px, 3vw, 38px);
}

.card-grid,
.solution-grid,
.compact-grid,
.risk-grid,
.location-grid,
.contract-grid,
.package-grid,
.gallery-grid,
.timeline-grid,
.wide-card-grid,
.book-facts,
.contact-cards {
  gap: clamp(1rem, 1.55vw, 1.55rem);
}

.info-card,
.solution-grid article,
.compact-grid article,
.location-grid article,
.risk-grid article,
.list-card,
.contract-grid article,
.package-card,
.timeline-grid article,
.leader-card,
.contact-cards article,
.contact-form,
.privacy-box,
.book-facts article,
.stacked-lists article {
  border-color: var(--border);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    #16191c;
  box-shadow: var(--shadow);
}

.info-card,
.solution-grid article,
.compact-grid article,
.location-grid article,
.risk-grid article,
.timeline-grid article,
.contract-grid article,
.package-card,
.list-card,
.book-facts article,
.stacked-lists article {
  padding: clamp(1.18rem, 1.6vw, 1.55rem);
  gap: 0.55rem;
}

.info-card h3,
.solution-grid h3,
.compact-grid h3,
.location-grid h3,
.risk-grid h3,
.list-card h3,
.contract-grid h3,
.package-card h3,
.timeline-grid h3,
.book-facts h3,
.contact-cards h3 {
  font-size: clamp(1.06rem, 1.05vw, 1.28rem);
  font-weight: 650;
}

.info-card p,
.solution-grid p,
.compact-grid p,
.location-grid p,
.risk-grid p,
.list-card p,
.contract-grid p,
.package-card p,
.timeline-grid p,
.book-facts p,
.contact-cards p,
.contact-cards a {
  font-size: clamp(0.95rem, 0.88vw, 1.02rem);
  font-weight: 400;
}

.risk-grid article {
  border-color: rgba(217, 155, 50, 0.1);
  background:
    linear-gradient(145deg, rgba(70, 24, 22, 0.42), rgba(22, 25, 28, 0.94)),
    #16191c;
}

.split {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 3.4vw, 3rem);
}

.split-copy {
  gap: 0.85rem;
}

.split-copy h2 {
  font-size: clamp(1.9rem, 2.45vw, 2.55rem);
}

.image-shell {
  border-color: rgba(217, 155, 50, 0.16);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.26);
}

.image-shell img {
  min-height: clamp(380px, 34vw, 520px);
  filter: saturate(0.98) contrast(1.04);
}

.hero-media img {
  min-height: clamp(420px, 34vw, 540px);
}

.hero-media figcaption {
  background: rgba(8, 8, 8, 0.66);
}

.leader-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
}

.leader-photo {
  width: min(100%, 340px);
  max-height: 440px;
}

.service-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.15rem;
}

.service-proof-grid figure {
  aspect-ratio: 16 / 10;
}

.service-proof-grid img {
  height: 100%;
  min-height: 260px;
}

.gallery-grid figure {
  aspect-ratio: 4 / 3.05;
}

.gallery-grid figcaption {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  font-weight: 650;
}

.book-media img {
  max-height: 620px;
}

.nr-grid {
  grid-template-columns: minmax(430px, 0.95fr) minmax(560px, 1.05fr);
}

.center-cta {
  margin-top: 1.35rem;
}

.btn {
  min-height: 46px;
  font-weight: 760;
  box-shadow: none;
}

.btn.primary {
  box-shadow: 0 8px 20px rgba(217, 155, 50, 0.14);
}

.site-footer {
  padding-top: clamp(38px, 4vw, 56px);
}

.footer-grid {
  gap: clamp(1.15rem, 2vw, 1.65rem);
}

.float-whatsapp {
  width: 54px;
  height: 54px;
  box-shadow: 0 10px 24px rgba(32, 196, 102, 0.22);
}

@media (max-width: 1180px) {
  :root {
    --header-height: 76px;
  }

  section[id],
  [id] {
    scroll-margin-top: 98px;
  }

  .hero,
  .split,
  .leader-grid,
  .nr-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 104px;
  }

  .image-shell img,
  .hero-media img {
    min-height: clamp(340px, 48vw, 480px);
  }

  .service-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  section[id],
  [id] {
    scroll-margin-top: 94px;
  }

  .section {
    padding-top: clamp(46px, 9vw, 64px);
    padding-bottom: clamp(46px, 9vw, 64px);
  }

  .dark-band,
  .risk-section,
  .nr-section,
  .contact-section {
    padding-top: clamp(46px, 9vw, 64px);
    padding-bottom: clamp(46px, 9vw, 64px);
  }

  .hero {
    padding-top: clamp(96px, 17vw, 108px);
    padding-bottom: clamp(42px, 8vw, 58px);
  }

  h1 {
    font-size: clamp(2.45rem, 9.2vw, 3.45rem);
  }

  h2,
  .split-copy h2 {
    font-size: clamp(1.75rem, 6.8vw, 2.55rem);
  }

  .image-shell img,
  .hero-media img {
    height: clamp(300px, 58vw, 430px);
    min-height: 0;
  }

  .service-proof-grid {
    grid-template-columns: 1fr;
  }

  .service-proof-grid figure {
    aspect-ratio: 16 / 9.5;
  }

  .service-proof-grid img {
    height: clamp(285px, 56vw, 430px);
    min-height: 0;
  }

  .book-media img {
    height: auto;
    max-height: 520px;
  }

  .info-card,
  .solution-grid article,
  .compact-grid article,
  .location-grid article,
  .risk-grid article,
  .timeline-grid article,
  .contract-grid article,
  .package-card,
  .list-card,
  .book-facts article,
  .stacked-lists article {
    padding: 1.12rem;
  }

  .float-whatsapp {
    width: 48px;
    height: 48px;
  }
}

/* Ajuste fino SEO/visual final - Grupo SAENG */
:root {
  --header-height: 86px;
  --border: rgba(217, 155, 50, 0.11);
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

html,
body {
  overflow-x: hidden;
}

section[id],
[id] {
  scroll-margin-top: 112px;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.85rem, 4.6vw, 4.7rem);
  line-height: 1.04;
}

h2 {
  max-width: 940px;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1.1;
}

.site-header {
  min-height: var(--header-height);
  padding: 0.72rem clamp(1rem, 3vw, 2.6rem);
  background: rgba(8, 8, 8, 0.88);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.brand-logo {
  width: clamp(205px, 16vw, 250px);
  max-height: 64px;
}

.main-nav {
  gap: clamp(0.62rem, 1.25vw, 1rem);
  font-size: clamp(0.86rem, 0.86vw, 0.96rem);
  font-weight: 500;
}

.main-nav .nav-cta {
  min-height: 44px;
  padding: 0.66rem 0.95rem;
  box-shadow: none;
}

.section {
  padding-top: clamp(58px, 5.2vw, 88px);
  padding-bottom: clamp(58px, 5.2vw, 88px);
}

.dark-band,
.risk-section,
.nr-section,
.contact-section {
  padding-top: clamp(58px, 5vw, 84px);
  padding-bottom: clamp(58px, 5vw, 84px);
}

.hero {
  min-height: auto;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1fr);
  gap: clamp(2rem, 4vw, 3.2rem);
  padding-top: clamp(112px, 11vh, 130px);
  padding-bottom: clamp(52px, 5vw, 78px);
}

.hero-kicker {
  font-size: clamp(1.28rem, 2.2vw, 2rem);
  font-weight: 700;
}

.hero-text,
.section-heading p,
.split-copy > p {
  font-size: clamp(1rem, 1.12vw, 1.12rem);
}

.section-heading {
  margin-bottom: clamp(1.15rem, 2vw, 1.7rem);
}

.impact-strip {
  padding-top: clamp(24px, 2.8vw, 36px);
  padding-bottom: clamp(24px, 2.8vw, 36px);
}

.card-grid,
.solution-grid,
.compact-grid,
.risk-grid,
.location-grid,
.contract-grid,
.package-grid,
.gallery-grid,
.timeline-grid,
.wide-card-grid,
.book-facts,
.contact-cards {
  gap: clamp(1rem, 1.45vw, 1.45rem);
}

.info-card,
.solution-grid article,
.compact-grid article,
.location-grid article,
.risk-grid article,
.list-card,
.contract-grid article,
.package-card,
.timeline-grid article,
.leader-card,
.contact-cards article,
.contact-form,
.privacy-box,
.book-facts article,
.stacked-lists article {
  border-color: var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)), #15181b;
  box-shadow: var(--shadow);
}

.info-card,
.solution-grid article,
.compact-grid article,
.location-grid article,
.risk-grid article,
.timeline-grid article,
.contract-grid article,
.package-card,
.list-card,
.book-facts article,
.stacked-lists article {
  min-height: 0;
  padding: clamp(1.05rem, 1.45vw, 1.45rem);
  gap: 0.5rem;
}

.info-card h3,
.solution-grid h3,
.compact-grid h3,
.location-grid h3,
.risk-grid h3,
.list-card h3,
.contract-grid h3,
.package-card h3,
.timeline-grid h3,
.book-facts h3,
.contact-cards h3 {
  font-size: clamp(1.04rem, 1vw, 1.24rem);
  font-weight: 620;
}

.info-card p,
.solution-grid p,
.compact-grid p,
.location-grid p,
.risk-grid p,
.list-card p,
.contract-grid p,
.package-card p,
.timeline-grid p,
.book-facts p,
.contact-cards p,
.contact-cards a {
  font-size: clamp(0.95rem, 0.86vw, 1.02rem);
  font-weight: 400;
}

.card-index,
.badge {
  font-weight: 650;
}

.credential-row,
.mini-tags span {
  font-weight: 500;
}

.credential-row {
  padding: 0.82rem 0.92rem;
}

.risk-grid article {
  border-color: rgba(217, 155, 50, 0.1);
  background: linear-gradient(145deg, rgba(70, 24, 22, 0.32), rgba(22, 25, 28, 0.96)), #15181b;
}

.split {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 3.2vw, 3rem);
}

.split-copy {
  gap: 0.82rem;
}

.split-copy h2 {
  font-size: clamp(1.9rem, 2.42vw, 2.6rem);
}

.image-shell {
  border-color: rgba(217, 155, 50, 0.16);
  box-shadow: 0 13px 34px rgba(0, 0, 0, 0.24);
}

.image-shell img {
  min-height: clamp(380px, 34vw, 520px);
  filter: saturate(1) contrast(1.04);
}

.hero-media img {
  min-height: clamp(430px, 35vw, 550px);
}

#sst .image-shell {
  order: 2;
}

#sst .split-copy {
  order: 1;
}

.leader-grid {
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
}

.leader-photo {
  width: min(100%, 360px);
  max-height: 460px;
}

.service-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.1rem;
}

.service-proof-grid figure {
  aspect-ratio: 16 / 10;
}

.service-proof-grid img {
  height: 100%;
  min-height: 270px;
}

.gallery-grid figure {
  aspect-ratio: 4 / 3;
}

.gallery-grid figcaption {
  padding: 1.05rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.book-media img {
  max-height: 640px;
}

.nr-grid {
  grid-template-columns: minmax(430px, 0.95fr) minmax(560px, 1.05fr);
}

.nr-items {
  grid-template-columns: repeat(2, minmax(250px, 1fr));
}

.nr-items article {
  min-height: auto;
  padding: 1.05rem 1.15rem;
}

.package-card.featured {
  box-shadow: 0 14px 34px rgba(217, 155, 50, 0.14);
}

.center-cta {
  margin-top: 1.3rem;
}

.btn,
.package-card .btn,
.contact-form .btn {
  min-height: 46px;
  font-weight: 720;
  box-shadow: none;
}

.btn.primary {
  box-shadow: 0 8px 18px rgba(217, 155, 50, 0.13);
}

.contact-grid {
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
}

.contact-form {
  padding: clamp(1.35rem, 2vw, 1.9rem);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 48px;
}

.site-footer {
  padding-top: clamp(38px, 4vw, 58px);
}

.footer-grid {
  grid-template-columns: 1.05fr 1.18fr 1.24fr 1.22fr;
  gap: clamp(1.2rem, 2vw, 1.65rem);
}

.site-footer a,
.contact-cards a {
  overflow-wrap: anywhere;
  word-break: normal;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 4px;
}

.float-whatsapp {
  width: 54px;
  height: 54px;
  box-shadow: 0 10px 24px rgba(32, 196, 102, 0.22);
}

@media (max-width: 1180px) {
  :root {
    --header-height: 76px;
  }

  section[id],
  [id] {
    scroll-margin-top: 98px;
  }

  .hero,
  .split,
  .leader-grid,
  .nr-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  #sst .image-shell,
  #sst .split-copy {
    order: initial;
  }

  .hero {
    padding-top: 104px;
  }

  .image-shell img,
  .hero-media img {
    min-height: clamp(340px, 48vw, 490px);
  }
}

@media (max-width: 768px) {
  section[id],
  [id] {
    scroll-margin-top: 94px;
  }

  .section,
  .dark-band,
  .risk-section,
  .nr-section,
  .contact-section {
    padding-top: clamp(46px, 9vw, 64px);
    padding-bottom: clamp(46px, 9vw, 64px);
  }

  .hero {
    padding-top: clamp(96px, 17vw, 108px);
    padding-bottom: clamp(42px, 8vw, 58px);
  }

  h1 {
    font-size: clamp(2.45rem, 9.2vw, 3.45rem);
  }

  h2,
  .split-copy h2 {
    font-size: clamp(1.75rem, 6.8vw, 2.55rem);
  }

  .image-shell img,
  .hero-media img {
    height: clamp(300px, 58vw, 430px);
    min-height: 0;
  }

  .service-proof-grid {
    grid-template-columns: 1fr;
  }

  .service-proof-grid img {
    height: clamp(285px, 56vw, 430px);
    min-height: 0;
  }

  .book-media img {
    height: auto;
    max-height: 520px;
  }

  .float-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}
