:root {
  color-scheme: light;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --pistachio: #b7c491;
  --pistachio-deep: #66744f;
  --pistachio-dark: #3f4a32;
  --pistachio-soft: #eef3e1;
  --rose: #f3cad7;
  --rose-soft: #fff1f5;
  --paper: #fffefd;
  --cream: #f7f3ed;
  --ink: #24211d;
  --muted: #5f5a51;
  --line: #e4d9cb;
  --white: #ffffff;
  --whatsapp: #2f9f5b;
  --shadow: 0 14px 24px rgba(54, 50, 43, 0.1);
  --shadow-soft: 0 6px 14px rgba(54, 50, 43, 0.07);
  --header-height: 72px;
  --max: 1210px;
  --pad: 18px;
  --section-y: 62px;
  --body: "Poppins", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--pistachio);
  color: var(--ink);
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
a,
summary,
li,
strong,
span {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 16ch;
  font-size: 2.05rem;
  font-weight: 600;
}

h2 {
  font-size: 1.74rem;
  font-weight: 600;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px var(--pad);
  border-bottom: 1px solid rgba(102, 116, 79, 0.14);
  background: rgba(255, 254, 253, 0.94);
  color: var(--ink);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 254, 253, 0.98);
  box-shadow: 0 7px 12px rgba(54, 50, 43, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.08;
  text-decoration: none;
}

.brand-logo {
  flex: 0 0 auto;
  width: 48px;
  height: 49px;
  object-fit: contain;
}

.brand span {
  max-width: 13ch;
}

.site-header .button {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menu-toggle {
  position: relative;
  z-index: 42;
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(102, 116, 79, 0.2);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms var(--ease-out-quart), opacity 160ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  position: fixed;
  top: calc(var(--header-height) + 8px);
  right: var(--pad);
  left: var(--pad);
  z-index: 41;
  display: grid;
  gap: 2px;
  padding: 8px;
  border: 1px solid rgba(102, 116, 79, 0.16);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.98);
  box-shadow: 0 8px 14px rgba(54, 50, 43, 0.1);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 170ms ease, transform 170ms var(--ease-out-quart);
}

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

.nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.nav a:hover {
  background: var(--pistachio-soft);
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: auto;
  max-width: 100%;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.16;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  white-space: normal;
  transition: transform 160ms var(--ease-out-quart), box-shadow 180ms var(--ease-out-quart), background 180ms ease, color 180ms ease;
}

.button-icon,
.mobile-whatsapp img,
.footer-whatsapp img {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.button-primary .button-icon,
.mobile-whatsapp img,
.footer-whatsapp img {
  filter: invert(1);
}


.button-primary {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 7px 10px rgba(47, 159, 91, 0.18);
}

.button-primary:hover {
  background: #247f49;
  transform: translateY(-2px);
}


.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.86rem;
}

.button.is-pressing,
.button:active {
  transform: scale(0.985);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, var(--pistachio-soft) 0%, var(--rose-soft) 62%, var(--paper) 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("assets/logo-claudia-borboleta-900.png") no-repeat right -90px top 34px / min(70vw, 560px);
  opacity: 0.055;
  content: "";
}

.hero::after {
  position: absolute;
  right: -18%;
  bottom: -22%;
  left: -18%;
  z-index: -1;
  height: 44%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(90deg, rgba(183, 196, 145, 0.2), rgba(243, 202, 215, 0.36));
  content: "";
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  width: min(100%, calc(var(--max) + var(--pad) * 2));
  margin: 0 auto;
  padding: 42px var(--pad) 28px;
}

.hero-copy {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-width: 0;
  text-align: center;
  animation: hero-copy-enter 720ms var(--ease-out-expo) both;
}

.hero-logo {
  width: 138px;
  height: auto;
  object-fit: contain;
}

.place,
.section-kicker {
  margin: 0;
  color: var(--pistachio-dark);
  font-weight: 600;
}

.place {
  max-width: 34ch;
  font-size: 0.96rem;
}

.hero-lede {
  width: min(100%, 39ch);
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
}

.hero-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  width: min(100%, 342px);
  margin-top: 4px;
}

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

