:root {
  --navy-950: #061426;
  --navy-900: #0a1f38;
  --navy-800: #123454;
  --blue-700: #0a4db8;
  --blue-600: #0b63e5;
  --blue-500: #2f7bf0;
  --cyan-500: #27a7d8;
  --gold-500: #e7ad3c;
  --gold-100: #fff6df;
  --ink: #11233a;
  --muted: #586779;
  --line: #dce4ed;
  --surface: #ffffff;
  --surface-soft: #f3f7fb;
  --success: #157347;
  --danger: #b42318;
  --warning: #8b5a00;
  --shadow-sm: 0 8px 24px rgba(6, 20, 38, 0.08);
  --shadow-md: 0 20px 55px rgba(6, 20, 38, 0.14);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

::selection {
  color: #fff;
  background: var(--blue-700);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--navy-950);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding-block: var(--space-8);
}

.section--soft {
  background: var(--surface-soft);
}

.section--dark {
  color: #fff;
  background:
    radial-gradient(circle at 82% 0, rgba(47, 123, 240, 0.24), transparent 31rem),
    var(--navy-950);
}

.section--tight {
  padding-block: var(--space-6);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 var(--space-3);
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.75rem;
  height: 2px;
  content: "";
  background: var(--gold-500);
}

.section--dark .eyebrow,
.hero .eyebrow {
  color: #a8cbff;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy-950);
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: var(--space-4);
  font-size: clamp(2.55rem, 5vw, 4.9rem);
}

h2 {
  margin-bottom: var(--space-3);
  font-size: clamp(2rem, 3.8vw, 3.35rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  margin-top: 0;
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.hero h1,
.page-hero h1 {
  color: #fff;
}

.lead {
  max-width: 47rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.23rem);
}

.section--dark .lead,
.hero .lead,
.page-hero .lead {
  color: #d5e4f3;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.58fr);
  gap: var(--space-5);
  align-items: end;
  margin-bottom: var(--space-6);
}

.section-heading > :last-child {
  margin-bottom: 0;
}

.section-heading--single {
  display: block;
  max-width: 48rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(220, 228, 237, 0.85);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(6, 20, 38, 0.05);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 190px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--navy-950);
  background: #fff;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin-inline: auto;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before {
  position: absolute;
  top: -0.4rem;
}

.nav-toggle-lines::after {
  position: absolute;
  top: 0.4rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  padding: 0.7rem 0.72rem;
  color: #33465d;
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 680;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue-700);
  background: #eef5ff;
}

.site-nav .nav-cta {
  margin-left: 0.4rem;
  padding-inline: 1rem;
  color: #fff;
  background: var(--blue-600);
}

.site-nav .nav-cta:hover {
  color: #fff;
  background: var(--blue-700);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 20, 38, 0.99) 0%, rgba(6, 20, 38, 0.92) 42%, rgba(6, 20, 38, 0.3) 72%, rgba(6, 20, 38, 0.08) 100%),
    linear-gradient(0deg, rgba(6, 20, 38, 0.58), transparent 45%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.42fr);
  gap: var(--space-6);
  align-items: center;
  padding-block: var(--space-7);
}

.hero-copy {
  max-width: 52rem;
}

.hero h1 {
  max-width: 55rem;
}

.hero .lead {
  max-width: 49rem;
  font-size: clamp(1.08rem, 1.75vw, 1.32rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-5);
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--blue-600);
  box-shadow: 0 10px 24px rgba(11, 99, 229, 0.24);
  font-size: 0.96rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  color: #fff;
  background: var(--blue-700);
  box-shadow: 0 14px 30px rgba(11, 99, 229, 0.3);
  transform: translateY(-2px);
}

.button--light {
  color: var(--navy-950);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: none;
}

.button--light:hover {
  color: var(--blue-700);
  background: #f4f8ff;
}

.button--outline {
  color: var(--blue-700);
  background: transparent;
  border-color: #9fb8d7;
  box-shadow: none;
}

.button--outline:hover {
  color: #fff;
  background: var(--blue-700);
}

.button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button--full {
  width: 100%;
}

.hero-panel {
  align-self: end;
  padding: var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(6, 20, 38, 0.78);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.hero-panel strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
  font-size: 1.08rem;
}

.hero-panel p {
  margin-bottom: 0;
  color: #c9dbee;
  font-size: 0.94rem;
}

