@charset "UTF-8";
/* Interface Ozonteck v2 — arquivo com nome próprio para evitar cache do tema antigo. */

:root {
  color-scheme: light;
  --bg: #f7faf9;
  --surface: #ffffff;
  --surface-soft: #eef7f4;
  --surface-strong: #dff2ec;
  --text: #14201d;
  --text-soft: #52635e;
  --heading: #0d1815;
  --border: #dce7e3;
  --primary: #008b78;
  --primary-strong: #006d5e;
  --primary-soft: #d8f4ed;
  --accent: #f3a712;
  --success: #1a9b66;
  --danger: #c33d4a;
  --shadow-sm: 0 8px 30px rgba(18, 49, 41, .07);
  --shadow-md: 0 22px 55px rgba(18, 49, 41, .13);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --header-height: 72px;
  --shell: 1180px;
  --ease: 220ms ease;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #07110f;
  --surface: #0e1b18;
  --surface-soft: #12231f;
  --surface-strong: #17332c;
  --text: #eaf3f0;
  --text-soft: #9db2ac;
  --heading: #f7fbfa;
  --border: #213b34;
  --primary: #38d1b9;
  --primary-strong: #79ead8;
  --primary-soft: #143d35;
  --accent: #ffc95c;
  --success: #5cdaa5;
  --danger: #ff8690;
  --shadow-sm: 0 8px 30px rgba(0, 0, 0, .22);
  --shadow-md: 0 22px 60px rgba(0, 0, 0, .34);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  transition: background-color var(--ease), color var(--ease);
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 168, 142, .08), transparent 28rem),
    radial-gradient(circle at 95% 28%, rgba(243, 167, 18, .05), transparent 24rem);
  content: "";
  pointer-events: none;
}

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

img {
  height: auto;
}

a {
  color: var(--primary);
  text-decoration: none;
}

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

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

button {
  border: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--heading);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.45rem, 6vw, 5.4rem);
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3.2rem);
}

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

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

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

.section {
  padding-block: clamp(72px, 10vw, 126px);
}

.section-sm {
  padding-block: clamp(48px, 7vw, 82px);
}

.section-soft {
  background: var(--surface-soft);
  border-block: 1px solid var(--border);
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(30px, 5vw, 52px);
}

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

.section-heading h2 {
  margin-bottom: 16px;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

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

.eyebrow::before {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--heading);
  color: var(--bg);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.app-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
  background: var(--bg);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 11px;
  color: var(--heading);
}

.brand-mark {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
}

.brand-mark i {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 3px solid var(--primary);
  border-radius: 50%;
}

.brand-mark i:nth-child(1) {
  top: 2px;
  left: 2px;
}

.brand-mark i:nth-child(2) {
  top: 2px;
  right: 2px;
}

.brand-mark i:nth-child(3) {
  right: 11px;
  bottom: 2px;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: .96rem;
  letter-spacing: .05em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--text-soft);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.desktop-nav a {
  padding: 10px 13px;
  border-radius: 12px;
  color: var(--text-soft);
  font-size: .9rem;
  font-weight: 700;
  transition: background var(--ease), color var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  background: var(--primary-soft);
  color: var(--primary-strong);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--heading);
  cursor: pointer;
  transition: transform var(--ease), background var(--ease);
}

.icon-button:hover {
  background: var(--surface-soft);
  transform: translateY(-2px);
}

.icon-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.theme-toggle .moon-icon,
:root[data-theme="dark"] .theme-toggle .sun-icon {
  display: none;
}

:root[data-theme="dark"] .theme-toggle .moon-icon {
  display: block;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  font-size: .93rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}

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

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  border-radius: 13px;
  font-size: .83rem;
}

.button-primary {
  background: var(--primary);
  box-shadow: 0 10px 25px rgba(0, 139, 120, .2);
  color: #fff;
}

.button-primary:hover {
  background: var(--primary-strong);
  color: #fff;
  box-shadow: 0 14px 32px rgba(0, 139, 120, .28);
}

:root[data-theme="dark"] .button-primary {
  color: #05241e;
}

.button-secondary {
  border-color: var(--border);
  background: var(--surface);
  color: var(--heading);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: var(--primary);
  color: var(--primary-strong);
}

.button-ghost {
  border-color: var(--border);
  background: transparent;
  color: var(--text);
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - var(--header-height)));
  min-height: min(820px, calc(100svh - var(--header-height)));
  display: grid;
  align-items: center;
  padding-block: clamp(58px, 8vw, 100px);
}

