/* LUPORI PET & PERSONALIZADOS */
:root {
  --white: #fff;
  --paper: #f8f5f1;
  --cream: #f0e8dc;
  --sand: #dfc9a8;
  --gold: #c79a5d;
  --gold-light: #dbb87a;
  --caramel: #8d5a2b;
  --brown: #2b170e;
  --brown-2: #3d1f0e;
  --muted: #6b4a30;
  --text: #2d2d2d;
  --line: rgba(43, 23, 14, 0.12);
  --shadow: 0 28px 90px rgba(43, 23, 14, 0.2);
  --shadow-soft: 0 12px 44px rgba(43, 23, 14, 0.11);
  --shadow-gold: 0 16px 60px rgba(199, 154, 93, 0.22);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  --max: 1180px;
  --pad: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font: inherit;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #000;
  color: #fff;
  padding: 10px;
  z-index: 999;
}
.skip-link:focus {
  left: 10px;
}
.container {
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
}
.section {
  padding: clamp(56px, 7vw, 100px) 0;
}
.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 14px;
}
.section__head {
  max-width: 680px;
  margin-bottom: 38px;
}
.section__head--center {
  text-align: center;
  margin-inline: auto;
}
.section__head h2,
.apolo h2,
.delivery h2,
.cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
  font-size: clamp(1.5rem, 3.1vw, 2.75rem);
  color: var(--brown);
}
.section__head p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-top: 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 800;
  font-size: 0.92rem;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    background 0.22s var(--ease),
    color 0.22s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.96);
}
.btn--dark {
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(43, 23, 14, 0.26);
}
.btn--dark:hover {
  background: var(--brown-2);
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(43, 23, 14, 0.32);
}
.btn--light {
  background: var(--white);
  color: var(--brown);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}
.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
}
.btn--glass {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
}
.btn--glass:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}
.btn--outline {
  border-color: var(--line);
  background: transparent;
  color: var(--brown);
}
.btn--outline:hover {
  border-color: var(--gold);
  background: var(--cream);
  transform: translateY(-2px);
}
.btn--small {
  padding: 11px 18px;
  font-size: 0.82rem;
}
/* header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 245, 241, 0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(43, 23, 14, 0.08);
  transition:
    transform 0.28s var(--ease),
    background 0.28s var(--ease);
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.site-header__inner {
  height: 86px;
  width: min(100% - 2 * var(--pad), var(--max));
  margin: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  color: var(--brown);
  text-decoration: none;
}
.brand__name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2vw, 2.35rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brown);
  text-transform: uppercase;
}
.brand--text {
  padding: 8px 0;
}
.brand:hover .brand__name {
  color: var(--caramel);
}
.nav {
  margin-left: auto;
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav a {
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(43, 23, 14, 0.72);
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}
.nav a:hover::after {
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--brown);
  border-radius: 50%;
  place-items: center;
  gap: 4px;
  align-content: center;
}
.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: #fff;
  border-radius: 4px;
}
.mobile-nav {
  display: none;
}
/* HERO */
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
  padding: 120px var(--pad) 52px;
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 32%;
  filter: brightness(1.05) saturate(1.03) contrast(1.02);
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(11, 6, 2, 0.9) 0%,
      rgba(20, 11, 5, 0.7) 38%,
      rgba(20, 11, 5, 0.18) 68%,
      rgba(20, 11, 5, 0.38) 100%
    ),
 linear-gradient(
  0deg,
  rgba(9, 5, 2, 0.75) 0%,
  rgba(9, 5, 2, 0.05) 42%,
  rgba(255, 255, 255, 0.00) 100%
);
}
.hero__word {
  position: absolute;
  right: -0.04em;
  top: 10%;
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 16rem);
  font-weight: 700;
  line-height: 0.75;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  color: #fff;
}
.hero__content .eyebrow {
  color: #deb47a;
}