.trust-bar {
  position: relative;
  z-index: 3;
  margin-top: -3.4rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.trust-item {
  min-height: 7.2rem;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item span {
  display: inline-grid;
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 0.75rem;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-700);
  background: #eaf2ff;
  font-size: 0.78rem;
  font-weight: 850;
}

.trust-item strong {
  display: block;
  color: var(--navy-950);
  line-height: 1.25;
}

.trust-item small {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: var(--space-4);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.card:hover {
  border-color: #a9c5e8;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-code {
  display: inline-flex;
  width: max-content;
  min-width: 2.7rem;
  height: 2.7rem;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  padding-inline: 0.65rem;
  border-radius: 9px;
  color: var(--blue-700);
  background: #eaf2ff;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.card p {
  color: var(--muted);
}

.card-benefit {
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
  color: var(--ink) !important;
  font-size: 0.92rem;
  font-weight: 680;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: var(--space-4);
}

.text-link {
  color: var(--blue-700);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--navy-950);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.split--reverse > :first-child {
  order: 2;
}

.split--reverse > :last-child {
  order: 1;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.9rem 1rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  background: rgba(6, 20, 38, 0.84);
  font-size: 0.88rem;
  backdrop-filter: blur(12px);
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: var(--space-4) 0;
  padding: 0;
  list-style: none;
}

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

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

.check-list li::before {
  position: absolute;
  top: 0.26rem;
  left: 0;
  display: grid;
  width: 1.15rem;
  height: 1.15rem;
  place-items: center;
  content: "✓";
  color: var(--success);
  border-radius: 50%;
  background: #e3f5ec;
  font-size: 0.72rem;
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
}

.feature {
  padding: var(--space-4);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.feature strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--navy-950);
}

.feature p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section--dark .feature {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.section--dark .feature strong {
  color: #fff;
}

.section--dark .feature p {
  color: #c9dbee;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.audience-card {
  position: relative;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.audience-card::after {
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 12rem;
  height: 12rem;
  content: "";
  border-radius: 50%;
  background: rgba(11, 99, 229, 0.08);
}

.audience-card > * {
  position: relative;
  z-index: 1;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: var(--space-4);
}

.proof-placeholder {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-4);
  border: 1px dashed #9eb0c2;
  border-radius: var(--radius-md);
  background:
    linear-gradient(140deg, rgba(11, 99, 229, 0.08), transparent 60%),
    #fff;
}

.proof-placeholder span {
  display: inline-flex;
  width: max-content;
  margin-bottom: auto;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  color: var(--warning);
  background: var(--gold-100);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-placeholder strong {
  color: var(--navy-950);
}

.proof-placeholder p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.5rem);
  color: #fff;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(47, 123, 240, 0.55), transparent 24rem),
    var(--navy-950);
  box-shadow: var(--shadow-md);
}

.cta::after {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 17rem;
  height: 17rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.cta > * {
  position: relative;
  z-index: 1;
}

.cta h2 {
  max-width: 52rem;
  color: #fff;
}

.cta p {
  max-width: 48rem;
  color: #d5e4f3;
  font-size: 1.1rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 8rem);
  color: #fff;
  background:
    radial-gradient(circle at 78% 10%, rgba(47, 123, 240, 0.35), transparent 28rem),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.page-hero::after {
  position: absolute;
  right: -8rem;
  bottom: -11rem;
  width: 34rem;
  height: 34rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 58rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: var(--space-4);
  color: #b7cde1;
  font-size: 0.88rem;
}

.breadcrumb a {
  color: #fff;
  text-underline-offset: 4px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.34fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.content-grid article h2 {
  margin-top: var(--space-6);
}

.content-grid article h2:first-child {
  margin-top: 0;
}

.aside-card {
  position: sticky;
  top: 7rem;
  padding: var(--space-4);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.aside-card h2,
.aside-card h3 {
  font-size: 1.35rem;
}

.aside-card p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.faq-list summary {
  padding: 1.1rem 1.2rem;
  color: var(--navy-950);
  font-weight: 730;
  cursor: pointer;
}

.faq-list details p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.contact-item {
  padding: var(--space-3);
  border-left: 3px solid var(--blue-600);
  background: var(--surface-soft);
}

.contact-item strong {
  display: block;
  color: var(--navy-950);
}

.contact-item span,
.contact-item a {
  color: var(--muted);
}

.form-card {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 720;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.78rem 0.85rem;
  color: var(--ink);
  border: 1px solid #b9c7d6;
  border-radius: 9px;
  background: #fff;
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-600);
  outline: 3px solid rgba(11, 99, 229, 0.15);
  outline-offset: 0;
}

.field-note,
.privacy-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.privacy-note {
  margin-block: var(--space-3);
}

.form-status {
  display: none;
  margin-top: var(--space-3);
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 650;
}

.form-status.is-visible {
  display: block;
}

.form-status[data-state="success"] {
  color: var(--success);
  background: #e7f6ee;
}

.form-status[data-state="error"] {
  color: var(--danger);
  background: #ffebe8;
}

.form-status[data-state="pending"] {
  color: var(--warning);
  background: var(--gold-100);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.legal-content {
  max-width: 52rem;
}

.legal-content h2 {
  margin-top: var(--space-6);
  font-size: 1.8rem;
}

.pending-note {
  padding: 1rem 1.1rem;
  color: var(--warning);
  border-left: 4px solid var(--gold-500);
  background: var(--gold-100);
}

.site-footer {
  padding-top: var(--space-7);
  color: #c8d8e8;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: var(--space-5);
  padding-bottom: var(--space-6);
}

.footer-brand img {
  width: 190px;
  margin-bottom: var(--space-3);
  border-radius: 5px;
}

.footer-brand p {
  max-width: 23rem;
}

.site-footer h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #c8d8e8;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9fb4c8;
  font-size: 0.86rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 90;
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  gap: 0.6rem;
  padding: 0.78rem 1rem;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #157d4c;
  box-shadow: 0 14px 34px rgba(6, 20, 38, 0.28);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.whatsapp-float::before {
  content: "WA";
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.whatsapp-float:hover {
  color: #fff;
  background: #10673e;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: var(--space-5);
  color: #fff;
  background:
    radial-gradient(circle at 70% 20%, rgba(47, 123, 240, 0.36), transparent 28rem),
    var(--navy-950);
}

.error-card {
  max-width: 46rem;
  text-align: center;
}

.error-code {
  display: block;
  margin-bottom: 1rem;
  color: #8ebcff;
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.error-card h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

@media (max-width: 1080px) {
  .site-nav a {
    padding-inline: 0.48rem;
    font-size: 0.86rem;
  }

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

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

@media (max-width: 860px) {
  .section {
    padding-block: var(--space-7);
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: 5.25rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    padding: 1.25rem;
    overflow-y: auto;
    background: #fff;
  }

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

  .site-nav a {
    padding: 0.9rem 1rem;
    font-size: 1rem;
  }

  .site-nav .nav-cta {
    margin: 0.5rem 0 0;
  }

  .hero,
  .hero-inner {
    min-height: 680px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(6, 20, 38, 0.98), rgba(6, 20, 38, 0.82)),
      linear-gradient(0deg, rgba(6, 20, 38, 0.68), transparent);
  }

  .hero-inner,
  .section-heading,
  .split,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

  .split--reverse > :first-child,
  .split--reverse > :last-child {
    order: initial;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .proof-placeholder {
    min-height: 12rem;
  }

  .aside-card {
    position: static;
  }
}

@media (max-width: 620px) {
  :root {
    --space-7: 3.5rem;
    --space-8: 4.5rem;
  }

  .container {
    width: min(100% - 1.35rem, var(--container));
  }

  .header-inner {
    min-height: 4.6rem;
  }

  .brand img {
    width: 150px;
  }

  .site-nav {
    top: 4.6rem;
  }

  .hero {
    min-height: 690px;
  }

  .hero-inner {
    min-height: 690px;
    align-items: end;
    padding: 6rem 0 6.5rem;
  }

  .hero-media img {
    object-position: 65% center;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.55rem);
  }

  .hero-actions .button,
  .button-row .button {
    width: 100%;
  }

  .trust-bar {
    margin-top: -2.8rem;
  }

  .trust-grid,
  .card-grid,
  .feature-grid,
  .audience-grid,
  .check-list--columns,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .field--full {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 1rem 5.8rem;
  }

  .whatsapp-float {
    right: 0.7rem;
    bottom: 0.7rem;
    left: 0.7rem;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Página inicial — direção visual premium, mobile-first */
.home-v2 {
  --home-navy: #071827;
  --home-navy-2: #0b263f;
  --home-blue: #0b5bd3;
  --home-blue-dark: #08469f;
  --home-ink: #132436;
  --home-muted: #607084;
  --home-line: #dbe3ec;
  --home-soft: #f3f6f9;
  --home-whatsapp: #168a4b;
  padding-top: 4.6rem;
  color: var(--home-ink);
  background: #fff;
}

.home-v2 :focus-visible {
  outline-color: #6ca5f4;
}

.home-v2 .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(7, 24, 39, 0.98);
  box-shadow: 0 10px 30px rgba(1, 14, 27, 0.14);
}

.home-v2 .header-inner {
  min-height: 4.6rem;
}

.home-v2 .brand {
  padding: 0.25rem 0.55rem;
  border-radius: 0.4rem;
  background: #fff;
}

.home-v2 .brand img {
  width: 145px;
}

.home-v2 .nav-toggle {
  display: inline-grid;
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: transparent;
}

.home-v2 .site-nav {
  position: fixed;
  top: 4.6rem;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  align-content: start;
  gap: 0.25rem;
  padding: 1.25rem;
  overflow-y: auto;
  background: var(--home-navy);
}

.home-v2 .site-nav.is-open {
  display: grid;
}

.home-v2 .site-nav a {
  padding: 0.9rem 1rem;
  color: #dbe8f5;
  font-size: 1rem;
  font-weight: 650;
}

.home-v2 .site-nav a:hover,
.home-v2 .site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.home-v2 .site-nav .nav-cta {
  margin: 0.65rem 0 0;
  color: #fff;
  background: var(--home-blue);
}

.home-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 90% 15%, rgba(11, 91, 211, 0.22), transparent 20rem),
    linear-gradient(145deg, var(--home-navy), #091f34);
}

.home-hero::after {
  position: absolute;
  right: -8rem;
  bottom: -8rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  padding-block: 4.5rem 3.5rem;
}

.home-kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  color: var(--home-blue);
  font-size: 0.75rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-kicker span {
  width: 1.8rem;
  height: 2px;
  background: #5d9aef;
}

.home-kicker--light {
  color: #8bb9f8;
}

.home-hero h1 {
  max-width: 13.5ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.45rem, 11.5vw, 4.8rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.home-hero-lead {
  max-width: 43rem;
  margin: 1.4rem 0 0;
  color: #c6d3df;
  font-size: 1.05rem;
  line-height: 1.65;
}

.home-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.home-v2 .button {
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.85rem 1.15rem;
  border-radius: 0.45rem;
  box-shadow: none;
  font-weight: 740;
}

.home-v2 .home-button-primary {
  background: var(--home-blue);
}

.home-v2 .home-button-primary:hover {
  background: var(--home-blue-dark);
}

.home-v2 .home-button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}

.home-v2 .home-button-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.home-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 2rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
}

.home-hero-meta li {
  padding-right: 0.7rem;
}

.home-hero-meta strong,
.home-hero-meta span {
  display: block;
}

.home-hero-meta strong {
  color: #fff;
  font-size: 0.9rem;
}

.home-hero-meta span {
  margin-top: 0.15rem;
  color: #91a4b7;
  font-size: 0.7rem;
  line-height: 1.35;
}

.home-photo-placeholder {
  position: relative;
  display: flex;
  min-height: 19rem;
  align-items: flex-end;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  background:
    linear-gradient(135deg, transparent 48%, rgba(255, 255, 255, 0.08) 49%, rgba(255, 255, 255, 0.08) 51%, transparent 52%),
    linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.06) 49%, rgba(255, 255, 255, 0.06) 51%, transparent 52%),
    #102d47;
  background-size: 4rem 4rem;
}

.home-photo-placeholder::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(transparent 32%, rgba(7, 24, 39, 0.92));
}

.home-photo-placeholder > div,
.home-photo-index {
  position: relative;
  z-index: 1;
}

.home-photo-placeholder > div {
  max-width: 29rem;
  padding-left: 1rem;
  border-left: 2px solid #6ca5f4;
}

.home-photo-placeholder strong {
  display: block;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.home-photo-placeholder p {
  margin: 0.45rem 0 0;
  color: #b8c8d8;
  font-size: 0.85rem;
  line-height: 1.5;
}

.home-photo-index {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  font-weight: 750;
}

.home-trust {
  border-bottom: 1px solid var(--home-line);
  background: #fff;
}

.home-trust-grid {
  display: grid;
}

.home-trust article {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--home-line);
}

.home-trust article:last-child {
  border-bottom: 0;
}

.home-trust article > span {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  color: var(--home-blue);
  border: 1px solid #b9d0ee;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}

.home-trust strong,
.home-trust p {
  display: block;
}

.home-trust strong {
  font-size: 0.92rem;
}

.home-trust p {
  margin: 0.15rem 0 0;
  color: var(--home-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.home-section {
  padding-block: 4.5rem;
}

.home-section--soft {
  background: var(--home-soft);
}

.home-section--navy {
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(11, 91, 211, 0.18), transparent 25rem),
    var(--home-navy);
}

.home-section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.home-section h2,
.home-final h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(2rem, 8.5vw, 3.45rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.home-section-heading > p,
.home-section-lead {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.7;
}

.home-service-grid {
  display: grid;
  gap: 0.8rem;
}

.home-service-card {
  position: relative;
  min-height: 15.5rem;
  padding: 1.4rem;
  border: 1px solid var(--home-line);
  border-radius: 0.65rem;
  background: #fff;
  transition: border-color 180ms ease, transform 180ms ease;
}

.home-service-card:hover {
  border-color: #9dbce3;
  transform: translateY(-2px);
}

.home-service-card--featured {
  border-color: #bed4ef;
  background: #f5f9ff;
}

.home-service-number {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: #9aa9b8;
  font-size: 0.7rem;
  font-weight: 750;
}

.home-service-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.75rem;
  place-items: center;
  color: var(--home-blue);
  border: 1px solid #b9d0ee;
  border-radius: 0.45rem;
  font-size: 0.72rem;
  font-weight: 820;
}

.home-service-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.home-service-card p {
  margin: 0.6rem 0 1.35rem;
  color: var(--home-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.home-service-card a,
.home-text-link {
  color: var(--home-blue);
  font-size: 0.86rem;
  font-weight: 760;
  text-decoration: none;
}

.home-service-card a:hover,
.home-text-link:hover {
  color: var(--home-blue-dark);
}

.home-section-footer {
  margin-top: 1.5rem;
}

.home-condo-grid {
  display: grid;
  gap: 2.5rem;
}

.home-section--navy h2 {
  color: #fff;
}

.home-section--navy .home-section-lead {
  margin: 1.25rem 0 1.75rem;
  color: #b9c8d7;
}

.home-v2 .home-button-light {
  color: var(--home-navy);
  background: #fff;
}

.home-v2 .home-button-light:hover {
  color: var(--home-blue);
  background: #edf4fc;
}

.home-capability-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.home-capability-list article {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.8rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.home-capability-list article > span {
  color: #76a9ed;
  font-size: 0.72rem;
  font-weight: 800;
}

.home-capability-list strong {
  display: block;
  color: #fff;
}

.home-capability-list p {
  margin: 0.2rem 0 0;
  color: #a9bbcc;
  font-size: 0.85rem;
  line-height: 1.5;
}

.home-plan-grid {
  display: grid;
  gap: 1rem;
}

.home-plan-card {
  padding: 1.5rem;
  border: 1px solid var(--home-line);
  border-radius: 0.75rem;
  background: #fff;
}

.home-plan-card--primary {
  color: #fff;
  border-color: var(--home-blue);
  background: var(--home-blue);
}

.home-plan-label {
  display: inline-flex;
  margin-bottom: 1.25rem;
  color: var(--home-blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-plan-card--primary .home-plan-label {
  color: #cfe1fa;
}

.home-plan-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.home-plan-card p {
  color: var(--home-muted);
}

.home-plan-card--primary p {
  color: #dbe8f8;
}

.home-plan-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--home-line);
  list-style: none;
}

.home-plan-card--primary ul {
  border-color: rgba(255, 255, 255, 0.25);
}

.home-plan-card li::before {
  margin-right: 0.6rem;
  color: var(--home-blue);
  content: "—";
}

.home-plan-card--primary li::before {
  color: #fff;
}

.home-plan-note {
  margin: 1rem 0 0;
  color: var(--home-muted);
  font-size: 0.8rem;
}

.home-about-grid {
  display: grid;
  gap: 2.5rem;
}

.home-photo-placeholder--about {
  min-height: 23rem;
  background-color: #16324b;
}

.home-about-grid .home-section-lead {
  margin: 1.25rem 0;
}

.home-about-points {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0;
}

.home-about-points span {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--home-line);
  font-size: 0.9rem;
  font-weight: 680;
}

.home-review-grid {
  display: grid;
  gap: 0.8rem;
}

.home-review-grid article {
  padding: 1.4rem;
  border: 1px dashed #aab8c7;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.7);
}

.home-review-grid span {
  color: var(--home-blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.home-review-grid h3 {
  margin: 1.25rem 0 0.4rem;
  font-size: 1rem;
}

.home-review-grid p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.85rem;
}

.home-final {
  padding-block: 4.5rem;
  color: #fff;
  background: var(--home-navy-2);
}

.home-final-inner {
  display: grid;
  gap: 1.75rem;
}

.home-final h2 {
  color: #fff;
}

.home-final p:not(.home-kicker) {
  margin: 1rem 0 0;
  color: #bdccda;
}

.home-v2 .home-button-whatsapp,
.home-v2 .whatsapp-float {
  color: #fff;
  background: var(--home-whatsapp);
}

.home-v2 .home-button-whatsapp:hover,
.home-v2 .whatsapp-float:hover {
  background: #0f713b;
}

.home-v2 .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #05111d;
}

@media (min-width: 621px) {
  .home-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .home-trust-grid,
  .home-service-grid,
  .home-plan-grid,
  .home-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-trust article {
    padding-inline: 1rem;
    border-right: 1px solid var(--home-line);
  }

  .home-review-grid article:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 861px) {
  .home-v2 {
    padding-top: 5.35rem;
  }

  .home-v2 .header-inner {
    min-height: 5.35rem;
  }

  .home-v2 .brand img {
    width: 172px;
  }

  .home-v2 .nav-toggle {
    display: none;
  }

  .home-v2 .site-nav {
    position: static;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: visible;
    background: transparent;
  }

  .home-v2 .site-nav a {
    padding: 0.7rem 0.6rem;
    font-size: 0.86rem;
  }

  .home-v2 .site-nav .nav-cta {
    margin: 0 0 0 0.5rem;
    padding-inline: 0.9rem;
  }

  .home-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.72fr);
    align-items: center;
    gap: 4rem;
    min-height: 43rem;
    padding-block: 5.5rem;
  }

  .home-photo-placeholder--hero {
    min-height: 34rem;
  }

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

  .home-trust article {
    border-bottom: 0;
  }

  .home-trust article:last-child {
    border-right: 0;
  }

  .home-section {
    padding-block: 6.5rem;
  }

  .home-section-heading {
    grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.55fr);
    gap: 4rem;
    align-items: end;
    margin-bottom: 3rem;
  }

  .home-section-heading h2 {
    max-width: 18ch;
  }

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

  .home-condo-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(22rem, 0.72fr);
    gap: 6rem;
    align-items: center;
  }

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

  .home-plan-card {
    min-height: 25rem;
    padding: 2rem;
  }

  .home-about-grid {
    grid-template-columns: minmax(20rem, 0.8fr) minmax(0, 1fr);
    gap: 5rem;
    align-items: center;
  }

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

  .home-review-grid article:last-child {
    grid-column: auto;
  }

  .home-final-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 4rem;
  }

  .home-final-inner h2 {
    max-width: 19ch;
  }
}

@media (min-width: 1120px) {
  .home-v2 .site-nav a {
    padding-inline: 0.8rem;
    font-size: 0.9rem;
  }

  .home-hero h1 {
    font-size: 4.45rem;
  }
}

/* Home final — imagens institucionais e acabamento visual */
.home-hero-visual,
.home-about-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 0.8rem;
  background: #102d47;
  box-shadow: 0 24px 60px rgba(1, 14, 27, 0.28);
}