.hero::after {
  position: absolute;
  z-index: -1;
  width: min(46vw, 620px);
  aspect-ratio: 1;
  top: -20%;
  right: -10%;
  border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px color-mix(in srgb, var(--primary) 4%, transparent),
    0 0 0 140px color-mix(in srgb, var(--accent) 3%, transparent);
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(38px, 6vw, 80px);
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
}

.hero-copy h1 {
  max-width: 780px;
  margin-bottom: 22px;
}

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

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 32px;
  color: var(--text-soft);
  font-size: .85rem;
  font-weight: 700;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-row svg {
  width: 18px;
  fill: none;
  stroke: var(--success);
  stroke-linecap: round;
  stroke-width: 2.3;
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
  object-position: 38% center;
}

.hero-image-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 19, 15, .82), transparent 55%);
  content: "";
}

.hero-card-copy {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
  color: #fff;
}

.hero-card-copy strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.28rem;
}

.hero-card-copy span {
  display: block;
  color: rgba(255, 255, 255, .76);
  font-size: .9rem;
}

.floating-note {
  position: absolute;
  z-index: 2;
  top: 32px;
  left: -34px;
  display: flex;
  max-width: 220px;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.floating-note span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary-strong);
}

.floating-note svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.floating-note p {
  margin: 0;
  color: var(--text-soft);
  font-size: .75rem;
  line-height: 1.35;
}

.floating-note strong {
  display: block;
  color: var(--heading);
  font-size: .83rem;
}

.quick-grid,
.feature-grid,
.step-grid {
  display: grid;
  gap: 18px;
}

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

.quick-card {
  position: relative;
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--heading);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.quick-card:hover {
  border-color: color-mix(in srgb, var(--primary) 55%, var(--border));
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.quick-card-icon,
.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--primary-soft);
  color: var(--primary-strong);
}

.quick-card-icon svg,
.feature-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.quick-card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.quick-card h3 {
  margin: 0 0 5px;
}

.quick-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: .84rem;
}

.arrow {
  font-size: 1.3rem;
  transition: transform var(--ease);
}

.quick-card:hover .arrow {
  transform: translateX(4px);
}

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

.feature-card {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.feature-card h3 {
  margin: 21px 0 10px;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
}

.split-layout {
  display: grid;
  align-items: center;
  gap: clamp(40px, 7vw, 88px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.split-copy h2 {
  margin-bottom: 18px;
}

.split-copy > p {
  margin-bottom: 25px;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.media-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

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

.media-card-caption {
  padding: 22px 24px;
}

.media-card-caption strong {
  display: block;
  margin-bottom: 4px;
  color: var(--heading);
}

.media-card-caption p {
  margin: 0;
  color: var(--text-soft);
  font-size: .88rem;
}

.check-list,
.plain-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.check-list svg {
  width: 20px;
  flex: 0 0 auto;
  margin-top: 3px;
  fill: none;
  stroke: var(--success);
  stroke-width: 2.5;
}

.step-grid {
  counter-reset: steps;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  counter-increment: steps;
}

.step-card::before {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 13px;
  background: var(--primary);
  color: #fff;
  content: "0" counter(steps);
  font-size: .78rem;
  font-weight: 900;
}

.step-card h3 {
  margin-bottom: 9px;
}

.step-card p {
  margin: 0;
  color: var(--text-soft);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  gap: 30px;
  padding: clamp(32px, 6vw, 64px);
  border-radius: var(--radius-lg);
  background: #06382f;
  color: rgba(255, 255, 255, .78);
  grid-template-columns: minmax(0, 1fr) auto;
}

.cta-panel::after {
  position: absolute;
  width: 300px;
  height: 300px;
  right: -120px;
  bottom: -200px;
  border: 55px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
  content: "";
}

.cta-panel h2 {
  max-width: 650px;
  margin-bottom: 12px;
  color: #fff;
}

.cta-panel p {
  max-width: 650px;
  margin: 0;
}

.cta-panel .button-primary {
  z-index: 1;
  background: #fff;
  box-shadow: none;
  color: #06382f;
}

.cta-panel .button-primary:hover {
  background: #e8fff9;
}

.page-hero {
  padding-block: clamp(62px, 9vw, 108px) clamp(50px, 7vw, 80px);
  text-align: center;
}

.page-hero .section-heading {
  margin-bottom: 0;
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 6vw, 4.8rem);
}

.page-hero p {
  max-width: 700px;
  margin-inline: auto;
  color: var(--text-soft);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
}

.page-hero .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.content-card {
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.content-card h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

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

.notice {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 17px 19px;
  border: 1px solid color-mix(in srgb, var(--primary) 35%, var(--border));
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  color: var(--text);
  font-size: .88rem;
}

.notice svg {
  width: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--primary-strong);
  stroke-width: 2;
}

.notice p {
  margin: 0;
}

.opportunity-list {
  display: grid;
  gap: 22px;
}

.opportunity-card {
  display: grid;
  align-items: center;
  gap: clamp(24px, 5vw, 52px);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
}

.opportunity-card:nth-child(even) .opportunity-copy {
  order: 2;
}

.opportunity-copy .number {
  color: var(--primary);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.opportunity-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(1.65rem, 3.4vw, 2.7rem);
}

.opportunity-copy p {
  margin: 0;
  color: var(--text-soft);
}

.opportunity-media {
  overflow: hidden;
  border-radius: 17px;
  background: var(--surface-soft);
}

.opportunity-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.disclosure {
  margin-top: 28px;
  padding: 20px;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--surface);
  color: var(--text-soft);
  font-size: .88rem;
}

.catalog-strip {
  display: grid;
  padding: 5px 2px 22px;
  overflow-x: auto;
  gap: 18px;
  grid-auto-columns: min(78vw, 620px);
  grid-auto-flow: column;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--primary) var(--surface-soft);
  scrollbar-width: thin;
}

.catalog-slide {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
}

.catalog-slide img {
  width: 100%;
  aspect-ratio: 1182 / 829;
  object-fit: cover;
}

.catalog-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--text-soft);
  font-size: .82rem;
}