.hero-title-desktop {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.6vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  font-weight: 700;
  max-width: 680px;
  margin-bottom: 22px;
}

.hero-title-mobile {
 display: none !important;
}

.hero__lead {
  margin-top: 8px;
  width: min(560px, 100%);
  font-size: clamp(0.96rem, 1.3vw, 1.12rem);
  color: rgba(255, 255, 255, 0.8);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero__note {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: 56px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 450px;
}
.hero__note span {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
/* manifesto */
.manifesto {
  background: var(--paper);
  padding: clamp(40px, 5.5vw, 70px) 0;
  border-bottom: 1px solid var(--line);
}
.manifesto__inner {
  display: grid;
  gap: 18px;
  text-align: center;
  max-width: 900px;
}
.manifesto p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: var(--brown);
}
.manifesto strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.45rem);
  font-weight: 500;
  color: var(--gold);
}
/* products */
.products {
  background: linear-gradient(180deg, var(--paper), #fff);
}
.product-feature {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  border-radius: 40px;
  overflow: hidden;
  background: var(--brown);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(199, 154, 93, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  margin-bottom: 28px;
  min-height: 540px;
  position: relative;
}
.product-feature__media {
  background: linear-gradient(135deg, #fffaf2, var(--cream));
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.product-feature:hover .product-feature__media img {
  transform: scale(1.04);
}
.media-fallback {
  width: 100%;
  height: 100%;
  place-items: center;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
}
.product-feature__text {
  padding: clamp(40px, 5.5vw, 78px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* golden seal badge on product feature */
.product-feature .badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.62rem;
  font-weight: 900;
  padding: 8px 14px;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(199, 154, 93, 0.4);
}
.badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.62rem;
  font-weight: 900;
  padding: 8px 11px;
  margin-bottom: 18px;
}
.product-feature h3,
.product-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}
.product-feature p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
}
.product-feature ul {
  margin: 24px 0 32px;
  display: grid;
  gap: 10px;
  color: #f0d8b5;
  font-size: 0.94rem;
}
.product-feature li::before {
  content: "✓";
  color: var(--gold-light);
  margin-right: 10px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.32s var(--ease),
    box-shadow 0.32s var(--ease),
    border-color 0.32s var(--ease);
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 36px 90px rgba(43, 23, 14, 0.16),
    0 8px 24px rgba(43, 23, 14, 0.08),
    0 0 0 1px rgba(199, 154, 93, 0.3);
  border-color: rgba(199, 154, 93, 0.4);
}
.product-card__image {
  height: 280px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff8ed, var(--cream));
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}
.product-card__image::before {
  content: "";
  position: absolute;
  inset: auto -20% -50% -20%;
  height: 80%;
  background: radial-gradient(
    ellipse at center,
    rgba(199, 154, 93, 0.2),
    transparent 62%
  );
}
.product-card__image--mug {
  background: linear-gradient(145deg, #fff5e8, #f5e0c0);
}
.product-card__image--bandana {
  background: linear-gradient(145deg, #fdf3ea, #eddcc2);
}
.product-card__image--qr {
  background: linear-gradient(145deg, #f9f2ec, #e8d9c8);
}
.product-card__image span {
  position: relative;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.65;
  letter-spacing: -0.03em;
}

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

.product-card__image--mug img,
.product-card__image--bandana img,
.product-card__image--qr img {
  object-fit: cover;
}

.product-card h3 {
  font-size: 1.45rem;
  color: var(--brown);
  letter-spacing: -0.03em;
}
.product-card p {
  color: var(--muted);
  margin: 10px 0 22px;
  font-size: 0.94rem;
  line-height: 1.55;
}
.product-card a {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--brown);
  transition:
    background 0.24s var(--ease),
    color 0.24s var(--ease),
    border-color 0.24s var(--ease),
    transform 0.24s var(--ease),
    box-shadow 0.24s var(--ease);
}
.product-card a:hover {
  background: var(--brown);
  color: #fff;
  border-color: var(--brown);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(43, 23, 14, 0.2);
}
.product-card .badge {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 2;
}
/* apolo */
.apolo {
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  padding: clamp(80px, 10vw, 130px) 0;
}
.apolo__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.apolo__media {
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 680px;
  background: var(--cream);
}
.apolo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.8s var(--ease);
}
.apolo__media:hover img {
  transform: scale(1.035);
}
.apolo__text .quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.1vw, 2rem);
  line-height: 1.22;
  color: var(--gold);
  font-style: italic;
  margin: 24px 0;
  padding-left: 22px;
  border-left: 2px solid rgba(199, 154, 93, 0.5);
}
.apolo__text p:not(.eyebrow):not(.quote) {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 18px;
}
.apolo__text .btn {
  margin-top: 16px;
}
/* social proof */
.social-proof {
  background: var(--brown);
  padding: clamp(56px, 7vw, 90px) 0;
  position: relative;
  overflow: hidden;
}
.social-proof::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(199, 154, 93, 0.14),
    transparent 55%
  );
  pointer-events: none;
}
.social-proof__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
.social-proof__quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.03em;
  quotes: "\201C" "\201D";
}
.social-proof__quote::before {
  content: open-quote;
  color: var(--gold);
  font-size: 1.6em;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.1em;
  opacity: 0.7;
}
.social-proof__quote::after {
  content: close-quote;
  color: var(--gold);
  font-size: 1.6em;
  line-height: 0;
  vertical-align: -0.4em;
  margin-left: 0.1em;
  opacity: 0.7;
}
.social-proof__attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.social-proof__line {
  width: 40px;
  height: 1px;
  background: rgba(199, 154, 93, 0.5);
}
.social-proof__name {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
}
/* why */
.why {
  background: var(--paper);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px 26px;
  min-height: 210px;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(199, 154, 93, 0.3);
}
.why-card span {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--sand);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.15;
  margin: 10px 0 12px;
  color: var(--brown);
  letter-spacing: -0.03em;
}
.why-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
/* steps */
.steps {
  background: #fff;
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  padding: 28px 10px;
  border-top: 2px solid var(--line);
  position: relative;
}
.step__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(199, 154, 93, 0.12),
    rgba(199, 154, 93, 0.06)
  );
  border: 1px solid rgba(199, 154, 93, 0.22);
  margin-bottom: 20px;
}
.step__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step span.step__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--sand);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--brown);
  letter-spacing: -0.03em;
}
.step p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}
.delivery {
  padding: 54px 0;
  background: var(--cream);
}
.delivery__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.delivery p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
/* cta */
.cta {
  background: var(--brown);
  color: #fff;
  padding: clamp(100px, 12vw, 180px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(199, 154, 93, 0.3),
    transparent 40%
  );
  pointer-events: none;
}
.cta::after {
  content: "";
  position: absolute;
  bottom: -0.18em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 220px);
  font-weight: 700;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.035);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