.home-hero-visual {
  min-height: 22rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.home-hero-visual::after,
.home-about-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 24, 39, 0.88));
}

.home-hero-visual img,
.home-about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-visual img {
  position: absolute;
  inset: 0;
  object-position: 58% center;
}

.home-hero-visual figcaption,
.home-about-visual figcaption {
  position: absolute;
  right: 1.15rem;
  bottom: 1.15rem;
  left: 1.15rem;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
  padding-left: 0.9rem;
  color: #fff;
  border-left: 2px solid #73aaf2;
}

.home-hero-visual figcaption span,
.home-about-visual figcaption strong {
  font-size: 0.88rem;
  font-weight: 760;
}

.home-hero-visual figcaption small,
.home-about-visual figcaption small {
  color: #c1cfdd;
  font-size: 0.68rem;
  line-height: 1.45;
}

.home-service-card:has(.home-service-media) {
  padding-top: 0;
}

.home-service-media {
  width: calc(100% + 2.8rem);
  max-width: none;
  height: 10.5rem;
  margin: 0 -1.4rem 1.35rem;
  border-radius: 0.6rem 0.6rem 0 0;
  object-fit: cover;
}

.home-service-card:has(.home-service-media) .home-service-number {
  top: 0.8rem;
  right: 0.8rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: rgba(7, 24, 39, 0.86);
  backdrop-filter: blur(8px);
}

