:root {
  --color-purple: #9040e0;
  --color-purple-deep: #6f32b3;
  --color-purple-dark: #3f1d62;
  --color-cyan: #23c5d8;
  --color-green: #60e828;
  --color-green-deep: #4ed51e;
  --color-white: #ffffff;
  --color-page: #f7f7f7;
  --color-ink: #666666;
  --color-hairline: #e7e1ef;
  --color-muted: #86758f;
  --shadow-soft: 0 24px 80px rgba(63, 29, 98, 0.16);
  --radius-button: 6px;
  --radius-card: 10px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--color-page);
  color: var(--color-ink);
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 28px), var(--max));
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(144, 64, 224, 0.72);
  color: var(--color-white);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(63, 29, 98, 0.9);
  box-shadow: 0 12px 36px rgba(63, 29, 98, 0.22);
}

.brand img {
  display: block;
  width: 128px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  opacity: 0.82;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--color-green);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  border: 0;
  cursor: pointer;
}

.header-cta,
.btn.primary {
  background: var(--color-green);
  color: var(--color-purple-dark);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--color-white);
}

.btn:hover,
.header-cta:hover {
  background: var(--color-white);
  color: var(--color-purple);
}

.btn:disabled,
.header-cta:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.75fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: 100vh;
  padding: 116px max(24px, calc((100vw - var(--max)) / 2)) 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(35, 197, 216, 0.36), transparent 26%),
    linear-gradient(135deg, var(--color-purple), var(--color-purple-deep));
  color: var(--color-white);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
  animation: orbit 14s linear infinite;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-cyan);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.5;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  font-size: clamp(48px, 7.4vw, 94px);
  font-weight: 950;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 640px;
  margin: 34px 0 0;
}

.hero-stats div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats dt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 950;
}

.hero-visual {
  transform-style: preserve-3d;
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-card);
  object-fit: cover;
  box-shadow: 0 24px 80px rgba(63, 29, 98, 0.38);
}

.floating-tag {
  position: absolute;
  padding: 11px 14px;
  border-radius: var(--radius-button);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 950;
  animation: float 4s ease-in-out infinite;
}

.tag-green {
  top: 12%;
  left: -28px;
  background: var(--color-green);
  color: var(--color-purple-dark);
}

.tag-cyan {
  top: 38%;
  right: -22px;
  background: var(--color-cyan);
}

.tag-purple {
  bottom: 14%;
  left: -16px;
  background: var(--color-purple-dark);
  animation-delay: 900ms;
}

.intro-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--max);
  margin: 24px auto 0;
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.intro-band p {
  max-width: 820px;
  color: var(--color-purple-dark);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.28;
}

.intro-band a {
  flex: 0 0 auto;
  color: var(--color-cyan);
  font-weight: 950;
}

.section,
.image-feature {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 96px 0 0;
}

.split,
.roi {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.image-feature h2,
.final-cta h2 {
  max-width: 780px;
  color: var(--color-purple);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 950;
  line-height: 0.98;
}

.section-copy p:not(.eyebrow),
.image-feature p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--color-ink);
  font-size: 18px;
  line-height: 1.58;
}

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

.steps article,
.advantage-grid article,
.payment-grid article,
.roi-card,
.faq-list details {
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-card);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.steps article {
  min-height: 210px;
  padding: 22px;
  transition: transform 180ms ease;
}

.steps article:hover {
  transform: translateY(-4px);
}

.steps span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-purple-dark);
  font-weight: 950;
}

.steps h3 {
  margin-top: 18px;
  color: var(--color-purple-dark);
  font-size: 20px;
  line-height: 1.1;
}

.steps p {
  margin-top: 10px;
  line-height: 1.48;
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 38px;
  align-items: center;
}

.image-feature.reverse {
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1fr);
}

.image-feature.reverse img {
  order: 2;
}

.image-feature img {
  display: block;
  width: 100%;
  max-height: 620px;
  border-radius: var(--radius-card);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.venue-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.venue,
.product-pill {
  min-height: 44px;
  border: 1px solid var(--color-hairline);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-purple-dark);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  padding: 0 16px;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.venue:hover,
.venue.is-active,
.product-pill:hover,
.product-pill.is-active {
  background: var(--color-green);
  color: var(--color-purple-dark);
  transform: translateY(-2px);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 30px;
  align-items: center;
  margin-top: 30px;
}

.circular-gallery {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.gallery-frame {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 40%, rgba(96, 232, 40, 0.12), transparent 35%),
    var(--color-white);
  box-shadow: var(--shadow-soft);
}

.gallery-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  clip-path: circle(0% at 50% 92%);
  opacity: 0;
  will-change: clip-path, opacity;
}

