@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --navy: #023f61;
  --navy-deep: #012d47;
  --blue: #03709c;
  --blue-light: #4581b2;
  --sky: #e8f5fb;
  --ice: #f3f8fb;
  --white: #ffffff;
  --ink: #102a3b;
  --muted: #5a6f7d;
  --line: #d9e5eb;
  --accent: #25d366;
  --accent-dark: #128c4a;
  --shadow-sm: 0 12px 35px rgba(2, 63, 97, 0.1);
  --shadow-lg: 0 28px 80px rgba(1, 45, 71, 0.22);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(69, 129, 178, 0.7);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(217, 229, 235, 0.85);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 35px rgba(2, 63, 97, 0.08);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

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

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  color: #375264;
  font-size: 0.91rem;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-sm {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.87rem;
}

.button-lg {
  min-height: 56px;
  padding-inline: 28px;
}

.button-block {
  width: 100%;
}

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(2, 63, 97, 0.2);
}

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

.button-accent {
  color: #073b22;
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.24);
}

.button-accent:hover {
  color: var(--white);
  background: var(--accent-dark);
}

.button-outline {
  color: var(--navy);
  background: transparent;
  border-color: #afc7d5;
}

.button-outline:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 800;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.text-link-dark {
  color: var(--blue);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #a8dcf4;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(69, 129, 178, 0.4), transparent 32%),
    linear-gradient(130deg, var(--navy-deep) 0%, var(--navy) 55%, #075f86 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -140px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border: 90px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.hero-orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  top: -130px;
  left: 42%;
  width: 300px;
  height: 300px;
  background: rgba(69, 129, 178, 0.14);
}

.hero-orb-two {
  right: 8%;
  bottom: -80px;
  width: 250px;
  height: 250px;
  background: rgba(37, 211, 102, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.95fr);
  align-items: center;
  gap: 72px;
  padding-block: 84px 96px;
}

.hero-copy {
  max-width: 650px;
}

.hero h1 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(2.75rem, 5vw, 4.85rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.hero h1 span {
  color: #76b4dc;
}

.hero-lead {
  max-width: 590px;
  margin: 26px 0 0;
  color: #d8e8f0;
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-checks {
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  list-style: none;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cfe0e9;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-checks span {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(37, 211, 102, 0.12);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-glow {
  position: absolute;
  inset: 10% 8%;
  background: rgba(91, 181, 227, 0.24);
  border-radius: 50%;
  filter: blur(55px);
}

.hero-product-card {
  position: relative;
  z-index: 2;
  width: min(100%, 510px);
  overflow: hidden;
  background: var(--white);
  border: 8px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}

.hero-product-card > img {
  width: 100%;
  aspect-ratio: 1.413 / 1;
  object-fit: cover;
}

.hero-card-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--ink);
  background: var(--white);
}

.hero-card-caption div {
  display: grid;
}

.hero-card-caption span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card-caption strong {
  color: var(--navy);
  font-size: 1.32rem;
}

.hero-card-caption a {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.floating-note {
  position: absolute;
  z-index: 3;
  min-width: 174px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(1, 45, 71, 0.24);
  backdrop-filter: blur(12px);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  color: var(--navy);
  font-size: 0.89rem;
}

.floating-note span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.floating-note-top {
  top: 10px;
  right: -18px;
}

.floating-note-bottom {
  bottom: 16px;
  left: -28px;
}

.trust-strip {
  position: relative;
  z-index: 5;
  background: var(--white);
  box-shadow: 0 -15px 40px rgba(1, 45, 71, 0.07);
}

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

.trust-grid > div {
  min-height: 132px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--navy);
  font-size: 1rem;
}

.trust-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding-block: 100px;
}

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

.local-offer {
  background: var(--white);
}

.local-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.85fr);
  align-items: center;
  gap: 76px;
}

.local-offer-visual {
  position: relative;
  overflow: hidden;
  background: var(--sky);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.local-offer-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(2, 63, 97, 0.09);
  border-radius: inherit;
  pointer-events: none;
}

.local-offer-visual img {
  width: 100%;
  aspect-ratio: 1.413 / 1;
  object-fit: cover;
}