.home-service-card:has(.home-service-media) .home-service-icon {
  margin-bottom: 1.15rem;
}

.home-about-visual {
  min-height: 25rem;
  box-shadow: 0 20px 50px rgba(7, 24, 39, 0.16);
}

.home-about-visual img {
  position: absolute;
  inset: 0;
}

.home-about-visual figcaption span {
  color: #d1dde8;
  font-size: 0.82rem;
}

@media (min-width: 861px) {
  .home-hero-visual {
    min-height: 34rem;
  }

  .home-service-media {
    height: 11.5rem;
  }

  .home-about-visual {
    min-height: 34rem;
  }
}
/* Home final mobile — imagem contextual no primeiro viewport */
@media (max-width: 860px) {
  .home-v2 .home-hero {
    background:
      linear-gradient(180deg, rgba(7, 24, 39, 0.94), rgba(7, 24, 39, 0.88)),
      url("/assets/images/hero-portao-condominio-concept.jpg?v=20260731-1") 62% center / cover no-repeat;
  }
}
/* Home final desktop — primeira dobra completa */
@media (min-width: 861px) {
  .home-hero-grid {
    min-height: 39rem;
    padding-block: 3.5rem;
  }

  .home-hero h1 {
    max-width: 15ch;
    font-size: clamp(3.45rem, 4.5vw, 4rem);
  }

  .home-hero-visual {
    min-height: 30rem;
  }
}
/* Home final — WhatsApp compacto sem cobrir conteúdo */
.home-v2 .whatsapp-float {
  right: 1rem;
  bottom: 1rem;
  left: auto;
  width: 3.8rem;
  height: 3.8rem;
  min-height: 3.8rem;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  font-size: 0;
}

