/* Rhino Technology — layout fluido, inspiração Apple (espaço, tipo, movimento suave) */
:root {
  --bg-page: #f5f5f7;
  --bg-elevated: #ffffff;
  --bg-section-alt: #fafafa;
  --bg-navy: #1d1d1f;
  --bg-navy-deep: #000000;
  --text: #1d1d1f;
  --text-on-dark: #f5f5f7;
  --muted: #6e6e73;
  --muted-on-dark: #a1a1a6;
  --accent: #0d5c63;
  --accent-hover: #094a50;
  --accent-soft: rgba(13, 92, 99, 0.08);
  --link: #0d5c63;
  --link-hover: #094048;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --radius-pill: 980px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.1);
  --header-h: 143px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  line-height: 1.47059;
  font-weight: 400;
  letter-spacing: -0.011em;
  color: var(--text);
  background: var(--bg-page);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.28s var(--ease-smooth), opacity 0.28s var(--ease-smooth);
}

a:hover {
  color: var(--link-hover);
}

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

.container {
  width: min(1068px, 90vw);
  margin-inline: auto;
}

.container--wide {
  width: min(1200px, 94vw);
}

/* Tipografia estilo editorial (próximo ao SF Pro) */
h1,
h2,
h3,
h4 {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -0.022em;
  color: var(--text);
}

/* Cabeçalho — branco */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.75rem 0;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  transition:
    background 0.35s var(--ease-smooth),
    box-shadow 0.35s var(--ease-smooth),
    border-color 0.35s var(--ease-smooth);
}

.site-header.is-scrolled {
  background: #ffffff;
  border-bottom-color: var(--border-strong);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  width: 100%;
}

@media (min-width: 1025px) {
  .header-inner {
    flex-wrap: nowrap;
  }
}

.header-end {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.logo {
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  transition: opacity 0.25s var(--ease-smooth);
  white-space: nowrap;
  flex-shrink: 0;
}

.site-header .nav,
.site-header .header-end,
.site-header .menu-toggle {
  align-self: center;
}

.site-header .logo .logo-img {
  display: block;
  height: 106px;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.logo:hover {
  opacity: 0.85;
}

.logo span {
  color: var(--accent);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.nav a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: -0.01em;
}

.site-header .nav a {
  color: var(--muted);
}

.site-header .nav a:hover,
.site-header .nav a.active {
  color: var(--text);
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.35rem;
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition:
    background 0.35s var(--ease-out),
    color 0.35s var(--ease-out),
    transform 0.2s var(--ease-smooth),
    box-shadow 0.35s var(--ease-out);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: 0 4px 20px rgba(13, 92, 99, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(13, 92, 99, 0.35);
}

.btn-ghost:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent-hover);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  color: #fff;
  background: #20bd5a;
  filter: brightness(1.02);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.4rem 0.75rem 0.4rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  transition:
    color 0.28s var(--ease-smooth),
    border-color 0.28s var(--ease-smooth),
    background 0.28s var(--ease-smooth);
}

.lang-switch:hover {
  color: var(--text);
  border-color: var(--accent);
  background: var(--accent-soft);
}

.lang-switch__flag {
  flex-shrink: 0;
  display: block;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.site-footer .lang-switch {
  color: var(--muted-on-dark);
  border-color: rgba(255, 255, 255, 0.2);
}

.site-footer .lang-switch:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s var(--ease-smooth);
}

.site-header .menu-toggle span {
  background: var(--text);
}

@media (max-width: 1024px) {
  :root {
    --header-h: 104px;
  }

  .menu-toggle {
    display: flex;
  }

  /* Ordem no DOM: menu · logo · nav · ações — na barra só menu | logo | ações */
  .header-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .menu-toggle {
    order: 1;
    flex: 0 0 auto;
  }

  .logo {
    order: 2;
    flex: 1 1 auto;
    justify-content: center;
    align-self: center;
  }

  .site-header .logo .logo-img {
    height: 80px;
    width: auto;
    max-width: none;
  }

  .header-end {
    order: 3;
    flex: 0 0 auto;
  }

  .nav {
    order: 4;
    flex: 0 0 0;
    min-width: 0;
    position: fixed;
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.98);
    top: calc(var(--header-h) + 8px);
    width: min(calc(100vw - 2rem), 22rem);
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 0.65rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.35s var(--ease-out),
      transform 0.35s var(--ease-out),
      visibility 0.35s;
    z-index: 99;
  }

  .nav a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
  }

  .nav a:hover,
  .nav a.active {
    background: var(--accent-soft);
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
  }

  .header-actions .btn-ghost {
    display: none;
  }

  .header-actions .btn {
    padding: 0.6rem 0.95rem;
    font-size: 0.8125rem;
  }

  /* Banner — tablet */
  .product-banner--full .product-banner__slide {
    min-height: clamp(320px, 46vh, 460px);
  }

  .product-banner--full .product-banner__overlay {
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 3vw, 1.5rem);
    padding-bottom: clamp(2.75rem, 6vw, 3.5rem);
  }

  .product-banner--full .product-banner__overlay h3 {
    font-size: clamp(1.15rem, 2vw + 0.65rem, 1.5rem);
  }

  .product-banner--full .product-banner__overlay p {
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
  }

  .product-banner--full .product-banner__controls {
    padding: 0.85rem 1rem 1rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 92px;
  }

  .site-header {
    padding: 0.5rem 0;
  }

  .site-header .logo .logo-img {
    height: 68px;
  }

  .header-actions .btn {
    padding: 0.52rem 0.8rem;
    font-size: 0.75rem;
  }

  /* Banner — celular */
  .product-banner--full .product-banner__slide {
    min-height: clamp(260px, 36vh, 360px);
  }

  .product-banner--full .product-banner__slide::before {
    background:
      linear-gradient(
        180deg,
        rgba(8, 10, 14, 0.35) 0%,
        rgba(8, 10, 14, 0.55) 35%,
        rgba(8, 10, 14, 0.82) 68%,
        rgba(8, 10, 14, 0.92) 100%
      );
  }

  .product-banner--full .product-banner__overlay {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 3.25rem;
    justify-content: flex-end;
  }

  .product-banner--full .product-banner__overlay > * {
    max-width: 100%;
  }

  .product-banner--full .product-banner__overlay h3 {
    font-size: clamp(1.05rem, 4.5vw, 1.25rem);
    margin-bottom: 0.45rem;
  }

  .product-banner--full .product-banner__overlay p {
    font-size: 0.8125rem;
    line-height: 1.45;
    margin-bottom: 0;
  }

  .product-banner--full .product-banner__media img {
    object-position: center 30%;
  }

  .product-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.85rem;
    margin-bottom: 0.6rem;
  }

  .product-banner__actions .btn {
    padding: 0.55rem 0.9rem;
    font-size: 0.8125rem;
  }
}

