:root {
  --promedi-green: #144026;
  --promedi-green-dark: #0c2818;
  --promedi-green-light: #1d5c38;
  --promedi-red: #b22222;
  --promedi-red-hover: #961b1b;
  --visage-dark: #0a0e14;
  --visage-charcoal: #141b24;
  --visage-gold: #c9a84c;
  --visage-gold-soft: rgba(201, 168, 76, 0.15);
  --white: #ffffff;
  --gray-50: #f6faf7;
  --gray-100: #e8f0eb;
  --gray-300: #b8c4bc;
  --gray-700: #3d4a42;
  --text: #1a241f;
  --shadow: 0 24px 60px rgba(20, 64, 38, 0.12);
  --shadow-dark: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-h: 84px;
  --page-gutter: clamp(1.5rem, 5vw, 2.75rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Outfit", sans-serif;
  line-height: 1.15;
  margin: 0 0 1rem;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(var(--container), calc(100% - var(--page-gutter) * 2));
  margin-inline: auto;
}

.container--narrow {
  width: min(760px, calc(100% - var(--page-gutter) * 2));
}

.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section--light {
  background: var(--gray-50);
}

.section--white {
  background: var(--white);
}

.section--dark {
  background: linear-gradient(
    180deg,
    var(--visage-dark) 0%,
    var(--visage-charcoal) 100%
  );
  color: var(--white);
}

.section--green {
  background: linear-gradient(
    135deg,
    var(--promedi-green) 0%,
    var(--promedi-green-dark) 100%
  );
  color: var(--white);
}

.section--cta {
  background:
    radial-gradient(
      circle at top right,
      rgba(201, 168, 76, 0.18),
      transparent 40%
    ),
    linear-gradient(160deg, var(--promedi-green-dark), var(--promedi-green));
  color: var(--white);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--promedi-green);
  margin-bottom: 0.85rem;
}

.section-label--gold {
  color: var(--visage-gold);
}

.section-label--light {
  color: rgba(255, 255, 255, 0.75);
}

.section-head {
  margin-bottom: 3rem;
}

.section-head--center {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section-head p:last-child,
.split__content > p:last-of-type {
  margin-bottom: 0;
  color: var(--gray-700);
}

.section--dark .section-head p,
.section--dark .split__content > p {
  color: rgba(255, 255, 255, 0.72);
}

.section--green .split__content > p,
.section--cta .cta-block > p {
  color: rgba(255, 255, 255, 0.82);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--promedi-red);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(178, 34, 34, 0.28);
}

.btn--primary:hover {
  background: var(--promedi-red-hover);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn--sm {
  padding: 0.72rem 1.2rem;
  font-size: 0.88rem;
}

.btn--block {
  width: 100%;
}

.badge {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--visage-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10, 14, 20, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header__inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header__brand {
  flex-shrink: 0;
  z-index: 2;
}

.header__brand img {
  height: clamp(34px, 8vw, 42px);
  width: auto;
  filter: brightness(1.05);
}

.header__panel {
  display: contents;
}

.header__panel-actions {
  display: none;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.4vw, 1.5rem);
}

.header__nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.82rem, 1.1vw, 0.92rem);
  font-weight: 500;
  white-space: nowrap;
}

.header__nav a:hover {
  color: var(--white);
}

.header__cta {
  flex-shrink: 0;
  white-space: nowrap;
}

.header__menu {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.header__menu span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.header__overlay {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  z-index: 98;
}

.hero {
  position: relative;
  min-height: min(100vh, 920px);
  padding: calc(var(--header-h) + clamp(2rem, 5vw, 3rem)) 0
    clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
  background: var(--visage-dark);
  color: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(20, 64, 38, 0.45), transparent 35%),
    radial-gradient(
      circle at 85% 10%,
      rgba(178, 34, 34, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(201, 168, 76, 0.12),
      transparent 30%
    ),
    linear-gradient(180deg, #0a0e14 0%, #121820 100%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero__product-logo {
  width: min(320px, 100%);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(1.85rem, 5vw, 3.8rem);
  max-width: none;
}

.hero h1 span {
  display: block;
  color: var(--visage-gold);
}

.hero__lead {
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0;
}

.hero__stats {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.hero__stats li {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__stats strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.45rem;
  color: var(--visage-gold);
}

.hero__stats span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.22),
    transparent 65%
  );
  filter: blur(20px);
}

.hero__device {
  position: relative;
  width: min(420px, 100%);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
}

.highlights {
  margin-top: -3rem;
  position: relative;
  z-index: 2;
  padding-bottom: 1rem;
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}

.highlight-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--promedi-green),
    var(--promedi-green-light)
  );
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.highlight-card h3 {
  font-size: 1.1rem;
}