.home-v2 .whatsapp-float::before {
  content: "WA";
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}
/* Internal premium v1 */
.internal-v2 {
  --navy-950: #071827;
  --navy-900: #0b263f;
  --blue-700: #08469f;
  --blue-600: #0b5bd3;
  --ink: #132436;
  --muted: #607084;
  --line: #dbe3ec;
  --surface-soft: #f3f6f9;
  padding-top: 4.7rem;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
}

.internal-v2 :focus-visible {
  outline-color: #79aef0;
}

.internal-v2 .site-header {
  position: fixed;
  inset: 0 0 auto;
  min-height: 4.7rem;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(7,24,39,.97);
  box-shadow: 0 8px 28px rgba(2,13,24,.16);
}

.internal-v2 .header-inner { min-height: 4.7rem; }
.internal-v2 .brand { padding: .2rem .42rem; border-radius: .55rem; background: rgba(255,255,255,.96); }
.internal-v2 .brand img { width: 148px; }
.internal-v2 .site-nav a { color: #d8e4ef; }
.internal-v2 .site-nav a:hover,
.internal-v2 .site-nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.1); }
.internal-v2 .site-nav .nav-cta { color: #fff; background: var(--blue-600); }
.internal-v2 .site-nav .nav-cta:hover { background: var(--blue-700); }
.internal-v2 .nav-toggle { color: #fff; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.06); }

.internal-v2 .page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 10%, rgba(11,91,211,.3), transparent 28rem),
    linear-gradient(125deg, #071827 0%, #0b263f 100%);
}

.internal-v2 .page-hero::after {
  position: absolute;
  right: -8rem;
  bottom: -14rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  content: "";
}

.internal-v2 .page-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 31rem;
  padding-block: 4.5rem 5rem;
}