.gallery-slide.is-active {
  clip-path: circle(145% at 50% 50%);
  opacity: 1;
  z-index: 2;
}

.gallery-slide.is-exiting {
  clip-path: circle(0% at 50% 8%);
  opacity: 0;
  z-index: 1;
}

.gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px;
  user-select: none;
}

.gallery-title {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 58px;
  min-width: 190px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--color-purple);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 950;
  text-align: center;
  transform: translateX(-50%);
  box-shadow: 0 14px 34px rgba(63, 29, 98, 0.2);
}

.gallery-tabs {
  position: absolute;
  z-index: 6;
  bottom: 20px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 122px);
  max-width: 390px;
  height: 24px;
  padding: 4px 10px;
  overflow-x: auto;
  scrollbar-width: none;
  transform: translateX(-50%);
}

.gallery-tabs::-webkit-scrollbar {
  display: none;
}

.gallery-tab {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(63, 29, 98, 0.1);
  transition: background-color 180ms ease, transform 180ms ease;
}

.gallery-tab.is-active {
  background: var(--color-green);
  transform: scale(1.45);
}

.gallery-tab.is-bouncing {
  animation: dot-bounce 760ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-arrow {
  position: absolute;
  z-index: 7;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-purple);
  cursor: pointer;
  font: inherit;
  font-size: 34px;
  font-weight: 850;
  line-height: 1;
  transform: translateY(-50%);
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.gallery-arrow:hover {
  background: var(--color-green);
  color: var(--color-purple-dark);
  transform: translateY(-50%) scale(1.08);
}

.gallery-arrow.prev {
  left: 14px;
}

.gallery-arrow.next {
  right: 14px;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-detail {
  width: 100%;
  min-height: 94px;
  margin-top: 8px;
  padding: 18px;
  border-radius: var(--radius-card);
  background: var(--color-purple);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.35;
}

.advantage-grid,
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.advantage-grid article,
.payment-grid article {
  padding: 22px;
  color: var(--color-purple-dark);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.28;
}

.advantage-grid span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-purple-dark);
}

.roi-card {
  padding: 26px;
}

.hero-copy .hero-stats-note {
  font-size: 13px;
  line-height: 1.5;
}

.hero-stats-note a {
  text-decoration: underline;
}

.roi-note {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.6;
}

.roi-card label {
  display: block;
  color: var(--color-purple);
  font-size: 18px;
  font-weight: 950;
}

.range-row {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--color-green);
}

.range-row output {
  color: var(--color-purple-dark);
  font-size: 34px;
  font-weight: 950;
}

.roi-results {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.roi-results div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--color-hairline);
}

.roi-results dt {
  font-size: 13px;
  font-weight: 850;
}

.roi-results dd {
  margin: 0;
  color: var(--color-purple);
  font-size: 18px;
  font-weight: 950;
  text-align: right;
}

.payment-grid article span {
  display: block;
  color: var(--color-cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.payment-grid article strong [data-investment] {
  display: inline;
  color: inherit;
  font: inherit;
  text-transform: none;
}

.payment-grid article strong {
  display: block;
  margin-top: 12px;
  color: var(--color-purple);
  font-size: 22px;
}

.payment-grid article p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.faq-list details {
  padding: 18px 22px;
}

.faq-list summary {
  color: var(--color-purple-dark);
  cursor: pointer;
  font-size: 18px;
  font-weight: 950;
}

.faq-list p {
  margin-top: 12px;
  line-height: 1.55;
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 96px;
  padding: 96px 24px;
  text-align: center;
  background: var(--color-purple);
  color: var(--color-white);
}

.final-cta img {
  width: min(340px, 80vw);
}

.final-cta h2 {
  color: var(--color-white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 13, 48, 0.72);
  backdrop-filter: blur(8px);
}

.lead-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(90vh, 760px);
  overflow-y: auto;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 197, 216, 0.14), transparent 30%),
    var(--color-white);
  box-shadow: 0 28px 90px rgba(30, 13, 48, 0.36);
}

.lead-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-hairline);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-purple);
  cursor: pointer;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.lead-modal__close:hover,
.lead-modal__close:focus-visible {
  background: var(--color-green);
  color: var(--color-purple-dark);
}

.lead-modal h2 {
  max-width: 420px;
  color: var(--color-purple);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 950;
  line-height: 1;
}

.lead-modal__form-view > p:not(.eyebrow),
.lead-modal__success > p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--color-ink);
  font-size: 17px;
  line-height: 1.5;
}

.lead-form {
  display: grid;
  gap: 15px;
  margin-top: 24px;
}

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