.local-offer-visual > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 13px;
  color: #073b22;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(7, 59, 34, 0.18);
  font-size: 0.76rem;
  font-weight: 800;
}

.local-offer-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.local-offer-copy > p {
  margin: 22px 0;
  color: var(--muted);
}

.local-specs {
  margin: 28px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.local-specs > div {
  min-height: 100px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.local-specs strong {
  color: var(--blue);
  font-size: 1.24rem;
  line-height: 1.1;
}

.local-specs span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.35;
}

.local-feature-list {
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  list-style: none;
}

.local-feature-list li {
  position: relative;
  padding-left: 20px;
  color: #405a6b;
  font-size: 0.82rem;
}

.local-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.local-offer-copy > small {
  margin-top: 14px;
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
}

.section-heading {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 60px;
}

.section-heading h2,
.process-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.section-heading p,
.faq-intro > p {
  margin: 0;
  color: var(--muted);
}

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

.feature-card {
  min-height: 260px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(2, 63, 97, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: #b2d3e4;
  box-shadow: var(--shadow-sm);
}

.feature-number {
  display: block;
  color: var(--blue-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  margin: 44px 0 10px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.3;
}

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

.feature-card-highlight {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(69, 129, 178, 0.45), transparent 42%),
    var(--navy);
  border-color: var(--navy);
}

.feature-card-highlight .feature-number,
.feature-card-highlight h3,
.feature-card-highlight p {
  color: var(--white);
}

.feature-card-highlight p {
  opacity: 0.78;
}

.responsible-note {
  margin: 30px 0 0;
  padding: 18px 22px;
  color: #5a6f7d;
  background: #e8f1f5;
  border-left: 4px solid var(--blue-light);
  border-radius: 0 12px 12px 0;
  font-size: 0.8rem;
}

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

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 50px rgba(2, 63, 97, 0.07);
}

.product-image {
  overflow: hidden;
  background: #dff2fc;
}

.product-image img {
  width: 100%;
  aspect-ratio: 1.415 / 1;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(.2, .7, .2, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-content {
  padding: 28px 30px 30px;
}

.product-tag {
  display: inline-flex;
  padding: 5px 10px;
  color: var(--blue);
  background: var(--sky);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-content h3 {
  margin: 14px 0 8px;
  color: var(--navy);
  font-size: 1.65rem;
}

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

.product-content ul {
  margin: 20px 0;
  padding: 18px 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.product-content li {
  position: relative;
  padding-left: 18px;
  color: #405a6b;
  font-size: 0.84rem;
}

.product-content li + li {
  margin-top: 7px;
}

.product-content li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--blue-light);
  border-radius: 50%;
}

.product-content > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
}

.product-content > a span {
  transition: transform 0.2s ease;
}

.product-content > a:hover span {
  transform: translateX(4px);
}

.process-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 100%, rgba(69, 129, 178, 0.3), transparent 38%),
    var(--navy-deep);
}

.process-section::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 480px;
  height: 480px;
  border: 70px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 100px;
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 130px;
}

.process-copy h2 {
  color: var(--white);
}

.process-copy p {
  max-width: 530px;
  margin: 24px 0 30px;
  color: #bdd2dd;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 142px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.process-list li:first-child {
  padding-top: 0;
}

.process-list li > span {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bdebd0;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: 50%;
  font-weight: 800;
}

.process-list strong {
  display: block;
  margin: 2px 0 5px;
  font-size: 1.05rem;
}

