:root {
  --kieravix-bg: #151515;
  --kieravix-bg-deep: #101010;
  --kieravix-bg-soft: #1c1c1b;
  --kieravix-bg-card: rgba(25, 25, 24, 0.78);
  --kieravix-bg-elevated: rgba(33, 32, 30, 0.84);

  --kieravix-gold: #d8a84f;
  --kieravix-gold-light: #edc777;
  --kieravix-gold-dark: #a8772d;

  --kieravix-text: #e7e4df;
  --kieravix-text-strong: #fff8eb;
  --kieravix-text-soft: #b9b6b0;
  --kieravix-muted: rgba(231, 228, 223, 0.62);
  --kieravix-border: rgba(216, 168, 79, 0.35);
  --kieravix-border-soft: rgba(216, 168, 79, 0.14);

  --kieravix-success: #7f9b72;
  --kieravix-warning: #c7903d;
  --kieravix-danger: #a95c52;

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-height: 0px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-card: 0 24px 70px rgba(0, 0, 0, 0.32);
  --shadow-gold: 0 18px 44px rgba(216, 168, 79, 0.2);
  --transition: 200ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--kieravix-text);
  background: var(--kieravix-bg);
  font-family: "Montserrat", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--kieravix-gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--kieravix-bg);
  background: var(--kieravix-gold-light);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform var(--transition);
}

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