.highlight-card p {
  font-size: 0.92rem;
  color: var(--gray-700);
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split--reverse .split__content {
  order: 1;
}

.split--reverse .split__media {
  order: 2;
}

.split__media img {
  border-radius: var(--radius);
  /*box-shadow: var(--shadow);*/
}

.split__media-img--transparent {
  border-radius: 0;
  box-shadow: none;
  mix-blend-mode: multiply;
}

#diferenciais .split__media {
  display: flex;
  justify-content: center;
}

#diferenciais .split__media-img--transparent {
  width: min(100%, 420px);
  max-height: 360px;
  object-fit: contain;
}

.split__media--framed img {
  background: rgba(255, 255, 255, 0);
  padding: 1rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.checklist li {
  position: relative;
  padding-left: 1.8rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--promedi-red);
  box-shadow: 0 0 0 4px rgba(178, 34, 34, 0.15);
}

.modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 820px;
  margin-inline: auto;
}

.mode-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.mode-card img {
  margin-top: 1rem;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  width: 100%;
  max-height: 200px;
}

.mode-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.mode-card h3 {
  color: var(--visage-gold);
}

.mode-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.applicators-heading {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 3vw, 1.5rem);
  max-width: 640px;
  margin: 0 auto 1rem;
}

.applicators-heading__number {
  flex-shrink: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(5rem, 16vw, 8.5rem);
  font-weight: 800;
  line-height: 0.85;
  background: linear-gradient(180deg, #e8927a 0%, #8b3a32 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.applicators-heading__copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.applicators-heading__line {
  margin: 0;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.applicators-heading__line--accent {
  font-size: clamp(1.35rem, 4.5vw, 2.35rem);
  font-weight: 700;
  color: #e8927a;
}

.applicators-heading__line--muted {
  font-size: clamp(1rem, 3.2vw, 1.65rem);
  font-weight: 500;
  color: #3a3a3a;
}

.applicators-intro {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--gray-700);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  max-width: 280px;
  margin-inline: auto;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}

.carousel__track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel__slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.85rem 0.5rem 0.75rem;
  text-align: center;
}

.carousel__slide img {
  width: min(120px, 42vw);
  margin: 0 auto 0.65rem;
  object-fit: contain;
}

.carousel__caption h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--promedi-green);
}

.carousel__caption p {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--gray-700);
}

.carousel__btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-100);
  border-radius: 50%;
  background: var(--white);
  color: var(--promedi-green);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.carousel__btn:hover {
  background: var(--promedi-green);
  color: var(--white);
  transform: scale(1.05);
}

.carousel__btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel__dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: var(--gray-100);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.carousel__dot.is-active {
  background: var(--promedi-green);
  transform: scale(1.15);
}

@media (min-width: 1024px) {
  .modes {
    max-width: 720px;
    gap: 1.25rem;
  }

  .mode-card img {
    max-height: 160px;
    margin-top: 0.75rem;
  }

  .mode-card__body {
    padding: 1rem 1.15rem 1.25rem;
  }

  .mode-card h3 {
    font-size: 1.05rem;
  }

  .mode-card p {
    font-size: 0.9rem;
  }

  .carousel--desktop {
    max-width: 920px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .carousel--desktop .carousel__btn,
  .carousel--desktop .carousel__dots {
    display: none;
  }

  .carousel--desktop .carousel__viewport {
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
    mask-image: linear-gradient(
      90deg,
      transparent,
      #000 8%,
      #000 92%,
      transparent
    );
  }

  .carousel--desktop .carousel__track {
    display: flex;
    width: max-content;
    gap: 1rem;
    animation: carousel-marquee 28s linear infinite;
  }

  .carousel--desktop .carousel__track:hover {
    animation-play-state: paused;
  }

  .carousel--desktop .carousel__slide {
    flex: 0 0 168px;
    padding: 0.75rem 0.5rem 0.65rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
  }

  .carousel--desktop .carousel__slide img {
    width: 80px;
    margin-bottom: 0.6rem;
  }

  .carousel--desktop .carousel__caption h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
  }

  .carousel--desktop .carousel__caption p {
    font-size: 0.82rem;
  }
}

@keyframes carousel-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.specs-inline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.specs-inline > div {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-inline strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
}

.specs-inline span {
  font-size: 0.82rem;
  opacity: 0.75;
}

.treatments {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.treatment-card {
  padding: 1.6rem;
  border-radius: var(--radius);
  background: var(--white);
  border-top: 4px solid var(--promedi-red);
  box-shadow: var(--shadow);
}

.treatment-card h3 {
  color: var(--promedi-green);
  font-size: 1.05rem;
}

.treatment-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray-700);
}

.faq {
  display: grid;
  gap: 0.85rem;
}

.faq__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.2rem 1.2rem;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 1rem 0;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.72);
}

.cta-block {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.cta-block h2 {
  margin-bottom: 1rem;
}

.cta-block > p {
  margin-bottom: 0;
}

.cta-benefits {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 2rem;
  display: grid;
  gap: 0.65rem;
  text-align: left;
}

.cta-benefits li {
  padding-left: 1.5rem;
  position: relative;
}

.cta-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--visage-gold);
  font-weight: 700;
}