.process-list p {
  margin: 0;
  color: #aebfca;
  font-size: 0.9rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(480px, 1fr);
  gap: 100px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro > p {
  margin: 22px 0;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  color: var(--navy);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--sky);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
  margin: -6px 48px 24px 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.contact-section {
  padding-top: 30px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 58px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 0.65fr);
  gap: 80px;
  color: var(--white);
  background:
    radial-gradient(circle at 0 100%, rgba(69, 129, 178, 0.4), transparent 38%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -130px;
  right: -130px;
  width: 360px;
  height: 360px;
  border: 58px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p {
  margin: 22px 0;
  color: #c2d6df;
}

.contact-direct {
  display: grid;
  gap: 8px;
}

.contact-direct a {
  width: fit-content;
  color: #e9f6fb;
  font-weight: 700;
}

.contact-form {
  padding: 26px;
  display: grid;
  gap: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-radius: 22px;
}

.contact-form label {
  margin-top: 5px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cddce4;
  border-radius: 11px;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--blue-light);
  outline: 3px solid rgba(69, 129, 178, 0.14);
}

.contact-form small {
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.5;
  text-align: center;
}

.form-error {
  min-height: 18px;
  margin: 0;
  color: #a72525;
  font-size: 0.74rem;
  font-weight: 700;
}

.site-footer {
  margin-top: 100px;
  padding: 72px 0 24px;
  color: #c8d9e2;
  background: #012c44;
}

.legal-hero {
  padding: 82px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-deep), var(--blue));
}

.legal-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.legal-hero p {
  margin: 18px 0 0;
  color: #d0e3ec;
}

.legal-content {
  width: min(calc(100% - 40px), 840px);
  margin: 70px auto;
}

.legal-content h2 {
  margin: 42px 0 10px;
  color: var(--navy);
  font-size: 1.35rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--blue);
  font-weight: 700;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr;
  gap: 70px;
}

.footer-brand img {
  width: 178px;
  height: auto;
}

.footer-brand p {
  max-width: 390px;
  margin: 18px 0 0;
  color: #92adbc;
  font-size: 0.86rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 0.9rem;
}

.footer-grid a,
.footer-grid span {
  color: #9fb5c1;
  font-size: 0.8rem;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #7896a6;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.72rem;
}

.footer-bottom a:hover {
  color: var(--white);
}

.whatsapp-float {
  position: fixed;
  z-index: 95;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(10, 87, 46, 0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
  background: var(--accent-dark);
  transform: translateY(-4px) scale(1.02);
}

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

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  padding: 30px;
  display: grid;
  place-items: center;
  background: rgba(1, 26, 40, 0.93);
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
}