.hero-media {
  position: relative;
  width: min(100%, 560px);
  min-height: 480px;
  margin: 0 auto;
  animation: hero-media-enter 780ms 80ms var(--ease-out-expo) both;
}

.hero-photo {
  margin: 0;
}

.hero-photo img {
  width: 100%;
  object-fit: cover;
  border: 7px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-photo-main {
  width: min(86%, 430px);
  margin-left: auto;
}

.hero-photo-main img {
  aspect-ratio: 4 / 5;
  object-position: 50% 42%;
}

.hero-photo-small {
  position: absolute;
  bottom: 42px;
  left: 0;
  width: min(42%, 180px);
}

.hero-photo-small img,
.hero-photo-accent img {
  aspect-ratio: 3 / 4;
}

.hero-photo-accent {
  position: absolute;
  top: 24px;
  left: 12px;
  width: min(31%, 142px);
}

.hero-photo-accent img {
  object-position: 50% 42%;
}

.hero-note {
  position: absolute;
  top: 10px;
  right: 42px;
  padding: 8px 13px;
  border: 1px solid rgba(63, 74, 50, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--pistachio-dark);
  font-size: 0.78rem;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
}

.hero-seal {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: grid;
  gap: 2px;
  width: 148px;
  min-height: 108px;
  padding: 15px;
  border-radius: 8px;
  background: rgba(36, 33, 29, 0.94);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.hero-seal strong {
  font-size: 1.72rem;
  line-height: 1;
  font-weight: 700;
}

.hero-seal span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 500;
}

.benefit-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  overflow: visible;
  width: min(100%, calc(var(--max) + var(--pad) * 2));
  margin: 0 auto;
  padding: 0 var(--pad) 34px;
  list-style: none;
}

.benefit-strip li {
  flex: 1 1 min(100%, 220px);
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid rgba(102, 116, 79, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 500;
  text-align: center;
}

.intro-section,
.catalog-section,
.trust-section,
.social-proof,
.steps-section,
.about,
.faq,
.custom-section,
.final-cta {
  padding: var(--section-y) var(--pad);
}

.intro-section {
  display: grid;
  gap: 28px;
  background: var(--paper);
}

.intro-copy,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: min(100%, 780px);
  margin: 0 auto;
}

.intro-copy {
  text-align: center;
  justify-items: center;
}

.intro-copy p:not(.section-kicker),
.section-heading p:not(.section-kicker) {
  width: min(100%, 62ch);
  color: var(--muted);
  font-size: 1rem;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading.centered {
  text-align: center;
  justify-items: center;
}

.intro-stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: min(100%, 960px);
  margin: 0 auto;
}

.intro-stats article {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}

.intro-stats strong {
  color: var(--pistachio-dark);
  font-size: 1.86rem;
  line-height: 1;
  font-weight: 600;
}

.intro-stats span {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 400;
}

.catalog-section {
  background: var(--cream);
}

.catalog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(102, 116, 79, 0.14);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.product-card > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  padding: 18px;
}

.product-content p {
  color: var(--muted);
}

.product-content ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.product-content li {
  position: relative;
  padding-left: 18px;
}

.product-content li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pistachio);
  content: "";
}

.product-content .button {
  width: 100%;
  margin-top: 2px;
}

.custom-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  background: linear-gradient(135deg, var(--pistachio-soft), var(--rose-soft));
  color: var(--ink);
}

.custom-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  width: min(100%, 620px);
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

.custom-copy .section-kicker,
.final-cta .section-kicker {
  color: var(--pistachio-dark);
}

.custom-copy p:not(.section-kicker) {
  max-width: 56ch;
  color: var(--muted);
  font-size: 1rem;
}

.custom-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 720px);
  margin: 0 auto;
}