.cta-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cta-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.cta-contact__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #25d366;
  color: var(--white);
}

.cta-contact__icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.cta-contact__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
}

.cta-contact__copy strong {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--promedi-green);
}

.cta-contact__copy span {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.4;
}

.cta-contact__arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gray-50);
  color: var(--promedi-green);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.cta-contact:hover .cta-contact__arrow {
  background: var(--promedi-green);
  color: var(--white);
}

.cta-contact__arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer {
  background: #08100c;
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(2rem, 5vw, 2.5rem) 0 calc(clamp(2rem, 5vw, 2.5rem) + 72px);
}

.footer__inner {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}

.footer__links a:hover {
  color: var(--white);
}

.float-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease;
}

.float-whatsapp:hover {
  transform: scale(1.06);
}

.float-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* Tablet */
@media (max-width: 1100px) {
  .header__cta {
    display: none;
  }

  .header__menu {
    display: block;
  }

  .header__overlay {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .header__panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    right: 0;
    width: min(360px, 100%);
    height: calc(100dvh - var(--header-h));
    padding: 1.25rem var(--page-gutter) 2rem;
    background: rgba(10, 14, 20, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
    overflow-y: auto;
  }

  .header__nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .header__nav a {
    padding: 0.95rem 0;
    font-size: 1rem;
    white-space: normal;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header__panel-actions {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .header.nav-open .header__panel {
    transform: translateX(0);
  }

  .header.nav-open .header__overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header.nav-open .header__menu span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header.nav-open .header__menu span:nth-child(2) {
    opacity: 0;
  }

  .header.nav-open .header__menu span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 1024px) {
  .hero__grid,
  .split,
  .modes {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .hero__visual {
    order: -1;
  }

  .hero__device {
    margin-top: 30px;
    width: min(300px, 75vw);
    margin-inline: auto;
  }

  .hero__content {
    text-align: center;
  }

  .hero__product-logo {
    margin-inline: auto;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .highlights__grid,
  .treatments,
  .specs-inline,
  .hero__stats {
    margin-top: 50px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head,
  .section-head--center {
    margin-bottom: clamp(2rem, 5vw, 3rem);
  }

  .split--reverse .split__media {
    order: -1;
  }

  .split--reverse .split__content {
    order: 0;
  }

  .highlights {
    margin-top: -1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 72px;
    --page-gutter: 28px;
  }

  .section-head--center,
  .section-head {
    text-align: left;
  }

  .hero {
    min-height: auto;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .hero__stats li {
    padding: 0.85rem;
  }

  .hero__stats strong {
    font-size: 1.25rem;
  }

  .highlights {
    margin-top: 0;
    padding-top: 0.5rem;
  }

  .highlights__grid {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 1rem;
    align-items: start;
    padding: 1.25rem;
  }

  .highlight-card__icon {
    margin-bottom: 0;
    grid-row: span 2;
  }

  .applicators-heading {
    max-width: none;
  }

  .applicators-intro {
    text-align: left;
    margin-bottom: 2rem;
  }

  .carousel:not(.carousel--desktop) {
    max-width: min(340px, 100%);
    grid-template-columns: auto 1fr auto;
    gap: 0.5rem;
  }

  .carousel:not(.carousel--desktop) .carousel__btn {
    display: grid;
    width: 38px;
    height: 38px;
  }

  .carousel:not(.carousel--desktop) .carousel__btn svg {
    width: 18px;
    height: 18px;
  }

  .carousel__viewport {
    touch-action: pan-y pinch-zoom;
  }

  .carousel__slide {
    padding: 0.7rem 0.4rem 0.6rem;
  }

  .carousel__slide img {
    width: min(96px, 36vw);
    margin-bottom: 0.5rem;
  }

  .carousel__caption h3 {
    font-size: 1.1rem;
  }

  .carousel__caption p {
    font-size: 0.85rem;
  }

  .modes {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  #diferenciais .split__media-img--transparent {
    width: min(85%, 320px);
    max-height: 280px;
  }

  .treatments {
    grid-template-columns: 1fr;
  }

  .specs-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-block {
    text-align: left;
  }

  .cta-contact {
    max-width: none;
  }

  .badge {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .float-whatsapp {
    right: 1rem;
    bottom: 1rem;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 420px) {
  .applicators-heading {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .applicators-heading__copy {
    align-items: center;
  }

  .applicators-intro {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header__panel {
    width: 100%;
    border-left: 0;
  }

  .applicators-heading {
    align-items: flex-start;
  }

  .applicators-heading__number {
    font-size: clamp(4.5rem, 22vw, 5.5rem);
  }

  .faq__item {
    padding-inline: 1rem;
  }

  .faq__item summary {
    font-size: 0.95rem;
    padding-right: 0.25rem;
  }

  .footer__links {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .modes {
    grid-template-columns: 1fr;
  }
}