.lightbox-close {
  position: fixed;
  z-index: 2;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.reveal {
  opacity: 1;
  transform: none;
}

.consent-banner {
  position: fixed;
  z-index: 999;
  right: 18px;
  bottom: 18px;
  width: min(430px, calc(100% - 36px));
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.consent-banner strong {
  display: block;
  color: var(--navy);
}

.consent-banner p {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 0.82rem;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.consent-actions .button {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 0.78rem;
}

.whatsapp-float > span {
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.85fr);
    gap: 40px;
  }

  .floating-note-top {
    right: -8px;
  }

  .floating-note-bottom {
    left: -8px;
  }

  .process-grid,
  .faq-layout {
    gap: 60px;
  }

  .contact-card {
    gap: 50px;
    padding: 48px;
  }
}

@media (max-width: 880px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-block: 70px 86px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    width: min(100%, 650px);
    min-height: 500px;
    margin-inline: auto;
  }

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

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

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

  .process-grid,
  .faq-layout,
  .contact-card,
  .local-offer-grid {
    grid-template-columns: 1fr;
  }

  .local-offer-visual {
    width: min(100%, 680px);
  }

  .process-copy,
  .faq-intro {
    position: static;
  }

  .contact-card {
    gap: 38px;
  }

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

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 660px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 72px;
    gap: 14px;
  }

  .brand img {
    width: 142px;
  }

  .header-cta {
    min-height: 42px;
    padding: 9px 13px;
    font-size: 0.75rem;
  }

  .hero-grid {
    padding-block: 56px 74px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.3rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-checks {
    flex-direction: column;
    gap: 10px;
  }

  .hero-visual {
    min-height: 390px;
    padding-inline: 4px;
  }

  .hero-product-card {
    border-width: 5px;
    border-radius: 23px;
    transform: none;
  }

  .hero-card-caption {
    padding: 14px 16px;
  }

  .floating-note {
    min-width: 144px;
    padding: 10px 12px;
  }

  .floating-note-top {
    top: -8px;
    right: -2px;
  }

  .floating-note-bottom {
    bottom: -12px;
    left: -2px;
  }

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

  .trust-grid > div {
    min-height: 104px;
    padding: 20px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 74px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .process-copy h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .feature-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

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

  .local-feature-list {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 230px;
    padding: 25px;
  }

  .feature-card h3 {
    margin-top: 34px;
  }

  .product-content {
    padding: 24px 22px 26px;
  }

  .process-grid,
  .faq-layout {
    gap: 46px;
  }

  .process-list li {
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }

  .process-list li > span {
    width: 48px;
    height: 48px;
  }

  .contact-section {
    padding-top: 0;
  }

  .contact-card {
    width: 100%;
    padding: 38px 22px 24px;
    border-radius: 0;
  }

  .contact-form {
    padding: 20px;
  }

  .site-footer {
    margin-top: 0;
    padding-top: 58px;
  }

  .footer-grid,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    gap: 10px;
  }

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

.not-found {
  min-height: 100vh;
  padding: 64px 20px;
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(circle at 80% 10%, #e0f2f8 0, transparent 34%), var(--ice);
}

.not-found > div {
  width: min(100%, 650px);
}

.not-found img {
  width: 230px;
  margin: 0 auto 48px;
}

.not-found > div > span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.not-found h1 {
  margin: 12px 0;
  color: var(--navy);
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.not-found p {
  max-width: 530px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.not-found .hero-actions {
  justify-content: center;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .whatsapp-float,
  .hero-actions,
  .contact-form,
  .lightbox {
    display: none !important;
  }

  .hero,
  .process-section,
  .contact-card,
  .site-footer {
    color: #000;
    background: #fff;
  }
}

/* Institutional website */
.announcement-bar {
  padding: 8px 16px;
  color: #dff8e8;
  background: #0d6f42;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.announcement-bar a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.institutional-header .header-inner {
  min-height: 86px;
}

.institutional-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.institutional-nav > a {
  position: relative;
  color: #375264;
  font-size: 0.86rem;
  font-weight: 750;
}

.institutional-nav > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.institutional-nav > a:hover::after,
.institutional-nav > a.active::after {
  transform: scaleX(1);
}

.institutional-nav > a.active {
  color: var(--navy);
}

.mobile-nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--navy);
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.mobile-nav-toggle span,
.mobile-nav-toggle::before,
.mobile-nav-toggle::after {
  content: "";
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav-toggle span {
  margin-block: 5px;
}

.mobile-nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.mobile-nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  z-index: 99;
  inset: 0;
  padding: 112px 24px 40px;
  display: none;
  align-content: start;
  gap: 7px;
  color: var(--white);
  background: rgba(1, 45, 71, 0.98);
}

.mobile-panel.is-open {
  display: grid;
}

.mobile-panel a:not(.button) {
  padding: 13px 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.08rem;
  font-weight: 750;
}

.mobile-panel .button {
  margin-top: 20px;
}

.breadcrumb {
  padding: 16px 0;
  color: #6d8390;
  background: var(--ice);
  border-bottom: 1px solid var(--line);
  font-size: 0.74rem;
}

.breadcrumb .container {
  display: flex;
  gap: 8px;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 750;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  color: var(--white);
  background: var(--navy-deep);
}

.hero-slider-viewport {
  position: relative;
  min-height: 620px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 620px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.018);
  transition: opacity 0.65s ease, visibility 0.65s ease, transform 0.85s ease;
}

.hero-slide::before,
.hero-slide::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-slide::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 45, 71, 0.98) 0%, rgba(2, 63, 97, 0.93) 46%, rgba(3, 112, 156, 0.38) 100%),
    radial-gradient(circle at 82% 22%, rgba(127, 190, 225, 0.36), transparent 35%);
}

.hero-slide::after {
  right: -180px;
  bottom: -330px;
  width: 700px;
  height: 700px;
  border: 100px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
}

.hero-slide-cromos::before {
  background:
    linear-gradient(90deg, rgba(1, 45, 71, 0.99) 0%, rgba(2, 63, 97, 0.94) 48%, rgba(10, 64, 82, 0.35) 100%),
    radial-gradient(circle at 82% 24%, rgba(37, 211, 102, 0.2), transparent 34%);
}