/* Revelar ao scroll */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Hero — texto centralizado na coluna esquerda, imagem à direita */
.hero {
  padding: clamp(3.5rem, 10vw, 6.5rem) 0 clamp(4rem, 12vw, 7rem);
  background: var(--bg-page);
  text-align: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  width: 100%;
}

.hero-copy {
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.hero h1 {
  font-weight: 600;
  font-size: clamp(2.25rem, 5.2vw + 0.5rem, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-lead {
  color: var(--muted);
  font-size: clamp(1.0625rem, 1vw + 0.9rem, 1.25rem);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.015em;
  max-width: 42ch;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
}

/* Hero imagem — movimento + acabamento futurista */
@keyframes hero-kenburns {
  0% {
    transform: scale(1.06) translate(1.5%, 0.5%);
  }
  100% {
    transform: scale(1.14) translate(-2.5%, -1.5%);
  }
}

@keyframes hero-glow-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(0, 212, 255, 0.25),
      0 0 28px rgba(0, 212, 255, 0.12),
      0 12px 40px rgba(13, 92, 99, 0.12);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(124, 58, 237, 0.35),
      0 0 48px rgba(0, 245, 255, 0.18),
      0 16px 56px rgba(13, 92, 99, 0.16);
  }
}

@keyframes hero-sweep {
  0% {
    opacity: 0.35;
    transform: translateX(-30%) skewX(-12deg);
  }
  50% {
    opacity: 0.85;
  }
  100% {
    opacity: 0.35;
    transform: translateX(130%) skewX(-12deg);
  }
}

@keyframes hero-scanline {
  0% {
    top: -25%;
  }
  100% {
    top: 100%;
  }
}

.hero .hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, #0a1628 0%, #1a2f45 50%, #0d2137 100%);
  animation: hero-glow-pulse 5s ease-in-out infinite;
  transition: transform 0.55s var(--ease-out), box-shadow 0.55s var(--ease-out);
}