.form-field label {
  color: var(--color-purple-dark);
  font-size: 14px;
  font-weight: 900;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-button);
  background: var(--color-white);
  color: var(--color-purple-dark);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 0 14px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-field label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--color-purple-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.42;
}

.consent-field input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--color-green);
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--color-purple);
  box-shadow: 0 0 0 3px rgba(144, 64, 224, 0.16);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"] {
  border-color: #d93025;
  box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.12);
}

.form-field input:disabled,
.form-field select:disabled {
  cursor: not-allowed;
  background: #f0edf4;
  color: var(--color-muted);
}

.field-error,
.lead-form__error {
  min-height: 18px;
  color: #b3261e;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.lead-form__error {
  min-height: 0;
}

.lead-form__error:empty {
  display: none;
}

.lead-form__submit {
  width: 100%;
  min-height: 52px;
}

.lead-form__support {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.lead-modal__success {
  display: grid;
  gap: 18px;
}

.lead-modal__success-actions {
  display: grid;
  gap: 10px;
}

.lead-modal__success-actions .btn {
  width: 100%;
}

.lead-modal__success[hidden] {
  display: none;
}

body.has-open-modal {
  overflow: hidden;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes orbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes dot-bounce {
  0% {
    transform: translateY(-28px) scale(1.2);
  }

  45% {
    transform: translateY(0) scale(1.75);
  }

  68% {
    transform: translateY(-9px) scale(1.45);
  }

  100% {
    transform: translateY(0) scale(1.55);
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split,
  .roi,
  .image-feature,
  .image-feature.reverse,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-visual {
    max-width: 520px;
  }

  .image-feature.reverse img {
    order: 0;
  }

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

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand img {
    width: 112px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-stats,
  .steps,
  .advantage-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .intro-band {
    display: grid;
    width: calc(100% - 28px);
    margin-top: 24px;
    padding: 22px;
  }

  .intro-band p {
    font-size: 18px;
  }

  .section,
  .image-feature {
    width: calc(100% - 28px);
    padding-top: 72px;
  }

  .floating-tag {
    display: none;
  }

  .roi-results div {
    display: grid;
  }

  .roi-results dd {
    text-align: left;
  }

  .lead-modal {
    align-items: end;
    padding: 10px;
  }

  .lead-modal__panel {
    width: 100%;
    max-height: calc(100vh - 20px);
    padding: 26px 18px 22px;
  }

  .lead-modal h2 {
    padding-right: 42px;
  }
}

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

/* Fallback de visibilidade para hospedagens que bloqueiam scripts de módulo. */
.hero-copy.reveal,
.hero-visual.reveal,
.reveal {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}


/* Ajustes de leitura e proporção no quiosque */
section[id], main[id] { scroll-margin-top: 128px; }
.gallery-slide img { object-fit: contain; padding: 28px; }
@media (max-width: 640px) {
  section[id], main[id] { scroll-margin-top: 96px; }
  .gallery-frame { width: min(100%, 430px); }
  .gallery-slide img { padding: 20px; }
}


/* Correção definitiva de sobreposição e proporção */
.site-header { position: fixed !important; top: 14px !important; }
.gallery-frame { width: min(100%, 460px) !important; }
.gallery-slide img { object-fit: contain !important; padding: 48px !important; }
@media (max-width: 640px) {
  .site-header { top: 8px !important; }
  .gallery-frame { width: 100% !important; }
  .gallery-slide img { padding: 28px !important; }
}


/* Modal otimizado para mobile */
@media (max-width: 640px) {
  .lead-modal {
    align-items: center;
    padding: 12px;
  }
  .lead-modal__panel {
    width: 100%;
    max-height: calc(100dvh - 24px);
    padding: 46px 18px 20px;
    border-radius: 22px;
  }
  .lead-modal h2 {
    max-width: 100%;
    padding-right: 34px;
    font-size: 32px;
    line-height: 1.05;
  }
  .lead-modal__form-view > p:not(.eyebrow),
  .lead-modal__success > p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.4;
  }
  .lead-form { gap: 11px; margin-top: 18px; }
  .form-field { gap: 5px; }
  .form-field label { font-size: 13px; }
  .form-field input,
  .form-field select { min-height: 44px; font-size: 16px; }
  .consent-field label { font-size: 12px; }
  .lead-modal__close { top: 10px; right: 10px; width: 36px; height: 36px; font-size: 24px; }
}


@media (max-width: 640px) {
  .gallery-frame { aspect-ratio: 4 / 3 !important; max-height: 360px; }
  .gallery-slide img { padding: 44px !important; }
  .product-detail { min-height: 72px; padding: 16px; font-size: 16px; }
}