.hero-slide-orientacao::before {
  background:
    linear-gradient(90deg, rgba(2, 47, 73, 0.99) 0%, rgba(3, 76, 111, 0.94) 48%, rgba(69, 129, 178, 0.46) 100%),
    radial-gradient(circle at 84% 18%, rgba(232, 245, 251, 0.24), transparent 36%);
}

.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide-inner {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: 58px;
  padding-block: 66px 88px;
}

.hero-slide-copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.hero-slide h1,
.hero-slide h2 {
  margin: 0;
  max-width: 650px;
  color: var(--white);
  font-size: clamp(2.9rem, 5vw, 4.8rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.hero-slide h1 span,
.hero-slide h2 span {
  color: #7fbee1;
}

.hero-slide p {
  max-width: 610px;
  margin: 24px 0 0;
  color: #d2e2ea;
  font-size: 1.05rem;
}

.hero-slide .hero-actions {
  margin-top: 30px;
}

.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 800;
}

.hero-secondary-link span {
  transition: transform 0.2s ease;
}

.hero-secondary-link:hover span {
  transform: translateX(4px);
}

.hero-product-stage {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 470px;
}

.hero-product-stage::before {
  content: "";
  position: absolute;
  width: min(94%, 520px);
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 35px 90px rgba(1, 30, 48, 0.4);
  backdrop-filter: blur(12px);
}

.hero-product-card {
  position: relative;
  z-index: 2;
  width: min(100%, 570px);
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
  border: 7px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  box-shadow: 0 34px 80px rgba(1, 34, 54, 0.38);
  transform: perspective(900px) rotateY(-4deg) rotateX(1deg);
}

.hero-product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-slide-cromos .hero-product-card {
  aspect-ratio: 1 / 1;
  width: min(84%, 450px);
}

.hero-product-label {
  position: absolute;
  z-index: 4;
  right: 1%;
  bottom: 8%;
  padding: 11px 18px;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(1, 34, 54, 0.24);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

.hero-slider-control {
  position: absolute;
  z-index: 8;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0 0 4px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  box-shadow: 0 12px 36px rgba(0, 25, 41, 0.24);
  cursor: pointer;
  font-size: 2.3rem;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-slider-control:hover,
.hero-slider-control:focus-visible {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-50%) scale(1.05);
}

.hero-slider-prev {
  left: max(18px, calc((100vw - var(--container)) / 2 - 74px));
}

.hero-slider-next {
  right: max(18px, calc((100vw - var(--container)) / 2 - 74px));
}

.hero-slider-dots {
  position: absolute;
  z-index: 8;
  bottom: 34px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-slider-dots button.is-active {
  width: 34px;
  background: var(--accent);
  border-color: var(--accent);
}

.no-js .hero-slide:not(.is-active),
.no-js .hero-slider-control,
.no-js .hero-slider-dots {
  display: none;
}

.metric-row {
  position: relative;
  z-index: 4;
  margin-top: -28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.metric-row > div {
  padding: 25px 28px;
  border-right: 1px solid var(--line);
}

.metric-row > div:last-child {
  border-right: 0;
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  color: var(--navy);
  font-size: 1.1rem;
}

.metric-row span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.85fr);
  align-items: center;
  gap: 80px;
}

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

.split-copy h2,
.page-section-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 4.2vw, 3.75rem);
  letter-spacing: -0.048em;
  line-height: 1.08;
}

.split-copy > p {
  color: var(--muted);
}

.split-copy .button {
  margin-top: 16px;
}

.image-frame {
  position: relative;
  overflow: hidden;
  background: var(--sky);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-frame img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.product-frame img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #ffffff;
}

.image-frame-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(1, 45, 71, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 700;
}