.hero .hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0) 2px,
    rgba(0, 212, 255, 0.04) 2px,
    rgba(0, 212, 255, 0.04) 3px
  );
  mix-blend-mode: overlay;
  opacity: 0.6;
}

.hero .hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 42%,
    rgba(0, 245, 255, 0.14) 50%,
    transparent 58%,
    transparent 100%
  );
  width: 55%;
  height: 100%;
  animation: hero-sweep 5.5s ease-in-out infinite;
  mix-blend-mode: soft-light;
}

.hero .hero-visual .hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: -25%;
  height: 22%;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 245, 255, 0.09),
    rgba(0, 212, 255, 0.05),
    transparent
  );
  animation: hero-scanline 7s linear infinite;
  mix-blend-mode: screen;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-lead {
    max-width: none;
  }

  .hero-visual {
    order: -1;
    max-width: min(100%, 480px);
    margin-inline: auto;
  }
}

.hero-visual:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(0, 245, 255, 0.35),
    0 0 40px rgba(0, 212, 255, 0.22),
    0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-visual img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  animation: hero-kenburns 16s ease-in-out infinite alternate;
  filter: saturate(1.08) contrast(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .hero .hero-visual,
  .hero .hero-visual::after,
  .hero .hero-visual .hero-scan,
  .hero-visual img {
    animation: none;
  }

  .hero-visual:hover {
    transform: none;
  }
}

/* Produtos — banner em sequência */
.section-produtos {
  background: #f8f9fa;
  padding-top: clamp(2.75rem, 7vw, 4.5rem);
  padding-bottom: clamp(2.75rem, 7vw, 4.5rem);
}

.section-produtos--full {
  padding: 0;
  background: #0d0d0f;
}

.section-produtos .section-head {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.container--produtos {
  width: min(1320px, 95vw);
}

.product-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  background: #0d0d0f;
}

.product-banner--full {
  width: 100%;
  max-width: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-banner__viewport {
  overflow: hidden;
}

.product-banner__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.product-banner__slide {
  flex: 0 0 100%;
  position: relative;
  min-height: clamp(320px, 52vw, 480px);
}

.product-banner--full .product-banner__slide {
  min-height: clamp(320px, 46vh, 460px);
}

@media (min-width: 1025px) {
  .product-banner--full .product-banner__slide {
    min-height: clamp(520px, 78vh, 880px);
  }
}

.product-banner__media {
  position: absolute;
  inset: 0;
}

.product-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.product-banner--full .product-banner__media img {
  object-fit: cover;
  object-position: center center;
}

.product-banner__overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: linear-gradient(
    105deg,
    rgba(8, 10, 14, 0.94) 0%,
    rgba(8, 10, 14, 0.82) 50%,
    rgba(8, 10, 14, 0.45) 100%
  );
  color: #fff;
  max-width: min(640px, 100%);
}

.product-banner--full .product-banner__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(8, 10, 14, 0.92) 0%,
      rgba(8, 10, 14, 0.78) 38%,
      rgba(8, 10, 14, 0.55) 62%,
      rgba(8, 10, 14, 0.38) 82%,
      rgba(8, 10, 14, 0.28) 100%
    ),
    linear-gradient(
      to top,
      rgba(8, 10, 14, 0.82) 0%,
      rgba(8, 10, 14, 0.45) 28%,
      rgba(8, 10, 14, 0.18) 55%,
      transparent 75%
    );
}

.product-banner--full .product-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: none;
  width: 100%;
  padding-left: clamp(1.25rem, 5vw, 4.5rem);
  padding-right: clamp(1.25rem, 5vw, 2rem);
  padding-bottom: clamp(3.5rem, 7vw, 5rem);
  background: transparent;
}

.product-banner--full .product-banner__overlay > * {
  max-width: min(720px, 92vw);
}

.product-banner--full .product-banner__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: linear-gradient(to top, rgba(8, 10, 14, 0.88) 0%, rgba(8, 10, 14, 0.45) 55%, transparent 100%);
  border-top: 0;
  padding: 1.25rem clamp(1rem, 4vw, 2rem) 1.35rem;
}

.product-banner--full .product-banner__arrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.product-banner--full .product-banner__arrow:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.product-banner--full .product-banner__dot {
  background: rgba(255, 255, 255, 0.4);
}

.product-banner--full .product-banner__dot.is-active {
  background: #fff;
}

.product-badge {
  display: inline-block;
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.9rem;
  width: fit-content;
}