.custom-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.trust-section {
  background: var(--pistachio-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.trust-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px 13px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(102, 116, 79, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.trust-card span {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pistachio-deep);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-card p {
  color: var(--muted);
}

.social-proof {
  background: var(--rose-soft);
}

.carousel-wrapper {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
}

.social-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 10px 0 20px;
  width: 100%;
}

.social-carousel::-webkit-scrollbar {
  display: none;
}

.social-carousel .social-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

@media (min-width: 600px) {
  .social-carousel .social-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (min-width: 900px) {
  .social-carousel .social-card {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}

@media (min-width: 1200px) {
  .social-carousel .social-card {
    flex: 0 0 calc((100% - 60px) / 4);
  }
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(102, 116, 79, 0.18);
  background: rgba(255, 254, 253, 0.94);
  color: var(--pistachio-dark);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(4px);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.carousel-button:hover {
  background: var(--white);
  color: var(--pistachio-deep);
  transform: translateY(-50%) scale(1.05);
}

.carousel-button:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-button.prev {
  left: -23px;
}

.carousel-button.next {
  right: -23px;
}

@media (min-width: 900px) {
  .carousel-button {
    display: flex;
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 180ms ease, transform 180ms ease;
}

.carousel-dot.is-active {
  background: var(--pistachio-deep);
  transform: scale(1.2);
}

.social-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(102, 116, 79, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 300ms var(--ease-out-quart), box-shadow 300ms var(--ease-out-quart);
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.proof-shot {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: linear-gradient(180deg, rgba(183, 196, 145, 0.08), rgba(243, 202, 215, 0.12));
}

.proof-shot img,
.proof-shot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms var(--ease-out-quart);
}

.social-card:hover img {
  transform: scale(1.03);
}

.social-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.social-badge img {
  width: 16px;
  height: 16px;
}

.steps-section {
  background: var(--paper);
}

.steps-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.steps-grid article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 8px 13px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.steps-grid span {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pistachio-deep);
  color: var(--white);
  font-weight: 600;
}

.steps-grid p {
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  background: var(--cream);
}

.about-image,
.about-copy {
  width: min(100%, 590px);
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 34%;
  border: 7px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-content: center;
  text-align: center;
  justify-items: center;
}

.about-copy p:not(.section-kicker) {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1rem;
}

.faq {
  background: var(--paper);
}

.faq-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: min(100%, 860px);
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  float: right;
  color: var(--pistachio-dark);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 20px 18px;
  color: var(--muted);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  justify-items: center;
  background: linear-gradient(135deg, var(--pistachio-soft), var(--paper));
  color: var(--ink);
  text-align: center;
}

.final-cta-logo {
  width: 132px;
  height: 132px;
  padding: 12px;
  border-radius: 50%;
  background: var(--white);
  object-fit: contain;
  box-shadow: var(--shadow-soft);
}

.final-cta h2 {
  max-width: 850px;
}

.final-cta p:not(.section-kicker) {
  max-width: 60ch;
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 38px var(--pad) 96px;
  border-top: 1px solid rgba(102, 116, 79, 0.16);
  background: linear-gradient(180deg, var(--paper), var(--pistachio-soft));
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-actions,
.footer-whatsapp,
.footer-social {
  display: flex;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-brand > img {
  flex: 0 0 auto;
  width: 58px;
  height: 59px;
  object-fit: contain;
}

.footer-brand p {
  margin: 0 0 3px;
  color: var(--ink);
  font-weight: 600;
}

.footer-brand span {
  display: block;
  max-width: 46ch;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}

.footer-whatsapp,
.footer-email,
.footer-social {
  min-height: 42px;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
}

.footer-whatsapp {
  gap: 8px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: var(--white);
}

.footer-email {
  display: inline-flex;
  align-items: center;
  text-underline-offset: 4px;
}

.footer-social {
  justify-content: center;
  width: 42px;
  border: 1px solid rgba(102, 116, 79, 0.22);
  border-radius: 50%;
  color: var(--pistachio-dark);
  background: rgba(255, 255, 255, 0.72);
}

.footer-social img {
  width: 21px;
  height: 21px;
}

.mobile-whatsapp {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: var(--white);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  box-shadow: 0 7px 12px rgba(47, 159, 91, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 22px));
  transition: opacity 180ms var(--ease-out-quart), transform 180ms var(--ease-out-quart);
}

.mobile-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 420px) {
  :root {
    --pad: 16px;
    --section-y: 56px;
  }

  .button {
    width: 100%;
    padding-inline: 16px;
  }

  .brand span {
    max-width: 11ch;
  }

  .hero-media {
    min-height: 438px;
  }

  .hero-photo-small {
    bottom: 40px;
    width: 40%;
  }

  .hero-photo-accent {
    top: 22px;
    width: 28%;
  }

  .hero-note {
    right: 30px;
  }

  .hero-seal {
    width: 134px;
    min-height: 100px;
    padding: 13px;
  }
}

@media (min-width: 680px) {
  :root {
    --pad: 28px;
    --section-y: 74px;
  }

  h1 {
    font-size: 2.68rem;
  }

  h2 {
    font-size: 2.12rem;
  }

  .site-header .button {
    display: inline-flex;
  }

  .brand span {
    max-width: none;
  }

  .brand-logo {
    width: 54px;
    height: 55px;
  }

  .hero-logo {
    width: 158px;
  }

  .hero-actions {
    width: min(100%, 352px);
  }

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

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



  .steps-grid article {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
  }

  .steps-grid span {
    grid-row: auto;
  }


}

@media (min-width: 920px) {
  :root {
    --pad: 44px;
    --section-y: 90px;
  }

  .menu-toggle {
    display: none;
  }

  .nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
  }

  .nav a {
    min-height: auto;
    padding: 0;
    border-radius: 0;
  }

  .nav a:hover {
    background: transparent;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.88fr);
    align-items: center;
    gap: 56px;
    padding-top: 54px;
    padding-bottom: 38px;
  }

  .hero-copy {
    justify-items: start;
    text-align: left;
  }

  h1 {
    max-width: 16ch;
    font-size: 3.32rem;
  }

  .hero-lede {
    width: min(100%, 58ch);
    font-size: 1.06rem;
  }

  .hero-actions {
    justify-self: start;
  }

  .hero-media {
    min-height: 620px;
    margin: 0;
    justify-self: end;
  }

  .hero-photo-main {
    width: min(88%, 500px);
  }

  .hero-photo-small {
    width: min(40%, 210px);
  }

  .hero-photo-accent {
    width: min(29%, 150px);
  }

  .benefit-strip {
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 44px;
  }

  .intro-section {
    grid-template-columns: minmax(0, 0.75fr) minmax(440px, 0.9fr);
    align-items: center;
    gap: 48px;
    width: min(100%, calc(var(--max) + var(--pad) * 2));
    margin: 0 auto;
  }

  .intro-copy {
    justify-items: start;
    text-align: left;
    margin: 0;
  }

  .intro-stats {
    margin: 0;
  }

  .custom-section {
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.92fr);
    align-items: center;
    gap: 62px;
  }

  .custom-copy {
    justify-items: start;
    text-align: left;
    margin: 0 0 0 auto;
  }

  .custom-gallery {
    margin: 0 auto 0 0;
  }

  .about {
    grid-template-columns: minmax(330px, 0.8fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 62px;
  }

  .about-image {
    margin-right: 0;
  }

  .about-copy {
    justify-items: start;
    text-align: left;
    margin-left: 0;
  }

  .final-cta {
    grid-template-columns: 142px minmax(0, 1fr) auto;
    align-items: center;
    justify-items: start;
    text-align: left;
  }

  .final-cta .button {
    justify-self: end;
  }

  .mobile-whatsapp {
    display: none;
  }
}

@media (min-width: 1080px) {
  :root {
    --pad: 64px;
    --section-y: 104px;
  }

  h1 {
    font-size: 3.62rem;
  }

  h2 {
    font-size: 2.62rem;
  }

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

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



  .proof-shot {
    min-height: auto;
  }
}

@keyframes hero-copy-enter {
  from {
    transform: translateY(18px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes hero-media-enter {
  from {
    transform: translateY(22px) scale(0.985);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.reveal-target {
  transform: translateY(0);
  opacity: 1;
  transition: transform 560ms var(--ease-out-expo), opacity 560ms var(--ease-out-expo);
}

.motion-ready .reveal-target:not(.is-visible) {
  transform: none;
  opacity: 1;
}

.motion-ready .reveal-target.is-visible {
  transition-delay: calc(var(--i, 0) * 40ms);
}

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

  .motion-ready .reveal-target:not(.is-visible) {
    transform: none;
    opacity: 1;
  }
}