.pill-list {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.pill-list li {
  padding: 8px 12px;
  color: var(--blue);
  background: var(--sky);
  border: 1px solid #cbe6f2;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 750;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 94px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0, rgba(69, 129, 178, 0.4), transparent 32%),
    linear-gradient(125deg, var(--navy-deep), var(--navy));
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -240px;
  width: 500px;
  height: 500px;
  border: 78px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.35rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.page-hero p {
  max-width: 710px;
  margin: 24px 0 0;
  color: #c9dde7;
  font-size: 1.05rem;
}

.page-section-title {
  max-width: 760px;
  margin-bottom: 42px;
}

.page-section-title p {
  color: var(--muted);
}

.line-card-grid,
.support-grid,
.technology-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.line-card,
.support-card,
.technology-card,
.value-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 38px rgba(2, 63, 97, 0.06);
}

.line-card img,
.support-card img {
  width: 100%;
  aspect-ratio: 1.415 / 1;
  object-fit: cover;
}

.line-card img[src*="/campaign/"] {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #ffffff;
}

.line-card-content,
.support-card-content {
  padding: 24px;
}

.line-card h3,
.support-card h3,
.technology-card h3,
.value-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.22rem;
}

.line-card p,
.support-card p,
.technology-card p,
.value-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.line-card a,
.support-card a {
  margin-top: 17px;
  display: inline-flex;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
}

.technology-card,
.value-card {
  min-height: 250px;
  padding: 28px;
}

.tech-index {
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--sky);
  border-radius: 14px;
  font-size: 0.75rem;
  font-weight: 850;
}

.value-card {
  min-height: 220px;
}

.value-card:nth-child(2) {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.value-card:nth-child(2) h3,
.value-card:nth-child(2) p {
  color: var(--white);
}

.value-card:nth-child(2) p {
  opacity: 0.75;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 0 0 40px 58px;
  border-left: 1px solid #b9ced9;
}

.timeline li:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -7px;
  width: 13px;
  height: 13px;
  background: var(--blue);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--blue-light);
}

.timeline strong {
  color: var(--navy);
  font-size: 1rem;
}

.timeline p {
  margin: 7px 0 0;
  color: var(--muted);
}

.catalog-toolbar {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  padding: 8px 13px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 750;
}

.filter-button.is-active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.catalog-item[hidden] {
  display: none;
}

.catalog-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 32px rgba(2, 63, 97, 0.06);
}

.catalog-item img {
  width: 100%;
  aspect-ratio: 1.415 / 1;
  object-fit: cover;
}

.catalog-item-content {
  padding: 20px;
}