.site-shell {
  min-height: 100vh;
  overflow: clip;
  background:
    radial-gradient(circle at 80% 8%, rgba(216, 168, 79, 0.11), transparent 28%),
    linear-gradient(180deg, var(--kieravix-bg), var(--kieravix-bg-deep));
}

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--kieravix-border);
  background: rgba(21, 21, 21, 0.88);
  backdrop-filter: blur(18px);
  transition:
    min-height var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.site-header.is-scrolled {
  border-color: rgba(216, 168, 79, 0.2);
  background: rgba(16, 16, 16, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

.site-header__inner {
  min-height: var(--header-main-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand__name {
  width: 150px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  color: var(--kieravix-text-soft);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color var(--transition),
    background var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--kieravix-gold-light);
  background: rgba(216, 168, 79, 0.07);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--kieravix-border);
  border-radius: var(--radius-sm);
  color: var(--kieravix-gold-light);
  background: rgba(216, 168, 79, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.nav-toggle span + span {
  margin-top: -12px;
  transform: translateY(12px);
}

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

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(5px) rotate(-45deg);
}

.hero-ticker {
  height: 42px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(168, 119, 45, 0.28);
  background: #efe4cf;
}

.hero-ticker__track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  animation: heroTickerScroll 24s linear infinite;
  will-change: transform;
}

.hero-ticker__set {
  height: 100%;
  padding-right: 42px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 24px;
}

.hero-ticker__kieravix {
  width: 80px;
  height: 20px;
  object-fit: contain;
}

.hero-ticker__360 {
  width: 80px;
  height: 20px;
  object-fit: contain;
}

@keyframes heroTickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section {
  position: relative;
  min-height: 54vh;
  padding: 120px 0;
  border-bottom: 1px solid var(--kieravix-border-soft);
}


.section--hero {
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 calc(120px + 42px);
  background:
    radial-gradient(circle at 74% 22%, rgba(237, 199, 119, 0.16), transparent 30%),
    linear-gradient(135deg, var(--kieravix-bg-soft), var(--kieravix-bg));
}

.hero-honeycomb {
  --hex-w: clamp(82px, 7.6vw, 120px);
  position: absolute;
  top: 50%;
  right: max(-54px, -3vw);
  width: calc(var(--hex-w) * 4.75);
  height: calc(var(--hex-w) * 2.98);
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 0;
}

.hero-honeycomb__cell {
  position: absolute;
  width: var(--hex-w);
  aspect-ratio: 294 / 250;
  background: url("assets/hexagonal.svg") center / contain no-repeat;
  opacity: 0.3;
}

.hero-honeycomb__cell--1 {
  right: 0;
  top: 0;
  opacity: 0.72;
}

.hero-honeycomb__cell--2 {
  right: 0;
  top: calc(var(--hex-w) * 0.85);
  opacity: 0.66;
}

.hero-honeycomb__cell--3 {
  right: 0;
  top: calc(var(--hex-w) * 1.7);
  opacity: 0.52;
}

.hero-honeycomb__cell--4 {
  right: calc(var(--hex-w) * 0.75);
  top: calc(var(--hex-w) * 0.425);
  opacity: 0.54;
}

.hero-honeycomb__cell--5 {
  right: calc(var(--hex-w) * 0.75);
  top: calc(var(--hex-w) * 1.275);
  opacity: 0.42;
}

.hero-honeycomb__cell--6 {
  right: calc(var(--hex-w) * 1.5);
  top: 0;
  opacity: 0.32;
}

.hero-honeycomb__cell--7 {
  right: calc(var(--hex-w) * 1.5);
  top: calc(var(--hex-w) * 0.85);
  opacity: 0.23;
}

.hero-honeycomb__cell--8 {
  right: calc(var(--hex-w) * 1.5);
  top: calc(var(--hex-w) * 1.7);
  opacity: 0.15;
}

.hero-honeycomb__cell--9 {
  right: calc(var(--hex-w) * 2.25);
  top: calc(var(--hex-w) * 0.425);
  opacity: 0.1;
}

.hero-honeycomb__cell--10 {
  right: calc(var(--hex-w) * 2.25);
  top: calc(var(--hex-w) * 1.275);
  opacity: 0.06;
}

.hero-honeycomb__cell--11 {
  right: calc(var(--hex-w) * 3);
  top: calc(var(--hex-w) * 0.85);
  opacity: 0.025;
}

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

.section--gold {
  min-height: 32vh;
  color: var(--kieravix-bg);
  background:
    linear-gradient(135deg, rgba(237, 199, 119, 0.96), rgba(216, 168, 79, 0.96)),
    var(--kieravix-gold);
}

.section--anvisa {
  background:
    radial-gradient(circle at 18% 30%, rgba(216, 168, 79, 0.12), transparent 32%),
    linear-gradient(135deg, var(--kieravix-bg), var(--kieravix-bg-soft));
}

.section__slot {
  position: relative;
  z-index: 1;
}





.hero-section {
  width: 100%;
  padding-inline: clamp(32px, 5vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-content {
  max-width: 720px;
}

.hero-brand-lockup {
  width: fit-content;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-brand-mark {
  width: 70px;
  height: auto;
  object-fit: contain;
}

.hero-brand-360 {
  width: min(32vw, 128px);
  height: auto;
}

.hero-brand-name {
  width: min(42vw, 214px);
  height: auto;
}

.hero-small-title {
  margin: 28px 0 0;
  color: var(--kieravix-gold-light);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.hero-content h1 {
  margin: 16px 0 0;
  color: var(--kieravix-text-strong);
  font-size: 45px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-subtitle {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--kieravix-text);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.42;
}

.hero-button {
  width: fit-content;
  min-width: min(100%, 320px);
  min-height: 58px;
  margin-top: 34px;
  padding: 17px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--kieravix-bg);
  background: var(--kieravix-gold);
  box-shadow: none;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.hero-button:hover {
  filter: brightness(1.05);
  box-shadow: 0 16px 34px rgba(216, 168, 79, 0.34);
  transform: translateY(-2px) scale(1.02);
}

.hero-visual {
  min-width: 0;
  display: grid;
  place-items: center;
}

.hero-kit-mock {
  width: min(100%, 560px);
  display: grid;
  place-items: center;
}

.hero-kit-mock img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

.problem-identification {
  color: var(--kieravix-text);
}

.problem-identification__header {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.problem-identification__header h2 {
  margin: 0;
  color: var(--kieravix-text-strong);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.problem-identification__header p,
.problem-identification__narrative p {
  color: var(--kieravix-text-soft);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.problem-identification__header p {
  margin: 14px auto 0;
}

.problem-identification__narrative {
  max-width: 760px;
  margin: 38px auto 0;
  text-align: center;
}

.problem-identification__narrative p {
  margin: 0;
}

.problem-identification__narrative p + p {
  margin-top: 18px;
}

.problem-identification__narrative blockquote {
  margin: 18px 0;
  color: var(--kieravix-gold-light);
  font-size: clamp(23px, 2.6vw, 32px);
  font-weight: 900;
  line-height: 1.1;
}

.symptoms-gallery {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.symptom-visual {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 168, 79, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(216, 168, 79, 0.04);
}

.symptom-visual img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.symptom-visual figcaption {
  min-height: 66px;
  padding: 15px 16px;
  display: flex;
  align-items: center;
  color: var(--kieravix-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.problem-symptoms {
  margin-top: 54px;
  padding-top: 36px;
  border-top: 1px solid rgba(216, 168, 79, 0.22);
}

.problem-symptoms h3 {
  margin: 0 0 24px;
  color: var(--kieravix-text-strong);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.problem-symptoms ul {
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 34px;
  list-style: none;
}

.problem-symptoms li {
  position: relative;
  padding-left: 22px;
  color: var(--kieravix-text-soft);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.problem-symptoms li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--kieravix-gold);
  transform: translateY(-50%);
}

.problem-medical-note {
  max-width: 980px;
  margin: 46px auto 0;
  padding: 20px 0 0 22px;
  border-top: 1px solid rgba(216, 168, 79, 0.3);
  border-left: 3px solid var(--kieravix-gold-dark);
}

.problem-medical-note strong {
  display: block;
  color: var(--kieravix-gold-light);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.problem-medical-note p {
  margin: 10px 0 0;
  color: var(--kieravix-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.social-proof-section {
  text-align: center;
}

.social-proof-header {
  max-width: 860px;
  margin: 0 auto 34px;
}

.social-proof-header h2 {
  margin: 0;
  color: var(--kieravix-text-strong);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.social-proof-header strong {
  display: block;
  color: var(--kieravix-gold-light);
  font-size: 1.12em;
  font-weight: 900;
}

.social-proof-carousel {
  overflow: hidden;
}

.social-proof-track {
  width: 100%;
}

.social-proof-set {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.social-proof-set--clone {
  display: none;
}

.social-proof-card {
  min-height: 172px;
  margin: 0;
  overflow: hidden;
  border: 4px solid var(--kieravix-gold);
  border-radius: 14px;
  background: rgba(216, 168, 79, 0.06);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.social-proof-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.social-proof-button {
  width: min(100%, 420px);
  min-width: min(100%, 320px);
  min-height: 58px;
  margin: 36px auto 0;
  padding: 17px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--kieravix-bg);
  background: var(--kieravix-gold);
  box-shadow: none;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.social-proof-button:hover {
  filter: brightness(1.05);
  box-shadow: 0 16px 34px rgba(216, 168, 79, 0.34);
  transform: translateY(-2px) scale(1.02);
}

@keyframes socialProofMobileScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 8px));
  }
}

.section--actives {
  background: var(--kieravix-bg);
}

.actives-section {
  color: var(--kieravix-text);
}

.actives-header {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.actives-header h2 {
  margin: 0;
  color: var(--kieravix-text-strong);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.actives-header p {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--kieravix-text-soft);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
}

.actives-list {
  display: grid;
  gap: 24px;
}

.active-detail-card {
  min-height: 430px;
  padding: clamp(24px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  border: 1px solid rgba(216, 168, 79, 0.24);
  border-radius: var(--radius-lg);
  background: rgba(25, 25, 24, 0.74);
}

.active-detail-card--sand {
  color: #15120e;
  border-color: rgba(168, 119, 45, 0.32);
  background: #efe4cf;
}

.active-detail-card--sand.active-detail-card--reverse {
  grid-template-columns: minmax(0, 1.34fr) minmax(220px, 0.66fr);
}

.active-detail-card--reverse .active-detail-media {
  order: 2;
}

.active-detail-card--reverse .active-detail-content {
  order: 1;
}

.active-detail-media {
  min-width: 0;
  min-height: 330px;
  display: grid;
  place-items: center;
}

.active-product-scene {
  --vector-size: min(142%, 620px);
  --element-opacity: 0.62;
  position: relative;
  width: min(100%, 500px);
  min-height: 420px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: visible;
}

.active-elements-vector {
  position: absolute;
  inset: 50% auto auto 50%;
  width: var(--vector-size);
  max-height: 620px;
  display: block;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.86);
  transform-origin: center;
  mix-blend-mode: screen;
  filter: saturate(0.96) brightness(0.92);
  transition:
    transform 1.15s cubic-bezier(0.16, 0.82, 0.22, 1),
    opacity 0.65s ease;
  z-index: 0;
  will-change: transform, opacity;
}

.active-product-scene.is-visible .active-elements-vector {
  opacity: var(--element-opacity);
  transform: translate(-50%, -50%) scale(1);
}

.active-product-mockup {
  position: relative;
  width: min(76%, 350px);
  max-height: 400px;
  display: block;
  object-fit: contain;
  z-index: 1;
}

.active-product-scene--capsules {
  --vector-size: min(148%, 650px);
}

.active-product-scene--capsules .active-product-mockup {
  width: min(82%, 380px);
}

.active-product-scene--drops {
  --vector-size: min(158%, 610px);
  --element-opacity: 0.66;
}

.active-product-scene--drops .active-product-mockup,
.active-product-scene--tonic .active-product-mockup {
  width: min(70%, 310px);
  max-height: 380px;
}

.active-product-scene--tonic {
  --vector-size: min(152%, 600px);
}

.active-detail-content {
  min-width: 0;
}

.active-product-label {
  display: block;
  margin-bottom: 12px;
  color: var(--kieravix-gold-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.active-detail-card--sand .active-product-label {
  color: var(--kieravix-gold-dark);
}

.active-detail-content h3 {
  margin: 0;
  color: var(--kieravix-text-strong);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.active-detail-card--sand .active-detail-content h3 {
  color: #15120e;
}

.active-product-description {
  margin: 14px 0 0;
  color: var(--kieravix-text-soft);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}

.active-detail-card--sand .active-product-description {
  color: rgba(21, 18, 14, 0.74);
}

.active-info-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
}

.active-info-grid > div {
  padding: 18px;
  border: 1px solid rgba(216, 168, 79, 0.18);
  border-radius: var(--radius-md);
  background: rgba(216, 168, 79, 0.05);
}

.active-detail-card--sand .active-info-grid > div {
  border-color: rgba(168, 119, 45, 0.24);
  background: rgba(255, 251, 242, 0.36);
}

.active-info-grid h4 {
  margin: 0 0 12px;
  color: var(--kieravix-gold-light);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.active-detail-card--sand .active-info-grid h4 {
  color: var(--kieravix-gold-dark);
}

.active-info-grid ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.active-info-grid li {
  position: relative;
  padding-left: 18px;
  display: grid;
  gap: 3px;
  color: var(--kieravix-text);
  font-size: 15px;
  line-height: 1.45;
}

.active-info-grid li strong {
  color: var(--kieravix-text-strong);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.active-info-grid li span {
  color: var(--kieravix-text-soft);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.active-info-grid li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--kieravix-gold-light);
  transform: translateY(-50%);
}

.active-detail-card--sand .active-info-grid li {
  color: rgba(21, 18, 14, 0.82);
}

.active-detail-card--sand .active-info-grid li strong {
  color: #15120e;
}

.active-detail-card--sand .active-info-grid li span {
  color: rgba(21, 18, 14, 0.68);
}

.active-detail-card--sand .active-info-grid li::before {
  background: var(--kieravix-gold-dark);
}

.active-info-grid p {
  margin: 0;
  color: var(--kieravix-text-soft);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.active-formula-icon {
  width: min(100%, 60px);
  height: auto;
  margin-top: 18px;
  display: block;
  margin: 20px auto;
}

.active-detail-card--sand .active-info-grid p {
  color: rgba(21, 18, 14, 0.76);
}

.client-gallery-section {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(280px, 350px) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  overflow: visible;
}

.client-gallery-copy {
  position: relative;
  z-index: 3;
  max-width: 350px;
}

.client-gallery-copy::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -120px;
  bottom: -70px;
  width: 180px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--kieravix-bg-soft) 0%, rgba(28, 28, 27, 0.86) 42%, transparent 100%);
}

.client-gallery-copy h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--kieravix-text-strong);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.client-gallery-button {
  position: relative;
  z-index: 1;
  min-width: min(100%, 320px);
  min-height: 58px;
  margin-top: 30px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--kieravix-bg);
  background: linear-gradient(135deg, var(--kieravix-gold-light), var(--kieravix-gold));
  box-shadow: 0 12px 26px rgba(216, 168, 79, 0.26);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.client-gallery-button:hover {
  filter: brightness(1.08);
  box-shadow: 0 14px 28px rgba(21, 18, 14, 0.18);
  transform: translateY(-2px) scale(1.03);
}

.client-gallery-carousel {
  position: relative;
  z-index: 1;
  width: calc(100% + max(var(--gutter), ((100vw - var(--container)) / 2)));
  max-width: calc(100vw - var(--gutter));
  overflow: hidden;
  padding: 18px 0;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 10%, #000 32%, #000 96%, transparent 100%);
}

.client-gallery-carousel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 24%;
  pointer-events: none;
  background: linear-gradient(90deg, var(--kieravix-bg-soft) 0%, rgba(28, 28, 27, 0.7) 42%, transparent 100%);
}

.client-gallery-track {
  width: max-content;
  display: flex;
  gap: 18px;
  animation: clientGalleryDrift 38s linear infinite;
  will-change: transform;
}

.client-gallery-set {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: 450px;
  grid-auto-columns: 280px;
  gap: 18px;
}

.client-gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 168, 79, 0.18);
  border-radius: 18px;
  background: rgba(216, 168, 79, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.client-gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@keyframes clientGalleryDrift {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}


.testimonials-section {
  max-width: 1080px;
}

.testimonials-header {
  max-width: 850px;
  margin: 0 auto 28px;
  text-align: center;
}

.testimonials-header h2,
.testimonials-header strong {
  margin: 0;
  color: var(--kieravix-gold-light);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.testimonials-header strong {
  width: fit-content;
  margin: 6px auto 0;
  padding: 2px 10px 4px;
  display: block;
  color: #efe4cf;
  background: #15120e;
}

.testimonials-header p {
  margin: 10px 0 0;
  color: var(--kieravix-text-soft);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.45;
}

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

.testimonial-card {
  min-height: 240px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(216, 168, 79, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(25, 25, 24, 0.78);
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  color: var(--kieravix-gold-light);
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
}

.testimonial-card h3 {
  margin: 24px 0 8px;
  color: var(--kieravix-text);
  font-size: 20px;
  font-weight: 900;
}

.testimonial-card p {
  margin: 0;
  color: var(--kieravix-text-soft);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  margin-top: auto;
  overflow: hidden;
  border: 2px solid rgba(237, 199, 119, 0.5);
  border-radius: 999px;
  background: rgba(216, 168, 79, 0.1);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.testimonials-action {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.testimonial-button {
  min-width: min(100%, 320px);
  min-height: 58px;
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--kieravix-bg);
  background: linear-gradient(135deg, var(--kieravix-gold-light), var(--kieravix-gold));
  box-shadow: 0 12px 26px rgba(216, 168, 79, 0.26);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.testimonial-button:hover {
  filter: brightness(1.05);
  box-shadow: 0 16px 34px rgba(216, 168, 79, 0.32);
  transform: translateY(-2px) scale(1.03);
}

.section--guarantee {
  color: #17130e;
  background: #efe4cf;
  border-bottom-color: rgba(168, 119, 45, 0.22);
}

.section--guarantee .guarantee-content h2 {
  color: #17130e;
}

.section--guarantee .guarantee-content h2 span,
.section--guarantee .guarantee-lead span {
  color: var(--kieravix-gold-dark);
}

.section--guarantee .guarantee-content p,
.section--guarantee .guarantee-lead {
  color: rgba(23, 19, 14, 0.78) !important;
}

.section--guarantee .guarantee-priority {
  border-color: var(--kieravix-gold-dark);
  color: #17130e;
  background: rgba(255, 251, 242, 0.44);
}

.section--guarantee .guarantee-priority span {
  color: var(--kieravix-gold-dark);
}

.guarantee-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
}

.guarantee-mock {
  min-height: 440px;
  display: grid;
  place-items: center;
}

.guarantee-image {
  width: min(100%, 520px);
  height: auto;
  display: block;
}


.guarantee-content h2 {
  margin: 0 0 14px;
  color: var(--kieravix-text-strong);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.guarantee-content h2 span,
.guarantee-lead span {
  color: var(--kieravix-gold-light);
}

.guarantee-content p {
  margin: 0 0 18px;
  color: var(--kieravix-text);
  font-size: 18px;
  line-height: 1.55;
}

.guarantee-lead {
  color: var(--kieravix-text-soft) !important;
}

.guarantee-priority {
  margin-top: 38px;
  min-height: 52px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 2px solid var(--kieravix-gold);
  border-radius: var(--radius-md);
  color: var(--kieravix-text-strong);
}

.guarantee-priority span {
  color: var(--kieravix-gold-light);
  font-size: 22px;
  line-height: 1;
}

.guarantee-priority strong {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}


.image-placeholder {
  width: 100%;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(237, 199, 119, 0.34);
  border-radius: var(--radius-md);
  background: rgba(216, 168, 79, 0.06);
  color: var(--kieravix-text-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-placeholder--product {
  height: 178px;
}

.pricing-product-image {
  width: 100%;
  height: 178px;
  display: block;
  object-fit: contain;
}

.image-placeholder--guarantee {
  width: min(100%, 430px);
  aspect-ratio: 1 / 1;
}

.image-placeholder--anvisa {
  min-height: 420px;
  border-style: solid;
  background:
    linear-gradient(135deg, rgba(216, 168, 79, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(216, 168, 79, 0.05);
}

.anvisa-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: center;
}

.anvisa-media {
  min-width: 0;
}

.anvisa-image {
  width: min(100%, 520px);
  height: auto;
  display: block;
  margin-inline: auto;
}

.anvisa-content {
  max-width: 620px;
}

.anvisa-content h2 {
  margin: 0 0 12px;
  color: var(--kieravix-text-strong);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.anvisa-content p {
  margin: 0;
  color: var(--kieravix-text);
  font-size: 18px;
  line-height: 1.55;
}

.anvisa-process-list {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.anvisa-process-list li {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(216, 168, 79, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(10, 10, 10, 0.22);
}

.anvisa-process-list strong {
  color: var(--kieravix-text-strong);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.anvisa-process-list span {
  flex: 0 0 auto;
  color: var(--kieravix-gold-light);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.plans-benefits-wrap {
  width: 100%;
  margin-top: 40px;
  padding: 20px var(--gutter);
  background: transparent;
}

.plans-benefits-card {
  padding: 18px 26px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(216, 168, 79, 0.28);
  border-radius: var(--radius-lg);
  background: transparent;
  box-shadow: none;
}

.plans-benefit-item {
  min-width: 0;
  margin: -6px;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.plans-benefit-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 168, 79, 0.18);
  border-radius: 999px;
  color: var(--kieravix-gold-light);
  background: rgba(216, 168, 79, 0.08);
  box-shadow: 0 5px 14px rgba(216, 168, 79, 0.08);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.plans-benefit-icon svg {
  width: 30px;
  height: 30px;
  display: block;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.plans-benefit-content {
  min-width: 0;
  text-decoration: none;
}

.plans-benefit-content h3 {
  margin: 0 0 4px;
  color: var(--kieravix-text-strong);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.plans-benefit-content p {
  margin: 0;
  color: var(--kieravix-text-soft);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.plans-benefit-divider {
  width: 1px;
  height: 42px;
  justify-self: center;
  background: rgba(216, 168, 79, 0.22);
}

.plans-benefit-item:hover {
  background: rgba(216, 168, 79, 0.08);
  transform: translateY(-2px);
}

.plans-benefit-item:hover .plans-benefit-icon {
  color: var(--kieravix-bg);
  border-color: rgba(237, 199, 119, 0.36);
  background: linear-gradient(135deg, var(--kieravix-gold-light), var(--kieravix-gold));
  box-shadow:
    0 8px 18px rgba(216, 168, 79, 0.22),
    0 0 0 6px rgba(216, 168, 79, 0.08);
  transform: translateY(-3px) scale(1.06);
}

.plans-benefit-item:hover .plans-benefit-icon svg {
  transform: scale(1.08) rotate(-3deg);
}

.plans-benefit-item:hover .plans-benefit-content h3 {
  color: var(--kieravix-gold-light);
}


.pricing-area {
  padding-top: 0;
}

.pricing-header {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.pricing-header .section-copy {
  margin: 12px auto 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  min-width: 0;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(216, 168, 79, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(18, 18, 18, 0.68);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.pricing-card--featured {
  border-color: var(--kieravix-gold);
  box-shadow:
    0 24px 68px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(237, 199, 119, 0.24);
}

.popular-ribbon {
  position: absolute;
  top: -18px;
  left: 50%;
  z-index: 2;
  min-width: min(82%, 252px);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--kieravix-gold-light);
  border-radius: 999px;
  color: var(--kieravix-gold-light);
  background: var(--kieravix-bg);
  box-shadow: 0 10px 22px rgba(216, 168, 79, 0.2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.pricing-card h3 {
  margin: 18px 0 14px;
  color: var(--kieravix-text-strong);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.pricing-checklist {
  width: 100%;
  min-height: 108px;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
  text-align: left;
}

.pricing-checklist li {
  position: relative;
  padding-left: 27px;
  color: var(--kieravix-text-soft);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.pricing-checklist li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(216, 168, 79, 0.12);
}

.pricing-checklist li::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 5px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--kieravix-gold-light);
  border-bottom: 2px solid var(--kieravix-gold-light);
  transform: rotate(-45deg);
}

.pricing-separator {
  width: 70px;
  height: 2px;
  margin: 24px auto 20px;
  border-radius: 999px;
  background: var(--kieravix-gold);
}

.pricing-installments {
  margin: 0 0 4px;
  color: var(--kieravix-text-strong);
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1;
  display: block;
  text-align: center;
}

.pricing-installments span {
  color: var(--kieravix-text-soft);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  display: block;
  text-align: center;
}

.pricing-cash {
  margin: 0 0 28px;
  color: var(--kieravix-text-soft);
  font-size: 14px;
  line-height: 1.4;
  min-width: 100%;
}

.kieravix-button-wrapper {
  width: 100%;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kieravix-buy-button {
  position: relative;
  width: 100%;
  min-width: min(100%, 320px);
  min-height: 58px;
  padding: 16px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  color: var(--kieravix-bg) !important;
  background-image: linear-gradient(45deg, var(--kieravix-gold-dark), var(--kieravix-gold-light), var(--kieravix-gold), var(--kieravix-gold-light));
  background-size: 400% 400%;
  box-shadow: 0 8px 18px rgba(216, 168, 79, 0.26);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  animation: kieravixTexture 6.8s infinite cubic-bezier(0.2, 0.5, 0.9, 0.6);
  transform: scale(1);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    filter 0.45s ease;
}

.kieravix-buy-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.1) 42%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.kieravix-buy-button .elementor-button-content-wrapper {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.kieravix-buy-button .elementor-button-text {
  color: var(--kieravix-bg) !important;
  font-weight: 900;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.16);
}

.kieravix-buy-button:hover {
  color: var(--kieravix-bg) !important;
  filter: brightness(1.05);
  box-shadow: 0 12px 28px rgba(216, 168, 79, 0.38);
  transform: scale(1.045);
}

.kieravix-buy-button:active {
  box-shadow: 0 5px 14px rgba(216, 168, 79, 0.26);
  transform: scale(0.98);
}

@keyframes kieravixTexture {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.kieravix-faq-widget {
  max-width: 896px;
}

.kieravix-faq-widget .faq-header {
  margin-bottom: 30px;
  text-align: center;
}

.kieravix-faq-widget .faq-title {
  margin: 0 0 8px;
  color: var(--kieravix-text-strong);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.kieravix-faq-widget .faq-subtitle {
  max-width: 620px;
  margin: 0 auto;
  color: var(--kieravix-text-soft);
  font-size: 15px;
  line-height: 1.75;
}

.kieravix-faq-widget .faq-accordion {
  display: grid;
  gap: 14px;
}

.kieravix-faq-widget .faq-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 168, 79, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(25, 25, 24, 0.78);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.kieravix-faq-widget .faq-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--kieravix-gold), var(--kieravix-gold-light));
}

.kieravix-faq-widget .faq-card:hover,
.kieravix-faq-widget .faq-card.is-open {
  border-color: rgba(237, 199, 119, 0.34);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.kieravix-faq-widget .faq-heading {
  margin: 0;
  color: var(--kieravix-text);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.kieravix-faq-widget .faq-trigger {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 16px;
  padding: 24px 28px 22px;
  color: var(--kieravix-text);
  background: transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  white-space: normal;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.kieravix-faq-widget .faq-trigger:hover {
  color: var(--kieravix-gold-light);
  background: rgba(216, 168, 79, 0.07);
}

.kieravix-faq-widget .faq-question-text {
  display: block;
  width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

.kieravix-faq-widget .faq-trigger:focus-visible {
  outline: 3px solid rgba(237, 199, 119, 0.28);
  outline-offset: -8px;
}

.kieravix-faq-widget .faq-icon {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border: 1px solid rgba(216, 168, 79, 0.24);
  border-radius: 999px;
  background: rgba(216, 168, 79, 0.08);
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.kieravix-faq-widget .faq-icon::before,
.kieravix-faq-widget .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--kieravix-gold-light);
  transform: translate(-50%, -50%);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background-color 0.25s ease;
}

.kieravix-faq-widget .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.kieravix-faq-widget .faq-card.is-open .faq-icon {
  border-color: transparent;
  background: var(--kieravix-gold);
  transform: rotate(180deg);
}

.kieravix-faq-widget .faq-card.is-open .faq-icon::before,
.kieravix-faq-widget .faq-card.is-open .faq-icon::after {
  background: var(--kieravix-bg);
}

.kieravix-faq-widget .faq-card.is-open .faq-icon::after {
  opacity: 0;
}

.kieravix-faq-widget .faq-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease;
}

.kieravix-faq-widget .faq-card.is-open .faq-panel {
  opacity: 1;
}

.kieravix-faq-widget .faq-panel-inner {
  margin: 0 28px 28px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(216, 168, 79, 0.14);
}

.kieravix-faq-widget .faq-panel-inner p {
  margin: 0;
  color: var(--kieravix-text-soft);
  font-size: 15px;
  line-height: 1.75;
}

.faq-support-box {
  margin: 28px auto 0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(216, 168, 79, 0.24);
  border-radius: var(--radius-md);
  background: rgba(216, 168, 79, 0.06);
}

.faq-whatsapp-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--kieravix-gold-light);
}

.faq-whatsapp-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-support-box p {
  margin: 0;
  color: var(--kieravix-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.site-footer {
  min-height: 220px;
  padding: 58px 0 28px;
  color: var(--kieravix-text-soft);
  background: var(--kieravix-bg-deep);
  border-top: 1px solid rgba(216, 168, 79, 0.18);
}

.footer-inner {
  display: grid;
  gap: 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.footer-brand {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.footer-brand__mark {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.footer-brand__name {
  width: 172px;
  height: auto;
}

.footer-column {
  display: grid;
  gap: 16px;
}

.footer-title {
  margin: 0;
  color: var(--kieravix-gold-light);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  line-height: 1.25;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 11px;
}

.footer-contact {
  font-style: normal;
}

.footer-links a,
.footer-contact a {
  width: fit-content;
  color: var(--kieravix-text-soft);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--kieravix-gold-light);
}

.security-mocks {
  display: grid;
  gap: 10px;
}

.security-seal {
  width: min(100%, 142px);
  height: auto;
  display: block;
}

.security-mock {
  width: min(100%, 162px);
  min-height: 42px;
  border: 1px dashed rgba(237, 199, 119, 0.34);
  border-radius: var(--radius-sm);
  background: rgba(216, 168, 79, 0.06);
}

.footer-disclaimer {
  max-width: 980px;
  margin: 28px auto 0;
  color: rgba(231, 228, 223, 0.52);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.footer-copyright {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(216, 168, 79, 0.14);
  color: rgba(231, 228, 223, 0.64);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.section-header {
  max-width: 720px;
  margin-bottom: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--kieravix-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.section-title {
  margin: 0;
  color: var(--kieravix-text-strong);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.section-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--kieravix-text-soft);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.8;
}

.section--gold .eyebrow,
.section--gold .section-title {
  color: var(--kieravix-bg);
}

.section--gold .section-copy {
  color: rgba(21, 21, 21, 0.72);
}

.button {
  min-width: min(100%, 320px);
  min-height: 58px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

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

.button--primary {
  color: var(--kieravix-bg);
  background: linear-gradient(135deg, var(--kieravix-gold-light), var(--kieravix-gold));
  box-shadow: var(--shadow-gold);
}

.button--primary:hover {
  background: linear-gradient(135deg, #f4d796, var(--kieravix-gold-light));
}

.button--secondary {
  color: var(--kieravix-gold-light);
  border-color: var(--kieravix-border);
  background: rgba(216, 168, 79, 0.04);
}

.button--secondary:hover {
  border-color: var(--kieravix-gold);
  background: rgba(216, 168, 79, 0.1);
}

.panel {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--kieravix-border);
  border-radius: var(--radius-lg);
  background: var(--kieravix-bg-card);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.card {
  padding: 26px;
  border: 1px solid var(--kieravix-border);
  border-radius: var(--radius-md);
  background: var(--kieravix-bg-card);
  box-shadow: var(--shadow-card);
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.section--comparison {
  color: #17130e;
  background: #efe4cf;
  border-bottom-color: rgba(168, 119, 45, 0.22);
}

.comparison-header {
  max-width: 700px;
  margin: 0 auto 54px;
  text-align: center;
}

.comparison-header h2 {
  margin: 0;
  color: #17130e;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.comparison-header h2 span {
  color: var(--kieravix-gold-dark);
}

.comparison-header p {
  margin: 14px auto 0;
  color: rgba(23, 19, 14, 0.72);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
}

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(18px, 3vw, 42px);
}

.comparison-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.comparison-product-image {
  width: 100%;
  height: 360px;
  display: grid;
  place-items: end center;
}

.comparison-product-image img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.comparison-product-image--kieravix img {
  max-width: 360px;
}

.comparison-product-image--others img {
  max-width: 280px;
  opacity: 0.82;
}

.comparison-column h3 {
  width: 100%;
  padding-top: 22px;
  position: relative;
  z-index: 1;
  color: #17130e;
  background: #efe4cf;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.comparison-column--kieravix h3 {
  color: var(--kieravix-gold-dark);
}

.comparison-list {
  width: min(100%, 390px);
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.comparison-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(23, 19, 14, 0.78);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
}

.comparison-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--kieravix-gold-dark);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.comparison-column--others .comparison-icon {
  color: var(--kieravix-danger);
}

.comparison-divider {
  display: grid;
  place-items: center;
  position: relative;
}

.comparison-divider::before {
  content: "";
  width: 1px;
  height: 100%;
  background: rgba(168, 119, 45, 0.34);
}

.comparison-divider span {
  position: absolute;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(168, 119, 45, 0.48);
  border-radius: 50%;
  color: var(--kieravix-gold-dark);
  background: #efe4cf;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.button-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 42px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: #2d210e !important;
  background: linear-gradient(180deg, #fff2c7 0%, #f7d98a 18%, #e8bc63 45%, #d69d3b 70%, #b97a22 100%);
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.6), inset 0 -2px 2px rgba(0, 0, 0, 0.18), 0 12px 30px rgba(216, 168, 79, 0.35);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  animation: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.button-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.75) 48%, transparent 66%);
  transform: translateX(-180%);
  transition: transform 0.8s ease;
}

.button-gold > span,
.button-gold .elementor-button-content-wrapper {
  position: relative;
  z-index: 1;
}

.button-gold:hover {
  color: #2d210e !important;
  filter: none;
  transform: translateY(-3px);
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.7), inset 0 -2px 2px rgba(0, 0, 0, 0.18), 0 18px 45px rgba(216, 168, 79, 0.45);
}

.button-gold:hover::before {
  transform: translateX(180%);
}

.button-gold:active {
  transform: translateY(-1px);
}

.button-gold .elementor-button-text {
  color: #2d210e !important;
}

@media (max-width: 980px) {
  .hero-honeycomb {
    --hex-w: clamp(96px, 16vw, 108px);
    top: 58%;
    right: -28vw;
  }

  .hero-section {
    padding-inline: clamp(18px, 4vw, 34px);
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-kit-mock {
    width: min(100%, 460px);
  }

  .symptoms-gallery {
    gap: 14px;
  }

  .problem-symptoms ul {
    gap: 14px 22px;
  }

  .social-proof-header {
    margin-bottom: 26px;
  }

  .social-proof-carousel {
    margin-inline: calc(var(--gutter) * -1);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  }

  .social-proof-track {
    width: max-content;
    display: flex;
    gap: 16px;
    animation: socialProofMobileScroll 28s linear infinite;
    will-change: transform;
  }

  .social-proof-set,
  .social-proof-set--clone {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: minmax(250px, 74vw);
    gap: 16px;
  }

  .social-proof-card {
    min-height: 210px;
    border-width: 3px;
  }

  .social-proof-button {
    width: 100%;
    margin-top: 30px;
    font-size: 14px;
  }

  .active-detail-card,
  .active-detail-card--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .active-detail-card--reverse .active-detail-media,
  .active-detail-card--reverse .active-detail-content {
    order: initial;
  }

  .comparison-grid {
    grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
    gap: 18px;
  }

  .comparison-product-image {
    height: 310px;
  }

  .comparison-list li {
    font-size: 15px;
  }


  .active-detail-card--sand.active-detail-card--reverse {
    grid-template-columns: 1fr;
  }

  .active-detail-media {
    min-height: 280px;
  }

  .active-product-scene {
    --vector-size: min(146%, 500px);
    width: min(100%, 410px);
    min-height: 340px;
  }

  .active-product-scene--drops {
    --vector-size: min(156%, 500px);
  }

  .active-elements-vector {
    max-height: 500px;
  }

  .active-product-mockup {
    max-height: 330px;
  }

  .client-gallery-section {
    grid-template-columns: 1fr;
    gap: 34px;
    overflow: hidden;
  }

  .client-gallery-copy {
    max-width: 560px;
  }

  .client-gallery-copy::after {
    display: none;
  }

  .client-gallery-carousel::before {
    display: none;
  }

  .guarantee-section {
    grid-template-columns: 1fr;
  }

  .guarantee-mock {
    min-height: 430px;
  }

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

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

  .plans-benefits-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .plans-benefit-divider {
    width: 100%;
    height: 1px;
  }

  .kieravix-faq-widget {
    max-width: 100%;
  }

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

  .brand__name {
    width: 134px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: var(--gutter);
    left: var(--gutter);
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--kieravix-border);
    border-radius: var(--radius-md);
    background: rgba(16, 16, 16, 0.96);
    box-shadow: var(--shadow-card);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition:
      transform var(--transition),
      opacity var(--transition);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px;
  }

  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-section {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: center;
  }

  .hero-content {
    display: contents;
  }

  .hero-brand-lockup,
  .hero-content h1,
  .hero-subtitle,
  .hero-visual,
  .hero-button {
    width: 100%;
    align-self: stretch;
  }

  .hero-brand-lockup {
    order: 1;
    width: fit-content;
    margin-inline: auto;
  }

  .hero-content h1 {
    order: 2;
  }

  .hero-subtitle {
    order: 3;
    margin-inline: auto;
  }

  .hero-visual {
    order: 4;
    margin-top: 26px;
  }

  .hero-kit-mock {
    width: min(100%, 340px);
  }

  .hero-button {
    order: 5;
    width: min(100%, 360px);
    margin: 22px auto 0;
  }

  .hero-honeycomb {
    --hex-w: clamp(58px, 17vw, 78px);
    top: 63%;
    right: -48vw;
    opacity: 0.62;
  }

  .problem-identification__header p,
  .problem-identification__narrative p {
    font-size: 15px;
  }

  .problem-identification__narrative {
    margin-top: 30px;
  }

  .symptoms-gallery {
    margin-top: 38px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .symptom-visual figcaption {
    min-height: auto;
  }

  .problem-symptoms {
    margin-top: 38px;
    padding-top: 30px;
  }

  .problem-symptoms h3 {
    font-size: 22px;
  }

  .problem-symptoms ul {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .problem-symptoms li {
    font-size: 15px;
  }

  .problem-medical-note {
    margin-top: 36px;
    padding: 18px 0 0 16px;
  }

  .actives-header {
    margin-bottom: 30px;
  }

  .actives-header p {
    font-size: 15px;
  }

  .comparison-header {
    margin-bottom: 36px;
  }

  .comparison-header p {
    font-size: 15px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .comparison-divider {
    width: 100%;
    height: 1px;
    order: 1;
  }

  .comparison-divider::before {
    width: 100%;
    height: 1px;
  }

  .comparison-column--others {
    order: 2;
  }

  .comparison-product-image {
    height: 290px;
  }

  .comparison-product-image--kieravix img {
    max-width: 300px;
  }

  .comparison-product-image--others img {
    max-width: 230px;
  }



  .comparison-list {
    width: min(100%, 360px);
  }

  .comparison-list li {
    font-size: 15px;
  }

  .active-detail-card {
    min-height: auto;
    padding: 24px 18px;
    border-radius: var(--radius-md);
  }

  .active-detail-media {
    min-height: 250px;
  }

  .active-product-scene {
    --vector-size: min(142%, 390px);
    width: min(100%, 340px);
    min-height: 300px;
  }

  .active-product-scene--drops,
  .active-product-scene--tonic {
    --vector-size: min(152%, 390px);
  }

  .active-elements-vector {
    max-height: 390px;
  }

  .active-product-scene.is-visible .active-elements-vector {
    opacity: min(var(--element-opacity), 0.54);
  }

  .active-product-mockup {
    max-height: 300px;
  }

  .active-product-description {
    font-size: 15px;
  }

  .active-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .active-info-grid > div {
    padding: 16px;
  }

  .hero-brand-lockup {
    gap: 7px;
  }

  .hero-brand-mark {
    width: 58px;
  }

  .hero-brand-360 {
    width: min(42vw, 108px);
  }

  .hero-brand-name {
    width: min(62vw, 176px);
  }

  .hero-small-title {
    margin-top: 22px;
    font-size: 13px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-button {
    width: 100%;
  }

  .client-gallery-section {
    min-height: auto;
  }

  .client-gallery-button {
    width: 100%;
  }

  .client-gallery-carousel {
    width: calc(100% + (var(--gutter) * 2));
    max-width: none;
    margin-inline: calc(var(--gutter) * -1);
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  }

  .client-gallery-set {
    grid-template-rows: 360px;
    grid-auto-columns: 230px;
    gap: 12px;
  }

  .testimonials-header strong {
    width: auto;
  }

  .testimonial-card {
    min-height: 220px;
    padding: 22px;
  }

  .testimonial-button {
    width: 100%;
  }

  .guarantee-mock {
    min-height: auto;
  }

  .guarantee-content p {
    font-size: 16px;
  }

  .guarantee-priority {
    align-items: flex-start;
    padding: 16px;
  }

  .pricing-area {
    padding-top: 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pricing-card {
    padding: 26px 18px 22px;
  }

  .popular-ribbon {
    min-width: min(88%, 260px);
    font-size: 11px;
  }

  .image-placeholder--product {
    height: 150px;
  }

  .pricing-product-image {
    height: 150px;
  }

  .image-placeholder--anvisa {
    min-height: 320px;
  }

  .anvisa-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .anvisa-content {
    max-width: none;
  }

  .anvisa-process-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .kieravix-buy-button {
    min-height: 52px;
    padding: 15px 20px;
    font-size: 13px;
  }

  .plans-benefits-wrap {
    padding: 16px 10px;
  }

  .plans-benefits-card {
    border-radius: 18px;
    padding: 16px 14px;
  }

  .plans-benefit-item {
    align-items: flex-start;
    gap: 11px;
  }

  .plans-benefit-item:hover {
    transform: translateY(-1px);
  }

  .plans-benefit-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .plans-benefit-icon svg {
    width: 25px;
    height: 25px;
  }

  .plans-benefit-item:hover .plans-benefit-icon {
    transform: translateY(-2px) scale(1.04);
  }

  .plans-benefit-content h3 {
    margin-bottom: 3px;
    font-size: 15px;
  }

  .plans-benefit-content p {
    font-size: 13px;
  }

  .kieravix-faq-widget .faq-header {
    margin-bottom: 32px;
  }

  .kieravix-faq-widget .faq-title {
    font-size: 30px;
  }

  .kieravix-faq-widget .faq-subtitle,
  .kieravix-faq-widget .faq-panel-inner p {
    font-size: 14px;
  }

  .kieravix-faq-widget .faq-card::before {
    left: 22px;
    width: 58px;
  }

  .kieravix-faq-widget .faq-trigger {
    min-height: 68px;
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 12px;
    padding: 21px 18px 19px 22px;
    font-size: 15px;
  }

  .kieravix-faq-widget .faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .kieravix-faq-widget .faq-panel-inner {
    margin: 0 22px 24px;
    padding-top: 18px;
  }

  .faq-support-box {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 18px;
    text-align: left;
  }

  .faq-support-box p {
    text-align: left;
  }

  .site-footer {
    padding-top: 46px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand,
  .footer-column,
  .footer-links,
  .footer-contact,
  .security-mocks {
    justify-items: center;
    text-align: center;
  }

  .footer-links a,
  .footer-contact a {
    width: auto;
  }

  .security-mock {
    width: min(100%, 162px);
  }

  :root {
    --gutter: 14px;
    --header-height: 0px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand__name {
    width: 120px;
  }

  .section {
    min-height: 44vh;
    padding: 120px 0;
  }

  .section--hero {
    min-height: calc(100vh - var(--header-height));
    padding: 70px 0 calc(70px + 36px);
  }

  .hero-ticker {
    height: 36px;
  }

  .hero-ticker__set {
    padding-right: 28px;
    gap: 16px;
  }

  .hero-ticker__kieravix {
    width: 80px;
    height: 17px;
  }

  .hero-ticker__360 {
    width: 80px;
    height: 17px;
  }
}

.scroll-reveal {
  opacity: 0;
  translate: 0 34px;
  transition:
    opacity 720ms ease var(--reveal-delay, 0ms),
    translate 720ms cubic-bezier(0.16, 0.82, 0.22, 1) var(--reveal-delay, 0ms);
  will-change: opacity, translate;
}

.scroll-reveal.is-revealed {
  opacity: 1;
  translate: 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal.is-revealed {
    opacity: 1;
    translate: 0 0;
    transition: none;
  }

  .hero-ticker__track {
    animation: none;
    transform: translateX(0);
  }

  .client-gallery-track {
    animation: none;
    transform: translateX(0);
  }

  .client-gallery-button,
  .active-elements-vector,
  .testimonial-button,
  .kieravix-buy-button,
  .plans-benefit-item,
  .plans-benefit-icon,
  .plans-benefit-icon svg,
  .kieravix-faq-widget .faq-card,
  .kieravix-faq-widget .faq-trigger,
  .kieravix-faq-widget .faq-icon,
  .kieravix-faq-widget .faq-icon::before,
  .kieravix-faq-widget .faq-icon::after,
  .kieravix-faq-widget .faq-panel {
    transition: none;
  }
}