.catalog-hint svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.faq-list {
  display: grid;
  max-width: 850px;
  margin-inline: auto;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
}

.faq-item summary {
  position: relative;
  padding: 21px 55px 21px 22px;
  color: var(--heading);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 22px;
  height: 22px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--primary);
  content: "+";
  font-size: 1.05rem;
  line-height: 19px;
  text-align: center;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 21px;
  color: var(--text-soft);
}

.faq-answer p {
  margin: 0;
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: 24px;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--heading);
  font-size: .86rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 13px;
  outline: 0;
  background: var(--bg);
  transition: border-color var(--ease), box-shadow var(--ease);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 13%, transparent);
}

.field small {
  color: var(--text-soft);
  font-size: .76rem;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
}

.contact-aside {
  display: grid;
  gap: 14px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 19px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--surface);
  color: var(--heading);
}

.contact-option svg {
  width: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
}

.contact-option strong,
.contact-option small {
  display: block;
}

.contact-option small {
  margin-top: 2px;
  color: var(--text-soft);
}

.status-card {
  max-width: 650px;
  margin-inline: auto;
  text-align: center;
}

.status-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--success);
}

.status-icon svg {
  width: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.legal-layout {
  display: grid;
  align-items: start;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: 240px minmax(0, 760px);
  justify-content: center;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  display: grid;
  gap: 7px;
}

.legal-nav a {
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--text-soft);
  font-size: .84rem;
  font-weight: 700;
}

.legal-nav a:hover {
  background: var(--primary-soft);
  color: var(--primary-strong);
}

.legal-content {
  display: grid;
  gap: 38px;
}

.legal-content section {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

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

.legal-content ul {
  padding-left: 22px;
}

.legal-meta {
  color: var(--text-soft);
  font-size: .83rem;
}

.app-promo {
  padding-block: 44px;
  border-block: 1px solid var(--border);
  background: var(--surface-soft);
}

.app-promo-inner {
  display: grid;
  align-items: center;
  gap: 22px;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.app-promo-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 20px;
  background: var(--primary);
  color: #fff;
}

.app-promo-icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.app-promo .eyebrow {
  margin-bottom: 5px;
  font-size: .66rem;
}

.app-promo h2 {
  margin-bottom: 5px;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.app-promo p {
  margin: 0;
  color: var(--text-soft);
  font-size: .88rem;
}

.app-promo-actions {
  display: flex;
  gap: 10px;
}

.site-footer {
  padding: 62px 0 32px;
  background: var(--surface);
}

.footer-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: 1.6fr .7fr .7fr;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-about {
  max-width: 390px;
  color: var(--text-soft);
  font-size: .88rem;
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-soft);
}

.social-links a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.social-links svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-grid h2 {
  margin-bottom: 17px;
  font-size: .82rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--text-soft);
  font-size: .87rem;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: grid;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  font-size: .72rem;
  gap: 10px 22px;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 15px;
}

.footer-bottom a {
  color: var(--text-soft);
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid var(--bg);
  border-radius: 50%;
  background: #20b968;
  box-shadow: 0 12px 34px rgba(12, 84, 51, .3);
  color: #fff;
  transition: transform var(--ease);
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.03);
}

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