.product-banner__overlay h3 {
  font-size: clamp(1.35rem, 2.2vw + 0.75rem, 2rem);
  font-weight: 600;
  letter-spacing: -0.024em;
  line-height: 1.2;
  margin: 0 0 0.65rem;
  color: #fff;
}

.product-banner__overlay p {
  margin: 0 0 1.25rem;
  font-size: clamp(0.95rem, 0.35vw + 0.9rem, 1.0625rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.product-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.product-banner__btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.product-banner__btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.product-banner__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.product-banner__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.product-banner__arrow:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

.product-banner__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-banner__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--border);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.product-banner__dot.is-active {
  background: var(--accent);
  transform: scale(1.25);
}

@media (prefers-reduced-motion: reduce) {
  .product-banner__track {
    transition: none;
  }
}

/* Pilares */
#pilares {
  background: var(--bg-elevated);
  border-radius: 32px 32px 0 0;
  margin-top: -1px;
  padding-top: clamp(3.5rem, 9vw, 6rem);
  padding-bottom: clamp(3.5rem, 9vw, 6rem);
}

section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.section-head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw + 0.25rem, 2.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.028em;
  margin: 0 0 0.75rem;
}

.section-head p {
  color: var(--muted);
  font-size: clamp(1.0625rem, 0.5vw + 1rem, 1.1875rem);
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  justify-content: center;
  justify-items: stretch;
}

.pillar-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-page);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-color 0.35s var(--ease-smooth);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-strong);
}

@media (prefers-reduced-motion: reduce) {
  .pillar-card:hover {
    transform: none;
  }
}

.pillar-media {
  height: 200px;
  overflow: hidden;
}

.pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.pillar-card:hover .pillar-media img {
  transform: scale(1.035);
}

.pillar-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.5rem 1.35rem 1.65rem;
  text-align: center;
}

.pillar-more {
  margin-top: auto;
  align-self: center;
  padding: 0.55rem 1.15rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

.pillar-icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-inline: auto;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--accent);
  background: var(--accent-soft);
  margin-bottom: 0.75rem;
}

.pillar-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.022em;
  margin: 0 0 0.4rem;
  line-height: 1.25;
}

.pillar-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}

/* Modal — detalhes dos serviços (home) */
body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right))
    max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
}

.modal[hidden] {
  display: none !important;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(40rem, 100%);
  max-height: min(88vh, 100%);
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
  animation: modal-in 0.35s var(--ease-out);
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .modal__panel {
    animation: none;
  }
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.modal__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  padding-right: 0.5rem;
}

.modal__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin: -0.25rem -0.25rem 0 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--bg-page);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.modal__close:hover {
  background: var(--border);
  color: var(--text);
}

.modal__body {
  padding: 1.15rem 1.25rem 1.25rem;
  overflow-y: auto;
  flex: 1 1 auto;
  text-align: left;
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.modal__body .modal-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.modal__body h3 {
  margin: 1.15rem 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.modal__body h3:first-of-type {
  margin-top: 0;
}

.modal__body ul {
  margin: 0 0 0.75rem;
  padding-left: 1.15rem;
}

.modal__body li {
  margin-bottom: 0.45rem;
}

.modal__body p:last-child {
  margin-bottom: 0;
}

.modal__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
  padding: 0.85rem 1.25rem 1.15rem;
  border-top: 1px solid var(--border);
  background: var(--bg-page);
  border-radius: 0 0 var(--radius) var(--radius);
  flex-shrink: 0;
}

/* Crescimento */
#crescimento {
  background: var(--bg-page);
  padding-top: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.growth {
  border-radius: var(--radius);
  padding: clamp(2.25rem, 5vw, 3.75rem);
  background: var(--bg-navy);
  border: none;
  box-shadow: var(--shadow-soft);
}

.growth-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(2rem, 4vw, 2.5rem);
}

.growth h2 {
  font-size: clamp(1.5rem, 2.8vw + 0.5rem, 2.125rem);
  font-weight: 600;
  letter-spacing: -0.028em;
  margin: 0 0 1rem;
  color: var(--text-on-dark);
  line-height: 1.15;
}