.internal-v2 .breadcrumb { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2.2rem; color: #aebfce; font-size: .8rem; }
.internal-v2 .breadcrumb a { text-decoration: none; }
.internal-v2 .breadcrumb a:hover { color: #fff; }
.internal-v2 .page-hero .eyebrow { color: #9cc3f4; }
.internal-v2 .page-hero .eyebrow::before { background: #6fa8ec; }
.internal-v2 .page-hero h1 { max-width: 19ch; margin-bottom: 1.2rem; font-size: clamp(2.65rem, 5.2vw, 4.4rem); letter-spacing: -.045em; }
.internal-v2 .page-hero .lead { max-width: 48rem; color: #c7d5e2; font-size: clamp(1.05rem, 1.6vw, 1.23rem); }

.internal-v2 .section { padding-block: clamp(4.2rem, 7vw, 6.5rem); }
.internal-v2 .section-heading h2 { max-width: 19ch; }
.internal-v2 .content-grid { display: grid; gap: 3rem; }
.internal-v2 .prose-content > h2 { margin-top: 3.3rem; font-size: clamp(1.8rem, 3vw, 2.65rem); }
.internal-v2 .prose-content > h2:first-of-type { margin-top: 0; }
.internal-v2 .check-list { display: grid; gap: .65rem; padding: 0; list-style: none; }
.internal-v2 .check-list li { position: relative; padding-left: 1.55rem; }
.internal-v2 .check-list li::before { position: absolute; top: .68em; left: 0; width: .48rem; height: .48rem; border-radius: 50%; background: var(--blue-600); content: ""; }
.internal-v2 .check-list--columns { grid-template-columns: 1fr; }

.internal-v2 .card-grid,
.internal-v2 .feature-grid,
.internal-v2 .related-grid,
.internal-v2 .audience-grid { display: grid; gap: 1rem; }

.internal-v2 .card,
.internal-v2 .feature,
.internal-v2 .related-card,
.internal-v2 .audience-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: .7rem;
  background: #fff;
  box-shadow: 0 8px 22px rgba(7,24,39,.045);
}

.internal-v2 .card { position: relative; padding-top: 3.8rem; }
.internal-v2 .card-code { position: absolute; top: 1.35rem; left: 1.5rem; color: var(--blue-600); font-size: .72rem; font-weight: 820; letter-spacing: .1em; }
.internal-v2 .card h3,
.internal-v2 .feature strong,
.internal-v2 .related-card h3 { color: var(--navy-950); }
.internal-v2 .card-benefit { color: var(--muted); font-size: .9rem; }
.internal-v2 .card-actions { margin-top: 1.25rem; }
.internal-v2 .text-link { color: var(--blue-600); font-weight: 760; text-decoration-thickness: 1px; text-underline-offset: .25rem; }
.internal-v2 .feature p,
.internal-v2 .related-card p { margin-bottom: 0; color: var(--muted); }
.internal-v2 .related-card .text-link { display: inline-block; margin-top: 1rem; }

.internal-v2 .aside-card,
.internal-v2 .form-card,
.internal-v2 .media-card {
  align-self: start;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: .75rem;
  background: #fff;
  box-shadow: 0 16px 40px rgba(7,24,39,.08);
}

.internal-v2 .aside-card img,
.internal-v2 .media-card img { width: 100%; margin-bottom: 1.1rem; border-radius: .5rem; aspect-ratio: 4 / 3; object-fit: cover; }
.internal-v2 .asset-note,
.internal-v2 .media-caption { color: var(--muted); font-size: .75rem; line-height: 1.5; }
.internal-v2 .aside-card .button + .button { margin-top: .7rem; }
.internal-v2 .pending-note { padding: 1rem; border-left: 3px solid #7f93aa; color: #42546a; background: #eef2f6; font-size: .85rem; }

.internal-v2 .faq-layout { display: grid; gap: 2rem; }
.internal-v2 .faq-list { display: grid; gap: .75rem; }
.internal-v2 .faq-list details { border: 1px solid var(--line); border-radius: .6rem; background: #fff; }
.internal-v2 .faq-list summary { padding: 1.1rem 1.25rem; color: var(--navy-950); font-weight: 760; cursor: pointer; }
.internal-v2 .faq-list details p { padding: 0 1.25rem 1.25rem; margin: 0; color: var(--muted); }

.internal-v2 .split,
.internal-v2 .contact-layout { display: grid; gap: 2.5rem; }
.internal-v2 .contact-list { display: grid; gap: .75rem; margin-top: 2rem; }
.internal-v2 .contact-item { display: grid; gap: .15rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.internal-v2 .form-grid { display: grid; gap: 1rem; }
.internal-v2 .field { display: grid; gap: .35rem; }
.internal-v2 .field label { color: var(--navy-950); font-size: .88rem; font-weight: 720; }
.internal-v2 .field input,
.internal-v2 .field select,
.internal-v2 .field textarea { width: 100%; min-height: 3.1rem; padding: .75rem .85rem; border: 1px solid #b9c5d1; border-radius: .45rem; color: var(--ink); background: #fff; }
.internal-v2 .field textarea { min-height: 9rem; resize: vertical; }
.internal-v2 .field input:focus,
.internal-v2 .field select:focus,
.internal-v2 .field textarea:focus { border-color: var(--blue-600); outline: 3px solid rgba(11,91,211,.16); }
.internal-v2 .field-note,
.internal-v2 .privacy-note { color: var(--muted); font-size: .78rem; }
.internal-v2 .honeypot { position: absolute; left: -10000px; }
.internal-v2 .form-status { display: none; margin-top: 1rem; padding: .9rem; border-radius: .45rem; font-size: .88rem; }
.internal-v2 .form-status.is-visible { display: block; }
.internal-v2 .form-status[data-state="success"] { color: #0d5d32; background: #e6f5ec; }
.internal-v2 .form-status[data-state="error"] { color: #8c1d18; background: #fbeceb; }
.internal-v2 .form-status[data-state="pending"] { color: #42546a; background: #eef2f6; }

.internal-v2 .internal-cta { padding-block: 4.5rem; color: #fff; background: var(--navy-900); }
.internal-v2 .internal-cta__inner { display: grid; gap: 1.5rem; }
.internal-v2 .internal-cta h2 { max-width: 22ch; color: #fff; }
.internal-v2 .internal-cta p { max-width: 46rem; color: #c3d1de; }
.internal-v2 .internal-cta .eyebrow { color: #9cc3f4; }
.internal-v2 .internal-cta .eyebrow::before { background: #6fa8ec; }

.internal-v2 .site-footer { color: #b8c7d5; border-top: 1px solid rgba(255,255,255,.08); background: #05111d; }
.internal-v2 .footer-grid { display: grid; gap: 2rem; padding-block: 4rem 2.5rem; }
.internal-v2 .footer-brand img { width: 170px; padding: 0; background: transparent; }
.internal-v2 .site-footer h2 { color: #fff; font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; }
.internal-v2 .footer-links { display: grid; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.internal-v2 .footer-links a { text-decoration: none; }
.internal-v2 .footer-links a:hover { color: #fff; }
.internal-v2 .footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .7rem; padding-block: 1.15rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .75rem; }

.internal-v2 .whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  left: auto;
  z-index: 90;
  display: grid;
  width: 3.45rem;
  height: 3.45rem;
  place-items: center;
  overflow: hidden;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #168a4b;
  box-shadow: 0 10px 30px rgba(5,17,29,.25);
  font-size: 0;
  text-decoration: none;
}
.internal-v2 .whatsapp-float::before { content: "WA"; font-size: .75rem; font-weight: 850; letter-spacing: .04em; }
.internal-v2 .whatsapp-float:hover { background: #0f713b; transform: translateY(-2px); }

.internal-v2 .legal-content { max-width: 52rem; }
.internal-v2 .legal-content h2 { margin-top: 2.4rem; font-size: 1.55rem; }

@media (min-width: 621px) {
  .internal-v2 .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .internal-v2 .feature-grid,
  .internal-v2 .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .internal-v2 .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .internal-v2 .field--full { grid-column: 1 / -1; }
  .internal-v2 .check-list--columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 861px) {
  .internal-v2 { padding-top: 5.35rem; }
  .internal-v2 .site-header,
  .internal-v2 .header-inner { min-height: 5.35rem; }
  .internal-v2 .brand img { width: 172px; }
  .internal-v2 .content-grid { grid-template-columns: minmax(0, 1fr) minmax(18rem, .38fr); gap: 4rem; }
  .internal-v2 .service-aside { position: sticky; top: 7rem; }
  .internal-v2 .split { grid-template-columns: minmax(0, 1fr) minmax(19rem, .55fr); gap: 4rem; align-items: start; }
  .internal-v2 .contact-layout { grid-template-columns: minmax(18rem, .7fr) minmax(0, 1fr); gap: 5rem; }
  .internal-v2 .faq-layout { grid-template-columns: minmax(16rem, .45fr) minmax(0, 1fr); gap: 5rem; }
  .internal-v2 .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .internal-v2 .related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .internal-v2 .internal-cta__inner { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 4rem; }
  .internal-v2 .footer-grid { grid-template-columns: 1.2fr .8fr .8fr 1fr; }
}

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

@media (max-width: 860px) {
  .internal-v2 .site-nav { top: 4.7rem; max-height: calc(100vh - 4.7rem); color: #fff; background: #071827; }
  .internal-v2 .site-nav a { width: 100%; }
  .internal-v2 .page-hero-inner { min-height: 0; padding-block: 3.5rem 4rem; }
  .internal-v2 .page-hero h1 { max-width: 16ch; font-size: clamp(2.25rem, 11vw, 3.35rem); }
  .internal-v2 .section-heading { display: block; }
}

@media (max-width: 620px) {
  .internal-v2 .button-row { display: grid; }
  .internal-v2 .button-row .button { width: 100%; }
  .internal-v2 .section { padding-block: 4rem; }
  .internal-v2 .card,
  .internal-v2 .feature,
  .internal-v2 .related-card,
  .internal-v2 .aside-card,
  .internal-v2 .form-card { padding: 1.25rem; }
}

/* Home heading review */
@media (max-width: 860px) {
  .home-v2 .home-hero h1 { font-size: clamp(2.45rem, 10.5vw, 3.55rem); }
}

/* Final identity and contact review */
.brand {
  overflow: hidden;
  background: rgba(255, 255, 255, .96);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
}

.brand img,
.footer-brand img {
  object-fit: contain;
}

.header-phone {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.js-whatsapp.button::before,
.js-whatsapp.nav-cta::before,
.whatsapp-float::before {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  content: "" !important;
  background: currentColor;
  -webkit-mask: url("/assets/icons/whatsapp.svg") center / contain no-repeat;
  mask: url("/assets/icons/whatsapp.svg") center / contain no-repeat;
}

.whatsapp-float::before {
  width: 1.55rem;
  height: 1.55rem;
}

/* WhatsApp UX — CTA principal e acesso flutuante */
.home-v2 .home-button-whatsapp-hero {
  min-height: 4.125rem;
  gap: 0.9rem;
  padding: 1.05rem 1.55rem;
  color: #fff;
  background: var(--home-whatsapp);
  font-size: 0.96rem;
}

.home-v2 .home-button-whatsapp-hero::before {
  width: 2rem;
  height: 2rem;
}

.home-v2 .home-button-whatsapp-hero:hover {
  color: #fff;
  background: #0f713b;
}

.home-v2 .whatsapp-float,
.internal-v2 .whatsapp-float {
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  left: auto;
  width: 4.5rem;
  height: 4.5rem;
  min-height: 4.5rem;
  border: 3px solid #fff;
  background: #168a4b;
  box-shadow: 0 12px 32px rgba(5, 17, 29, 0.3);
  transition: opacity 180ms ease, visibility 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-v2 .whatsapp-float::before,
.internal-v2 .whatsapp-float::before {
  width: 2.5rem;
  height: 2.5rem;
}

.home-v2 .whatsapp-float::after,
.internal-v2 .whatsapp-float::after {
  position: absolute;
  top: 50%;
  right: calc(100% + 0.7rem);
  width: max-content;
  max-width: 14rem;
  padding: 0.58rem 0.75rem;
  color: #132436;
  border: 1px solid #dbe3ec;
  border-radius: 0.45rem;
  background: #fff;
  box-shadow: 0 10px 26px rgba(5, 17, 29, 0.16);
  content: "Fale conosco no WhatsApp";
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translate(0.35rem, -50%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.home-v2 .whatsapp-float:hover,
.home-v2 .whatsapp-float:focus-visible,
.internal-v2 .whatsapp-float:hover,
.internal-v2 .whatsapp-float:focus-visible {
  color: #fff;
  background: #0f713b;
  box-shadow: 0 14px 36px rgba(5, 17, 29, 0.34);
  transform: translateY(-2px);
}

.home-v2 .whatsapp-float:hover::after,
.home-v2 .whatsapp-float:focus-visible::after,
.internal-v2 .whatsapp-float:hover::after,
.internal-v2 .whatsapp-float:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%);
}

@media (max-width: 620px) {
  .home-v2 .home-button-whatsapp-hero {
    width: 100%;
    min-height: 4.125rem;
    padding-inline: 1rem;
  }

  .home-v2 .whatsapp-float,
  .internal-v2 .whatsapp-float {
    right: 0.85rem;
    bottom: calc(0.85rem + env(safe-area-inset-bottom));
    width: 4.25rem;
    height: 4.25rem;
    min-height: 4.25rem;
  }

  .home-v2 .whatsapp-float.is-suppressed-by-hero {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.75rem);
  }

  .home-v2 .whatsapp-float::after,
  .internal-v2 .whatsapp-float::after {
    display: none;
  }
}
.consent-field label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .7rem;
  align-items: start;
  font-weight: 500;
}

.consent-field input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: .1rem;
  accent-color: var(--blue-600);
}

.compatibility-note {
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--blue-600);
  color: var(--ink);
  background: #eef5ff;
}

@media (max-width: 1180px) {
  .header-phone { display: none; }
}

@media (max-width: 860px) {
  .header-phone {
    display: block;
  }
}
/* Logo oficial: transparência real, sem caixa ou fundo artificial. */
.home-v2 .brand,
.internal-v2 .brand,
.brand {
  padding: 0 !important;
  overflow: visible;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
}

.home-v2 .brand img,
.internal-v2 .brand img,
.brand img,
.footer-brand img,
.internal-v2 .footer-brand img {
  padding: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain;
}
/* Long hero heading balance */
@media (min-width: 861px) {
  .home-v2 .home-hero-grid { grid-template-columns: minmax(0, 1.18fr) minmax(20rem, .72fr); }
  .home-v2 .home-hero h1 { max-width: 17.5ch; font-size: clamp(3.2rem, 4.1vw, 3.75rem); }
}

/* Imagens reais e aprovadas â€” cartÃµes de serviÃ§os */
.internal-v2 .card--with-media { padding-top: 0; overflow: hidden; }
.internal-v2 .card--with-media .service-card-media { display: block; width: calc(100% + 3rem); max-width: none; height: 13rem; margin: -1px -1.5rem 1.4rem; object-fit: cover; object-position: center; border: 0; }
.internal-v2 .card--with-media .card-code { position: static; display: block; margin-bottom: .45rem; }
@media (max-width: 640px) { .internal-v2 .card--with-media .service-card-media { height: 12rem; } }