.privacy-banner {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  width: min(calc(100% - 44px), 760px);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 19px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  box-shadow: var(--shadow-md);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.privacy-banner[hidden] {
  display: none;
}

.privacy-banner strong {
  color: var(--heading);
}

.privacy-banner p {
  margin: 3px 0 0;
  color: var(--text-soft);
  font-size: .78rem;
  line-height: 1.45;
}

.privacy-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.privacy-actions .button {
  min-height: 42px;
  padding: 9px 13px;
  font-size: .75rem;
}

.mobile-tabbar {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 920px) {
  .app-header {
    position: static;
    height: 0;
    border: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header-inner {
    width: 0;
    height: 0;
    padding: 0;
  }

  .app-header .brand,
  .desktop-nav {
    display: none;
  }

  .app-header .header-actions {
    width: 0;
    height: 0;
  }

  .app-header .desktop-cta {
    display: none;
  }

  .app-header .theme-toggle {
    position: fixed;
    z-index: 80;
    right: max(20px, env(safe-area-inset-right));
    bottom: calc(max(20px, env(safe-area-inset-bottom)) + 70px);
    width: 58px;
    height: 58px;
    border: 3px solid var(--bg);
    background: var(--surface);
    box-shadow: 0 12px 34px rgba(10, 33, 27, .2);
  }

  .hero {
    min-height: auto;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

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

  .hero-image-card,
  .hero-image-card img {
    min-height: 440px;
  }

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

  .app-promo-inner {
    grid-template-columns: auto 1fr;
  }

  .app-promo-actions {
    grid-column: 2;
  }

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

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 64px;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .desktop-cta {
    display: none;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-mark i {
    width: 14px;
    height: 14px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-block: 45px 68px;
  }

  .hero::after {
    display: none;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-copy h1 {
    margin-bottom: 17px;
  }

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

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .trust-row {
    display: grid;
    gap: 10px;
    justify-content: start;
    margin-inline: auto;
    width: max-content;
    max-width: 100%;
    text-align: left;
  }

  .hero-image-card,
  .hero-image-card img {
    min-height: 390px;
  }

  .hero-image-card {
    border-radius: 23px;
  }

  .hero-image-card img {
    object-position: 32% center;
  }

  .floating-note {
    top: 16px;
    left: -4px;
  }

  .quick-grid,
  .feature-grid,
  .step-grid,
  .opportunity-card {
    grid-template-columns: 1fr;
  }

  .quick-grid {
    gap: 12px;
  }

  .quick-card {
    min-height: 148px;
    padding: 20px;
  }

  .opportunity-card:nth-child(even) .opportunity-copy {
    order: initial;
  }

  .opportunity-card .opportunity-media {
    order: -1;
  }

  .cta-panel {
    padding: 30px 24px;
    grid-template-columns: 1fr;
  }

  .cta-panel .button {
    width: 100%;
  }

  .catalog-strip {
    margin-right: -14px;
    grid-auto-columns: 88vw;
  }

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

  .app-promo-inner {
    text-align: center;
    grid-template-columns: 1fr;
  }

  .app-promo-icon {
    margin-inline: auto;
  }

  .app-promo .eyebrow {
    justify-content: center;
  }

  .app-promo-actions {
    display: grid;
    grid-column: auto;
    grid-template-columns: 1fr;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }

  .whatsapp-float {
    right: 15px;
    bottom: calc(84px + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }

  .app-header .theme-toggle {
    right: 15px;
    bottom: calc(148px + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }

  .privacy-banner {
    right: 12px;
    bottom: calc(80px + env(safe-area-inset-bottom));
    left: 12px;
    width: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 17px;
  }

  .privacy-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mobile-tabbar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: calc(70px + env(safe-area-inset-bottom));
    padding: 7px max(6px, env(safe-area-inset-right)) env(safe-area-inset-bottom) max(6px, env(safe-area-inset-left));
    border-top: 1px solid var(--border);
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    box-shadow: 0 -10px 30px rgba(10, 33, 27, .08);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    grid-template-columns: repeat(5, 1fr);
  }

  .mobile-tabbar a {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    border-radius: 11px;
    color: var(--text-soft);
    font-size: .62rem;
    font-weight: 700;
  }

  .mobile-tabbar a.is-active {
    background: var(--primary-soft);
    color: var(--primary-strong);
  }

  .mobile-tabbar svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }
}

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .quick-card {
    min-height: 132px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (display-mode: standalone) {
  .app-promo {
    display: none;
  }
}