.growth p {
  color: var(--muted-on-dark);
  max-width: 48ch;
  margin: 0 auto 1.65rem;
  font-size: 1.0625rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.growth .btn-primary {
  background: #fff;
  color: var(--bg-navy);
}

.growth .btn-primary:hover {
  background: #e8e8ed;
  color: #000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.growth-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

/* CTA */
.cta-section {
  background: var(--bg-page);
  padding-top: 0;
}

.cta-strip {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 3.5rem) 1.5rem;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
}

.cta-strip h2 {
  font-size: clamp(1.375rem, 2.5vw + 0.5rem, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 0.5rem;
  color: #fff;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.5;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.01em;
}

.cta-strip .btn-whatsapp {
  background: #fff;
  color: var(--accent);
  font-weight: 600;
}

.cta-strip .btn-whatsapp:hover {
  background: #f5f5f7;
  color: var(--accent-hover);
}

/* Rodapé */
.site-footer {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem;
  background: var(--bg-navy-deep);
  margin-top: 0;
}

.site-footer .logo {
  color: var(--text-on-dark);
}

.site-footer .logo .logo-img {
  display: block;
  height: 90px;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.site-footer .logo span {
  color: #7eb8be;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
  max-width: 1068px;
  margin-inline: auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-brand p {
  color: var(--muted-on-dark);
  font-size: 0.8125rem;
  max-width: 38ch;
  margin-top: 0.65rem;
  line-height: 1.5;
  letter-spacing: -0.005em;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.footer-contact li {
  margin-bottom: 0.35rem;
}

.footer-contact a {
  color: var(--muted-on-dark);
  font-size: 0.875rem;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-col {
  text-align: left;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  color: #f5f5f7;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.4rem;
}

.footer-col a {
  color: var(--muted-on-dark);
  font-size: 0.875rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-social-hint {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: var(--muted-on-dark);
  line-height: 1.45;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social li {
  margin: 0;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: var(--muted-on-dark);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    color 0.25s var(--ease-smooth),
    background 0.25s var(--ease-smooth),
    border-color 0.25s var(--ease-smooth),
    transform 0.2s var(--ease-smooth);
}

.footer-social-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col--social {
    grid-column: 1 / -1;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .site-footer .logo .logo-img {
    height: 72px;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-contact {
    margin-inline: auto;
  }

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

  .footer-col--social .footer-social-hint {
    max-width: 22rem;
    margin-inline: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted-on-dark);
  font-size: 0.75rem;
  letter-spacing: -0.005em;
}

.footer-bottom p {
  margin: 0;
}

/* WhatsApp flutuante */
.wa-float {
  position: fixed;
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  right: max(1.25rem, env(safe-area-inset-right));
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.38);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    left 0.35s var(--ease-out),
    right 0.35s var(--ease-out),
    bottom 0.35s var(--ease-out);
}

/* reCAPTCHA v3 usa o canto inferior direito — WhatsApp vai para a esquerda */
body.recaptcha-v3 .wa-float {
  right: auto;
  left: max(1.25rem, env(safe-area-inset-left));
}

.wa-float:hover {
  transform: scale(1.06);
  color: #fff;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

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

/* Contato */
.page-hero {
  padding: clamp(3rem, 8vw, 4.5rem) 0 clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  background: var(--bg-page);
}

.page-hero-inner {
  max-width: 36rem;
  margin-inline: auto;
}

.page-hero h1 {
  font-size: clamp(1.875rem, 3.5vw + 0.5rem, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  margin: 0 0 0.65rem;
  line-height: 1.1;
}

.page-hero p {
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.contact-page-main {
  background: var(--bg-page);
  padding-bottom: 1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(3rem, 6vw, 4rem);
  max-width: 56rem;
  margin-inline: auto;
}

aside.contact-card {
  text-align: center;
}

aside.contact-card .contact-list {
  text-align: center;
}

@media (max-width: 850px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.contact-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 1.1rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.contact-list li {
  margin-bottom: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.9375rem;
}

.contact-list strong {
  color: var(--text);
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact-visual {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 200px;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
  background: var(--bg-section-alt);
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--text);
  background: var(--bg-page);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  transition: border-color 0.25s var(--ease-smooth), box-shadow 0.25s var(--ease-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.recaptcha-wrap {
  margin: 0.25rem 0 0.75rem;
  min-height: 78px;
}

.recaptcha-wrap:empty {
  display: none;
}

body.recaptcha-v3 .recaptcha-wrap {
  display: none;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.5;
  letter-spacing: -0.005em;
}

.form-note code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8em;
  background: var(--bg-page);
  padding: 0.15em 0.4em;
  border-radius: 6px;
  color: var(--text);
}