.catalog-item-content span {
  color: var(--blue-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-item-content h3 {
  margin: 8px 0 7px;
  color: var(--navy);
}

.catalog-item-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.catalog-item-content a {
  margin-top: 16px;
  display: inline-flex;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: var(--white);
  background: linear-gradient(130deg, var(--navy-deep), var(--blue));
  border-radius: var(--radius-lg);
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -180px;
  width: 340px;
  height: 340px;
  border: 54px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.cta-band > div,
.cta-band > a {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.cta-band p {
  margin: 13px 0 0;
  color: #c9dfe8;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(470px, 1fr);
  align-items: start;
  gap: 80px;
}

.contact-info-card {
  padding: 34px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-info-card h2 {
  margin: 0;
  font-size: 1.7rem;
}

.contact-info-card p {
  color: #bed3de;
}

.contact-details {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.contact-details li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-details strong,
.contact-details span,
.contact-details a {
  display: block;
}

.contact-details strong {
  color: #8fc2dc;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details span,
.contact-details a {
  margin-top: 4px;
  color: var(--white);
  font-size: 0.9rem;
}

.institutional-form {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.institutional-form h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 1.75rem;
}

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

.form-field {
  display: grid;
  gap: 6px;
}

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

.form-field label {
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cddce4;
  border-radius: 11px;
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-light);
  outline: 3px solid rgba(69, 129, 178, 0.14);
}

.form-consent {
  color: var(--muted);
  font-size: 0.68rem;
}

.form-consent a {
  color: var(--blue);
  font-weight: 700;
}

.notice-box {
  padding: 20px 22px;
  color: #4b626f;
  background: #eaf4f8;
  border-left: 4px solid var(--blue-light);
  border-radius: 0 14px 14px 0;
  font-size: 0.82rem;
}

@media (max-width: 1080px) {
  .institutional-nav {
    gap: 17px;
  }

  .institutional-nav > a {
    font-size: 0.8rem;
  }

  .hero-slide-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
    gap: 36px;
  }

  .split-section,
  .contact-layout {
    gap: 55px;
  }
}

@media (max-width: 920px) {
  body.nav-open {
    overflow: hidden;
  }

  .institutional-nav,
  .institutional-header .header-cta {
    display: none;
  }

  .mobile-nav-toggle {
    margin-left: auto;
    display: block;
  }

  .no-js .institutional-header .header-inner {
    flex-wrap: wrap;
    padding-block: 10px;
  }

  .no-js .institutional-nav {
    width: 100%;
    margin-left: 0;
    padding: 8px 0 2px;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    order: 3;
  }

  .no-js .institutional-nav > a {
    flex: 0 0 auto;
  }

  .no-js .institutional-header .header-cta {
    margin-left: auto;
    display: inline-flex;
  }

  .no-js .mobile-nav-toggle {
    display: none;
  }

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

  .hero-slider,
  .hero-slider-viewport,
  .hero-slide,
  .hero-slide-inner {
    min-height: 790px;
  }

  .hero-slide-inner {
    align-content: center;
    gap: 24px;
    padding-block: 58px 80px;
  }

  .hero-slide-copy {
    max-width: 700px;
  }

  .hero-product-stage {
    width: min(100%, 610px);
    min-height: 330px;
    margin-inline: auto;
  }

  .hero-product-card {
    width: min(82%, 500px);
  }

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

  .metric-row > div:nth-child(2) {
    border-right: 0;
  }

  .metric-row > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .line-card-grid,
  .support-grid,
  .technology-grid,
  .value-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 660px) {
  .announcement-bar {
    font-size: 0.68rem;
  }

  .institutional-header .header-inner {
    min-height: 72px;
  }

  .hero-slider,
  .hero-slider-viewport,
  .hero-slide,
  .hero-slide-inner {
    min-height: 720px;
  }

  .hero-slide-inner {
    gap: 14px;
    padding-block: 44px 72px;
  }

  .hero-slide h1,
  .hero-slide h2,
  .page-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .hero-slide p {
    margin-top: 18px;
    font-size: 0.94rem;
  }

  .hero-slide .hero-actions {
    margin-top: 22px;
  }

  .hero-product-stage {
    min-height: 250px;
  }

  .hero-product-card {
    width: min(82%, 360px);
    border-width: 4px;
    border-radius: 20px;
  }

  .hero-slide-cromos .hero-product-card {
    width: min(64%, 280px);
  }

  .hero-product-label {
    right: 3%;
    bottom: 4%;
    padding: 8px 12px;
    font-size: 0.64rem;
  }

  .hero-slider-control {
    top: auto;
    bottom: 18px;
    width: 43px;
    height: 43px;
    font-size: 1.8rem;
    transform: none;
  }

  .hero-slider-control:hover,
  .hero-slider-control:focus-visible {
    transform: scale(1.04);
  }

  .hero-slider-prev {
    left: 18px;
  }

  .hero-slider-next {
    right: 18px;
  }

  .hero-slider-dots {
    bottom: 33px;
  }

  .metric-row {
    margin-top: -20px;
  }

  .metric-row > div {
    padding: 20px 16px;
  }

  .line-card-grid,
  .support-grid,
  .technology-grid,
  .value-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .image-frame img {
    min-height: 330px;
  }

  .page-hero {
    padding: 64px 0 72px;
  }

  .page-section-title h2,
  .split-copy h2 {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }

  .cta-band {
    padding: 36px 24px;
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .institutional-form,
  .contact-info-card {
    padding: 24px;
  }

  .gallery-all {
    columns: 2 140px;
  }

  .consent-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
}

/* Ajustes visuais — foto real de entrega */
img { display: block; }
.hero-product-card img[src*="entrega-clientes"],
.image-frame img[src*="entrega-clientes"],
.local-offer-visual img[src*="entrega-clientes"] {
  object-fit: cover;
  object-position: center;
}
.hero-product-card img[src*="entrega-clientes"] { aspect-ratio: 1 / 1; }