.cta__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.8vw, 3.6rem);
}
.cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  margin: 22px auto 32px;
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.6;
}
/* footer */
.footer {
  background: #190e07;
  color: #fff;
  padding: 72px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr 0.8fr;
  gap: 40px;
}
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  color: #fff;
  width: max-content;
  max-width: 100%;
}
.footer-brand__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-brand__tagline {
  font-size: 0.66rem;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.58);
}
.footer-brand:hover .footer-brand__name {
  color: var(--gold-light);
}

.footer p {
  color: rgba(255, 255, 255, 0.56);
  margin-top: 16px;
  max-width: 280px;
  font-size: 0.92rem;
  line-height: 1.6;
}
.footer h3 {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 800;
}
.footer a:not(.brand):not(.footer-brand) {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  margin: 9px 0;
  transition: color 0.18s;
}
.footer a:hover {
  color: #fff;
}

.footer__contact-link {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.9rem;
  margin: 9px 0;
  transition: color 0.18s;
}
.footer__contact-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: currentColor;
}

.footer__contact-link svg * {
  fill: currentColor;
  stroke: none;
}

.footer__contact-link:hover {
  color: var(--gold) !important;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.36);
}
.footer__credit a {
  display: inline !important;
  color: rgba(255, 255, 255, 0.46) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    color 0.18s,
    border-color 0.18s;
  margin: 0 !important;
  font-size: 0.8rem;
}
.footer__credit a:hover {
  color: var(--gold) !important;
  border-color: rgba(199, 154, 93, 0.5);
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #0a2e19;
  font-weight: 900;
  font-size: 1.35rem;
  box-shadow: 0 18px 48px rgba(37, 211, 102, 0.38);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}
/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav,
  .site-header .btn--small {
    display: none;
  }
  .menu-toggle {
    display: grid;
  }
  .mobile-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    background: rgba(248, 245, 241, 0.96);
    backdrop-filter: blur(22px);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 22px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 14px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s var(--ease);
  }
  .mobile-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-nav a:not(.btn) {
    font-weight: 800;
    padding: 12px;
    border-bottom: 1px solid var(--line);
    color: var(--brown);
  }
  .hero {
    align-items: end;
    padding-top: 110px;
  }
  .hero__image {
    object-position: 62% center;
  }

  .hero__overlay {
    background: linear-gradient(
      0deg,
      rgba(14, 8, 3, 0.82) 0%,
      rgba(14, 8, 3, 0.52) 42%,
      rgba(14, 8, 3, 0.08) 100%
    );
  }

  .hero__word {
    top: 13%;
    right: -0.12em;
    font-size: 28vw;
  }
  .hero__note {
    left: var(--pad);
    right: var(--pad);
    justify-content: flex-start;
  }
  .product-feature,
  .apolo__grid,
  .delivery__inner {
    grid-template-columns: 1fr;
  }
  .product-grid,
  .why__grid,
  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .apolo__media {
    min-height: 480px;
  }
}
@media (max-width: 640px) {
  .site-header__inner {
    height: 68px;
  }
  .hero-title-desktop {
    display: none !important;
  }

.hero-title-mobile {
  display: block !important;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 6.4vw, 2.05rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
  max-width: 255px;
  margin-bottom: 0;
}

  .brand__name {
    font-size: 1.55rem;
    letter-spacing: 0.11em;
  }

  .hero {
    min-height: 92svh;
    padding: 96px 20px 8px;
    align-items: end;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(10, 5, 2, 0.86) 0%,
        rgba(10, 5, 2, 0.64) 42%,
        rgba(10, 5, 2, 0.18) 100%
      ),
      linear-gradient(
        0deg,
        rgba(9, 5, 2, 0.88) 0%,
        rgba(9, 5, 2, 0.30) 48%,
        rgba(9, 5, 2, 0.06) 100%
      );
  }

  .hero__content {
    width: min(265px, 100%);
  }

.hero__lead {
  display: none !important;
}

.hero__actions {
  gap: 9px;
  margin-top: 16px;
}

  .btn {
    width: 100%;
    padding: 13px 18px;
  }

  .hero__actions .btn {
    min-height: 52px;
  }

  .hero__note {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .product-feature {
    border-radius: 28px;
    min-height: 0;
  }

  .product-feature__media {
    min-height: 300px;
  }

  .product-feature__text {
    padding: 32px;
  }

  .product-grid,
  .why__grid,
  .steps__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .product-card__image {
    height: 220px;
  }

  .apolo__media {
    min-height: 400px;
    border-radius: 30px;
  }

  .delivery__inner {
    text-align: left;
  }

  .cta {
    padding: 90px 0;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 18px;
  }

  .social-proof__quote {
    font-size: clamp(1.1rem, 5.5vw, 1.6rem);
  }
}


