/* ─── TOKENS ─── */
:root {
  --honey:         #E29F52; /* Rich Warm Honey Amber */
  --cream:         #FFFBF5; /* Soft Creamy Ivory */
  --terracotta:    #9E583B; /* Premium Cinnamon Terracotta */
  --espresso:      #2D1F17; /* Rich Deep Espresso Brown */
  --latte:         #F3E9DF; /* Warm Latte Alabaster */
  --warm-clay:     #DF9A89; /* Soft Clay Rose */
  --sage:          #C5D2C1; /* Cozy Organic Sage Green */
  --white:         #FFFFFF;
  --dark:          #2D1F17; /* Rich Deep Espresso Brown */

  --font-display: 'Fraunces', serif;
  --font-body:    'DM Sans', sans-serif;
  --radius-img:   24px;
  --radius-card:  20px;
  --shadow-card:  0 4px 24px rgba(158,88,59,0.09);
  --transition:   0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; }
body { font-family: var(--font-body); background: var(--white); color: var(--dark); overflow-x: hidden; }

/* ─── LUCIDE ─── */
[data-lucide] {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* ─── UTILITIES ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--terracotta); color: var(--white);
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 15px 36px; border-radius: 50px; border: none;
  cursor: pointer; text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(158,88,59,0.32); }

.btn-honey { background: var(--honey); color: var(--dark); }
.btn-honey:hover { box-shadow: 0 10px 30px rgba(226,159,82,0.45); }

.btn-outline { background: transparent; border: 2px solid var(--terracotta); color: var(--terracotta); }
.btn-outline:hover { background: var(--terracotta); color: var(--white); box-shadow: 0 10px 30px rgba(158,88,59,0.28); }

.tag {
  display: inline-block; font-size: 0.76rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 16px;
}
.tag-honey { color: var(--honey); }

.section-pad { padding: 110px 0; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(158,88,59,0.08);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

/* ─── BRAND TRUST BAR ─── */
.brand-trust-bar {
  background: var(--white);
  border-top: 1px solid rgba(158,88,59,0.06);
  border-bottom: 1px solid rgba(158,88,59,0.06);
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand-trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 5%;
  flex-wrap: wrap;
  gap: 44px;
}
.brand-trust-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--terracotta);
  opacity: 0.65;
}
.brand-trust-logos {
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand-trust-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity var(--transition);
  mix-blend-mode: multiply;
}
.brand-trust-logo:hover {
  opacity: 1;
}

.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 600; color: var(--dark);
  text-decoration: none; opacity: 0.7;
  transition: opacity var(--transition), color var(--transition);
}
.nav-links a:hover { opacity: 1; color: var(--terracotta); }

.nav-cta { font-size: 0.88rem; padding: 11px 24px; }

/* ─── NAV MOBILE TOGGLE & OVERLAY ─── */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
  transition: transform var(--transition);
}
.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 4px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, background-color 0.3s ease;
}
.nav-mobile-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background-color: var(--terracotta);
}
.nav-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background-color: var(--terracotta);
}

.nav-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 251, 245, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.nav-mobile-links a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
  opacity: 0.9;
}
.nav-mobile-links a:hover {
  color: var(--terracotta);
  transform: scale(1.05);
}
.nav-mobile-cta {
  margin-top: 12px;
  font-size: 1rem;
  padding: 14px 32px;
}
.nav-mobile-brand {
  margin-top: 40px;
  max-height: 38px;
  width: auto;
  object-fit: contain;
  opacity: 0.65;
  mix-blend-mode: multiply;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh; padding-top: 90px;
  background: var(--white);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-blob {
  position: absolute; top: -140px; right: -140px;
  width: 580px; height: 580px; border-radius: 50%;
  background: var(--honey); opacity: 0.15; filter: blur(80px); pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  width: 90%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 2;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--terracotta); opacity: 0.6; margin-bottom: 22px;
}
.hero-eyebrow [data-lucide] { color: var(--terracotta); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 900; line-height: 1.0; color: var(--dark); margin-bottom: 24px;
  text-wrap: balance;
}
.hero-title em { font-style: italic; color: var(--terracotta); }

.hero-subtitle {
  font-size: 1.1rem; line-height: 1.72; color: var(--dark);
  opacity: 0.65; max-width: 420px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.hero-trust {
  display: flex; align-items: center; gap: 10px;
  margin-top: 42px; padding-top: 30px;
  border-top: 1px solid rgba(158,88,59,0.1); flex-wrap: wrap;
}
.hero-trust-pill {
  display: flex; align-items: center; gap: 7px;
  background: var(--latte); color: var(--terracotta);
  border-radius: 30px; padding: 8px 15px;
  font-size: 0.8rem; font-weight: 700;
}
.hero-trust-pill [data-lucide] { width: 15px; height: 15px; }

.hero-img-wrap { position: relative; }
.hero-img-main {
  width: 100%; height: 580px; object-fit: cover;
  border-radius: 120px 24px 24px 24px;
}
.hero-img-badge {
  position: absolute; bottom: 36px; left: -28px;
  background: var(--white); border-radius: 18px;
  padding: 16px 20px; box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 12px;
  min-width: 190px; border: 2px solid var(--honey);
}
.hero-img-badge-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--latte);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-img-badge-icon [data-lucide] { color: var(--terracotta); width: 20px; height: 20px; }
.hero-img-badge-text { font-size: 0.78rem; font-weight: 700; line-height: 1.4; }
.hero-img-badge-text span { color: var(--terracotta); font-size: 1rem; display: block; }

.hero-img-pill {
  position: absolute; top: 28px; right: -16px;
  background: var(--honey); color: var(--dark);
  border-radius: 50px; padding: 10px 18px;
  font-size: 0.8rem; font-weight: 700;
  box-shadow: 0 4px 16px rgba(226,159,82,0.5);
  display: flex; align-items: center; gap: 6px;
}
.hero-img-pill [data-lucide] { width: 16px; height: 16px; }

.card-gym-img-wrap { position: relative; display: block; }
.card-gym-img-wrap .card-gym-img { object-fit: cover; padding: 0; }

.img-paw-badge {
  position: absolute; bottom: 14px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background-color: rgba(201,168,130,0.9);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='14' cy='10' rx='4' ry='5.5' fill='white'/%3E%3Cellipse cx='26' cy='10' rx='4' ry='5.5' fill='white'/%3E%3Cellipse cx='8' cy='19' rx='3.5' ry='4.5' fill='white'/%3E%3Cellipse cx='32' cy='19' rx='3.5' ry='4.5' fill='white'/%3E%3Cpath d='M20 17c-6 0-11 4-9 10 1.5 4.5 5 6 9 6s7.5-1.5 9-6c2-6-3-10-9-10z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px 26px;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(59,42,26,0.18);
}
.modal-paw-badge { display: none; }

/* ─── ABOUT (cats / gyms) ─── */
.section-about { background: var(--cream); position: relative; overflow: hidden; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-images { position: relative; }
.about-img-main  {
  width: 100%; height: 520px;
  object-fit: contain; background: var(--cream);
  border: 1.5px solid rgba(158,88,59,0.08); padding: 16px;
  border-radius: var(--radius-img);
}
.about-img-secondary {
  position: absolute; bottom: -40px; right: -40px;
  width: 210px; height: 250px; object-fit: contain;
  background: var(--cream); border: 6px solid var(--cream);
  border-radius: var(--radius-img);
  box-shadow: 0 8px 30px rgba(158,88,59,0.08);
}
.about-stat {
  position: absolute; top: 40px; left: -30px;
  background: var(--terracotta); color: var(--white);
  border-radius: 16px; padding: 18px 22px; text-align: center;
  box-shadow: 0 8px 30px rgba(158,88,59,0.3);
}
.about-stat-number { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; color: var(--honey); line-height: 1; }
.about-stat-label  { font-size: 0.7rem; font-weight: 700; opacity: 0.8; margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

.about-title { font-family: var(--font-display); font-size: clamp(34px, 3.8vw, 50px); font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
.about-title em { font-style: italic; color: var(--terracotta); }
.about-body { font-size: 1rem; line-height: 1.75; opacity: 0.72; margin-bottom: 14px; }

.about-list { list-style: none; margin: 24px 0 34px; display: flex; flex-direction: column; gap: 13px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 0.94rem; }
.about-list li [data-lucide] { color: var(--terracotta); width: 20px; height: 20px; }

/* ─── PRODUCTS ─── */
.section-products { background: var(--white); }

.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 50px; }
.section-title { font-family: var(--font-display); font-size: clamp(30px, 3.5vw, 46px); font-weight: 700; line-height: 1.15; }
.section-title em { font-style: italic; color: var(--terracotta); }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.card-product {
  background: var(--white); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-card);
  border: 1.5px solid rgba(158,88,59,0.07);
  transition: transform var(--transition), box-shadow var(--transition); cursor: pointer;
}
.card-product:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(158,88,59,0.15); }

.card-product-img { width: 100%; height: 220px; object-fit: cover; }
.card-product-body { padding: 22px; }

.card-product-badge {
  display: inline-block; background: var(--latte); color: var(--terracotta);
  font-size: 0.67rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 30px; padding: 4px 12px; margin-bottom: 10px;
}
.card-product-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.card-product-desc  { font-size: 0.87rem; line-height: 1.6; opacity: 0.62; margin-bottom: 18px; }

.card-product-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; width: 100%; }
.card-product-price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 900; color: var(--terracotta); }
.card-product-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--honey); color: var(--dark);
  border: none; border-radius: 30px; padding: 9px 16px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.8rem;
  cursor: pointer; transition: transform var(--transition);
}
.card-product-btn:hover { transform: translateY(-2px); }
.card-product-btn [data-lucide] { width: 15px; height: 15px; }

/* ─── FEATURE (nutrición general) ─── */
.section-feature { background: var(--terracotta); position: relative; overflow: hidden; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.feature-title { font-family: var(--font-display); font-size: clamp(34px, 4vw, 52px); font-weight: 900; line-height: 1.1; color: var(--white); margin-bottom: 20px; }
.feature-body  { font-size: 1.02rem; line-height: 1.75; color: rgba(255,255,255,0.72); margin-bottom: 32px; }

.feature-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.feature-pill  {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(226,159,82,0.12); border: 1px solid rgba(226,159,82,0.28);
  color: var(--honey); border-radius: 30px; padding: 8px 16px;
  font-size: 0.83rem; font-weight: 600;
}
.feature-pill [data-lucide] { width: 16px; height: 16px; }

.feature-img {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: 24px 120px 24px 24px;
}

/* ─── CATS: INTRO ─── */
.section-cats-intro { background: var(--latte); position: relative; overflow: hidden; text-align: center; }

.cats-intro-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 22px;
}
.cats-intro-eyebrow [data-lucide] { width: 18px; height: 18px; color: var(--terracotta); }

.cats-intro-title { font-family: var(--font-display); font-size: clamp(42px, 6vw, 80px); font-weight: 900; line-height: 1.05; color: var(--terracotta); margin-bottom: 20px; }
.cats-intro-title em { font-style: italic; color: var(--dark); }

.cats-intro-sub { font-size: 1.1rem; line-height: 1.7; color: var(--dark); opacity: 0.85; max-width: 560px; margin: 0 auto 44px; }

.cats-intro-badges { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cats-intro-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(158,88,59,0.09); border: 1.5px solid rgba(158,88,59,0.18);
  color: var(--terracotta); border-radius: 50px; padding: 10px 20px;
  font-size: 0.86rem; font-weight: 700;
}
.cats-intro-badge [data-lucide] { width: 17px; height: 17px; }

/* ─── CATS: FEATURE ─── */
.section-cats-feature { background: var(--white); }
.cats-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cats-feature-img-wrap { position: relative; }

.cats-feature-img {
  width: 100%; height: 600px;
  object-fit: contain; background: var(--cream);
  border: 1.5px solid rgba(158,88,59,0.08); padding: 20px;
  border-radius: 24px 24px 120px 24px;
  display: block;
}

.cats-feature-badge {
  position: absolute; top: 36px; left: -24px;
  background: var(--terracotta); color: var(--white);
  border-radius: 16px; padding: 16px 22px;
  box-shadow: 0 8px 28px rgba(158,88,59,0.35);
}
.cats-feature-badge-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.75; }
.cats-feature-badge-value { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--honey); margin-top: 2px; }

.cats-feature-pill {
  position: absolute; bottom: 40px; right: -20px;
  background: var(--honey); color: var(--dark);
  border-radius: 50px; padding: 12px 20px;
  font-size: 0.8rem; font-weight: 700;
  box-shadow: 0 6px 20px rgba(226,159,82,0.45);
  display: flex; align-items: center; gap: 7px;
}
.cats-feature-pill [data-lucide] { width: 16px; height: 16px; }

.cats-feature-title { font-family: var(--font-display); font-size: clamp(34px, 4vw, 54px); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.cats-feature-title em { font-style: italic; color: var(--terracotta); }
.cats-feature-body { font-size: 1rem; line-height: 1.75; opacity: 0.7; margin-bottom: 16px; }

.cats-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0 34px; }
.cats-spec { background: var(--cream); border-radius: 14px; padding: 16px 18px; border: 1.5px solid var(--honey); }
.cats-spec-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--terracotta); line-height: 1; }
.cats-spec-label { font-size: 0.74rem; font-weight: 600; opacity: 0.55; margin-top: 4px; }

/* ─── CATS: GRID ─── */
.section-cats-grid { background: var(--cream); }

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

.card-cat {
  background: var(--white); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-card);
  border: 1.5px solid rgba(158,88,59,0.07);
  display: grid; grid-template-columns: 1fr 1fr;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer; min-height: 280px;
}
.card-cat:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(158,88,59,0.15); }
.card-cat-wide { grid-column: 1 / -1; grid-template-columns: 420px 1fr; }

.card-cat-img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.card-cat-body { padding: 26px 22px; display: flex; flex-direction: column; justify-content: space-between; }

.card-cat-badge {
  display: inline-block; background: var(--latte); color: var(--terracotta);
  font-size: 0.67rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 30px; padding: 4px 12px; margin-bottom: 10px; width: fit-content;
}
.card-cat-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; line-height: 1.25; margin-bottom: 9px; }
.card-cat-desc  { font-size: 0.84rem; line-height: 1.6; opacity: 0.62; flex: 1; margin-bottom: 18px; }

.card-cat-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.card-cat-price  { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--terracotta); }
.card-cat-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--terracotta); color: var(--white);
  border: none; border-radius: 30px; padding: 10px 16px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.8rem;
  cursor: pointer; white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-cat-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(158,88,59,0.32); }
.card-cat-btn [data-lucide] { width: 15px; height: 15px; }

/* ─── MERCADOLIBRE ─── */
.section-ml { background: #FAF8F5; border-top: 5px solid #FFE600; position: relative; overflow: hidden; }

.ml-grid { 
  display: grid; 
  grid-template-columns: 1.15fr 0.9fr 0.95fr; 
  gap: 40px; 
  align-items: center; 
}

.ml-logo-img-main {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 24px;
  mix-blend-mode: multiply;
}

.ml-title { font-family: var(--font-display); font-size: clamp(28px, 3.2vw, 42px); font-weight: 900; line-height: 1.15; margin-bottom: 18px; }
.ml-title em { font-style: italic; color: #1C2F6C; }
.ml-body { font-size: 0.92rem; line-height: 1.7; opacity: 0.7; margin-bottom: 24px; }

.ml-perks { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.ml-perk {
  display: flex; align-items: center; gap: 6px;
  background: #FFFBF0; border: 1px solid rgba(240,216,0,0.4);
  border-radius: 30px; padding: 7px 12px;
  font-size: 0.78rem; font-weight: 700; color: #2D2D00;
}
.ml-perk [data-lucide] { width: 14px; height: 14px; color: #A08000; }

.btn-ml {
  display: inline-flex; align-items: center; gap: 10px;
  background: #FFE600; color: #1C2F6C;
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  padding: 13px 28px; border-radius: 50px; text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 15px rgba(255,230,0,0.25);
}
.btn-ml:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(255,230,0,0.45); }

.ml-polaroid {
  background: var(--white);
  border-radius: 14px;
  padding: 12px 12px 18px 12px;
  box-shadow: 0 8px 30px rgba(158,88,59,0.06);
  border: 1.5px solid rgba(158,88,59,0.08);
  margin-top: 24px;
  transform: rotate(-1.5deg);
  transition: transform var(--transition), box-shadow var(--transition);
  max-width: 320px;
}
.ml-polaroid:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 12px 35px rgba(158,88,59,0.12);
}
.ml-polaroid-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
  display: block;
}
.ml-polaroid-caption {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--espresso);
  text-align: center;
  opacity: 0.75;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.ml-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ml-card {
  background: var(--white); border-radius: 16px; padding: 16px 20px;
  box-shadow: 0 4px 20px rgba(158,88,59,0.04); border: 1px solid rgba(158,88,59,0.05);
  display: flex; align-items: center; gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.ml-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(158,88,59,0.08);
}
.ml-card-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ml-card-icon [data-lucide] { width: 18px; height: 18px; }
.ml-card-label { font-size: 0.7rem; font-weight: 600; opacity: 0.5; }
.ml-card-value { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--espresso); }

.ml-cat-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ml-cat-img-png {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
  animation: catFloat 6s ease-in-out infinite;
}
.ml-cat-badge {
  position: absolute;
  top: -10px;
  right: 10px;
  background: #FFE600;
  color: #1C2F6C;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(255,230,0,0.3);
  transform: rotate(5deg);
  z-index: 2;
}

@keyframes catFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ─── MERCADOLIBRE PRODUCT SHOWCASE ─── */
.ml-products-header {
  margin-top: 80px;
  text-align: center;
  margin-bottom: 40px;
}
.tag-ml {
  background: #FFE600;
  color: #1C2F6C;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255,230,0,0.15);
  display: inline-block;
}
.ml-subtitle-products {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 900;
  color: var(--espresso);
  margin-top: 14px;
  margin-bottom: 12px;
}
.ml-subtitle-products span {
  background: #FFE600;
  color: #1C2F6C;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 0.9em;
  letter-spacing: 0.5px;
  display: inline-block;
}
.ml-desc-products {
  font-size: 0.92rem;
  color: var(--dark);
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.ml-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.ml-product-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(158,88,59,0.06);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.ml-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(158,88,59,0.12);
}
.ml-badge-full {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #00A650;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0,166,80,0.25);
}
.ml-badge-full [data-lucide] {
  width: 10px;
  height: 10px;
  fill: var(--white);
}
.ml-product-img-wrap {
  background: var(--cream);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  border-bottom: 1px solid rgba(158,88,59,0.05);
}
.ml-product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform var(--transition);
}
.ml-product-card:hover .ml-product-img {
  transform: scale(1.04);
}
.ml-product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.ml-product-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 8px;
  line-height: 1.4;
}
.ml-product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
.ml-product-rating [data-lucide] {
  width: 14px;
  height: 14px;
  color: #FFB703;
  fill: #FFB703;
}
.ml-product-rating span {
  font-size: 0.72rem;
  color: var(--dark);
  opacity: 0.5;
  font-weight: 600;
}
.ml-product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  margin-bottom: 16px;
}
.ml-product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--terracotta);
}
.ml-product-price .ml-currency {
  font-size: 0.7rem;
  opacity: 0.6;
  font-weight: 500;
}
.ml-free-shipping {
  font-size: 0.72rem;
  font-weight: 700;
  color: #00A650;
  background: rgba(0,166,80,0.08);
  padding: 3px 8px;
  border-radius: 4px;
}
.ml-product-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1C2F6C;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 10px rgba(28,47,108,0.15);
}
.ml-product-link:hover {
  background: #FFE600;
  color: #1C2F6C;
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(255,230,0,0.3);
}
.ml-product-link [data-lucide] {
  width: 12px;
  height: 12px;
}

.footer-logo-img {
  max-height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  background: var(--cream);
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* ─── ADDI ─── */
.section-addi { background: linear-gradient(135deg, var(--espresso) 0%, var(--terracotta) 100%); position: relative; overflow: hidden; text-align: center; }

.addi-coming {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.28);
  color: var(--white); border-radius: 50px; padding: 8px 20px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 24px;
}
.addi-coming [data-lucide] { width: 16px; height: 16px; }

.addi-title { font-family: var(--font-display); font-size: clamp(40px, 5.5vw, 74px); font-weight: 900; line-height: 1.05; color: var(--white); margin-bottom: 20px; }
.addi-title em { font-style: italic; color: var(--honey); }

.addi-subtitle { font-size: 1.08rem; line-height: 1.7; color: rgba(255,255,255,0.62); max-width: 520px; margin: 0 auto 42px; }

.addi-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 680px; margin: 0 auto 42px; }
.addi-card {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 18px; padding: 22px 16px; text-align: center;
}
.addi-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--honey);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.addi-card-icon [data-lucide] { width: 20px; height: 20px; color: var(--dark); }
.addi-card-title { font-weight: 700; font-size: 0.9rem; color: var(--white); margin-bottom: 4px; }
.addi-card-desc  { font-size: 0.78rem; color: rgba(255,255,255,0.78); }

.addi-notify {
  display: flex; align-items: center; gap: 0;
  max-width: 420px; margin: 0 auto;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px; padding: 6px 6px 6px 22px;
}
.addi-notify input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--white); font-family: var(--font-body); font-size: 0.88rem;
}
.addi-notify input::placeholder { color: rgba(255,255,255,0.4); }
.addi-notify-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--honey); color: var(--dark);
  border: none; border-radius: 50px; padding: 12px 20px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.86rem;
  cursor: pointer; white-space: nowrap; transition: transform var(--transition);
}
.addi-notify-btn:hover { transform: scale(1.03); }
.addi-notify-btn [data-lucide] { width: 16px; height: 16px; }

.addi-deco { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.06); filter: blur(60px); pointer-events: none; }

/* ─── DISTRIBUIDOR ─── */
.section-distribuidor { background: var(--latte); position: relative; overflow: hidden; }
.distribuidor-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 60px; align-items: center; }

.distribuidor-title {
  font-family: var(--font-display); font-size: clamp(32px, 3.8vw, 50px); font-weight: 900; line-height: 1.1; margin-bottom: 24px;
}
.distribuidor-title em { font-style: italic; color: var(--terracotta); }

.distribuidor-body { font-size: 1.05rem; line-height: 1.8; opacity: 0.72; margin-bottom: 18px; }
.distribuidor-body.highlight {
  font-size: 1.12rem; color: var(--terracotta); opacity: 1; border-left: 4px solid var(--terracotta); padding-left: 18px; font-weight: 600;
}

.distribuidor-benefits { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.distribuidor-benefit { display: flex; align-items: flex-start; gap: 16px; }
.distribuidor-benefit-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--terracotta); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(158,88,59, 0.2);
}
.distribuidor-benefit-icon [data-lucide] { width: 18px; height: 18px; }
.distribuidor-benefit-title { font-size: 1.02rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.distribuidor-benefit-desc { font-size: 0.88rem; opacity: 0.65; line-height: 1.5; }

.distribuidor-visual { display: flex; justify-content: center; }
.distribuidor-card-wa {
  background: var(--white); border-radius: 24px; padding: 40px 32px;
  box-shadow: 0 20px 50px rgba(158,88,59, 0.1);
  border: 1.5px solid rgba(158,88,59, 0.08);
  text-align: center; max-width: 380px; width: 100%;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.distribuidor-card-wa:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(158,88,59, 0.16);
}
.distribuidor-card-wa::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--honey) 100%);
}
.distribuidor-wa-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(37, 211, 102, 0.1); color: #25D366;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 1.8rem;
}
.distribuidor-wa-icon [data-lucide] { width: 32px; height: 32px; }
.distribuidor-wa-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.distribuidor-wa-desc { font-size: 0.9rem; opacity: 0.62; line-height: 1.6; margin-bottom: 28px; }

.btn-distribuidor-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--terracotta); color: var(--white);
  font-family: var(--font-body); font-weight: 700; font-size: 0.96rem;
  padding: 16px 28px; border-radius: 50px; text-decoration: none; width: 100%;
  box-shadow: 0 8px 25px rgba(158, 88, 59, 0.3);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn-distribuidor-wa:hover {
  background: #874a31;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(158, 88, 59, 0.42);
}
.btn-distribuidor-wa [data-lucide] { width: 18px; height: 18px; }

.distribuidor-wa-phone {
  margin-top: 18px; font-size: 0.9rem; font-weight: 700; color: var(--dark);
  opacity: 0.55; display: inline-flex; align-items: center; gap: 6px;
}
.distribuidor-wa-phone [data-lucide] { width: 14px; height: 14px; }

/* ─── TESTIMONIALS ─── */
.section-testimonials { background: var(--white); }

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

.card-testimonial {
  background: var(--white); border-radius: var(--radius-card); padding: 28px;
  box-shadow: var(--shadow-card); border: 1.5px solid rgba(158,88,59,0.07); position: relative;
}
.card-testimonial-stars {
  display: flex; gap: 3px; position: absolute; top: 26px; right: 26px;
}
.card-testimonial-stars [data-lucide] { width: 16px; height: 16px; color: var(--honey); fill: var(--honey); }

.card-testimonial-quote { font-family: var(--font-display); font-size: 2.8rem; color: var(--terracotta); line-height: 0.5; margin-bottom: 16px; font-weight: 900; opacity: 0.2; }
.card-testimonial-text  { font-size: 0.92rem; line-height: 1.72; opacity: 0.72; margin-bottom: 22px; }

.card-testimonial-author { display: flex; align-items: center; gap: 12px; }
.card-testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--latte);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.card-testimonial-avatar [data-lucide] { width: 20px; height: 20px; color: var(--terracotta); }
.card-testimonial-name { font-weight: 700; font-size: 0.88rem; }
.card-testimonial-pet  { font-size: 0.76rem; opacity: 0.52; margin-top: 2px; }

/* ─── CTA ─── */
.section-cta { background: var(--latte); text-align: center; position: relative; overflow: hidden; }
.cta-title { font-family: var(--font-display); font-size: clamp(38px, 5vw, 66px); font-weight: 900; line-height: 1.05; color: var(--terracotta); margin-bottom: 18px; }
.cta-title em { font-style: italic; color: var(--dark); }
.cta-subtitle { font-size: 1.08rem; color: var(--dark); opacity: 0.85; max-width: 490px; margin: 0 auto 38px; line-height: 1.7; }

/* ─── FOOTER ─── */
.footer { background: var(--espresso); padding: 64px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 50px; }

.footer-logo { font-family: var(--font-display); font-size: 1.65rem; font-weight: 900; color: var(--white); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.footer-logo-circle { width: 28px; height: 28px; border-radius: 50%; background: var(--honey); display: flex; align-items: center; justify-content: center; }
.footer-logo-circle [data-lucide] { width: 14px; height: 14px; color: var(--terracotta); }

.footer-desc { font-size: 0.86rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 250px; margin-bottom: 22px; }

.footer-social { display: flex; gap: 10px; }
.footer-social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.78rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.footer-social-icon:hover { background: var(--honey); color: var(--dark); }

.footer-col-title { font-size: 0.73rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.86rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--honey); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-copyright { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ─── GYM CAROUSEL ─── */
.gym-carousel-wrap { position: relative; margin-bottom: 16px; }
.gym-carousel {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 2px;
}
.gym-carousel::-webkit-scrollbar { display: none; }

.gym-nav {
  position: absolute; top: calc(50% - 56px); transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 1.5px solid rgba(158,88,59,0.12); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(158,88,59,0.16);
  transition: background var(--transition), box-shadow var(--transition);
}
.gym-nav:hover { background: var(--terracotta); box-shadow: 0 8px 28px rgba(158,88,59,0.35); }
.gym-nav:hover [data-lucide] { color: var(--white); }
.gym-nav [data-lucide] { width: 20px; height: 20px; color: var(--dark); }
.gym-nav-prev { left: -24px; }
.gym-nav-next { right: -24px; }

.catalog-sub-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--terracotta); opacity: 0.55; margin-bottom: 22px;
}
.catalog-sub-label [data-lucide] { width: 15px; height: 15px; }

.card-gym {
  flex: 0 0 calc(50% - 12px); scroll-snap-align: start;
  background: var(--white); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-card);
  border: 1.5px solid rgba(158,88,59,0.07); cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-gym:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(158,88,59,0.15); }
.card-gym-img { width: 100%; aspect-ratio: 3/4; object-fit: contain; background: #F8F6F2; padding: 12px; display: block; }
.card-gym-body { padding: 28px; }
.card-gym-badge {
  display: inline-block; background: var(--latte); color: var(--terracotta);
  font-size: 0.67rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 30px; padding: 4px 12px; margin-bottom: 10px;
}
.card-gym-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.card-gym-desc  { font-size: 0.87rem; line-height: 1.6; opacity: 0.62; margin-bottom: 18px; }
.card-gym-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; width: 100%; }
.card-gym-price { font-family: var(--font-display); font-size: 1.35rem; font-weight: 900; color: var(--terracotta); }
.card-gym-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--honey); color: var(--dark);
  border: none; border-radius: 30px; padding: 9px 18px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.82rem;
  cursor: pointer; text-decoration: none;
  transition: transform var(--transition);
}
.card-gym-btn:hover { transform: translateY(-2px); }
.card-gym-btn [data-lucide] { width: 15px; height: 15px; }

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(26,10,62,0.7); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--white); border-radius: 28px;
  width: 100%; max-width: 860px; max-height: 90vh;
  overflow: hidden; position: relative;
  display: grid; grid-template-columns: 1.1fr 1fr;
  transform: scale(0.93) translateY(24px);
  transition: transform 0.38s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 40px 100px rgba(158,88,59,0.3);
}
.modal-overlay.active .modal-box { transform: scale(1) translateY(0); }

.modal-img-side { overflow: hidden; min-height: 460px; position: relative; }
.modal-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.modal-content-side { padding: 44px 36px; overflow-y: auto; display: flex; flex-direction: column; gap: 0; }
.modal-badge {
  display: inline-block; background: var(--latte); color: var(--terracotta);
  font-size: 0.67rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 30px; padding: 5px 14px; margin-bottom: 14px; width: fit-content;
}
.modal-title { font-family: var(--font-display); font-size: 2rem; font-weight: 900; line-height: 1.1; color: var(--dark); margin-bottom: 16px; }
.modal-desc  { font-size: 0.96rem; line-height: 1.75; opacity: 0.68; margin-bottom: 32px; flex: 1; }
.modal-wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--terracotta); color: var(--white);
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 15px 28px; border-radius: 50px; text-decoration: none; width: fit-content;
  transition: transform var(--transition), box-shadow var(--transition);
}
.modal-wa-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(158,88,59,0.35); }
.modal-wa-btn [data-lucide] { width: 20px; height: 20px; }

.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.95); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.14);
  transition: background var(--transition);
}
.modal-close:hover { background: var(--latte); }
.modal-close [data-lucide] { width: 18px; height: 18px; color: var(--dark); }

/* ─── IMAGE HOVER SWAP ─── */
.card-img-swap { position: relative; overflow: hidden; height: 220px; }
.card-img-swap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s ease; display: block; }
.card-img-swap .img-alt { opacity: 0; }
.card-product:hover .img-alt { opacity: 1; }

.card-cat-img-swap { position: relative; overflow: hidden; height: 100%; min-height: 280px; background: #F8F6F2; }
.card-cat-img-swap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #F8F6F2; padding: 12px; transition: opacity 0.4s ease; display: block; }
.card-cat-img-swap .img-alt { opacity: 0; }
.card-cat:hover .img-alt { opacity: 1; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .section-pad { padding: 60px 0; }
  .nav { padding: 12px 5%; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-cta { font-size: 0.8rem; padding: 9px 18px; margin-left: auto; margin-right: 15px; }

  .hero-inner, .about-grid, .feature-grid,
  .cats-feature-grid, .ml-grid { grid-template-columns: 1fr; gap: 40px; }
  
  .hero-text { text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; gap: 8px; margin-top: 28px; }

  .hero-img-main { height: 380px; border-radius: 60px 24px 24px 24px; }
  .hero-img-badge { left: 0; }
  .hero-img-pill  { right: 0; }
  .about-img-secondary { display: none; }
  .about-stat { left: 0; }
  .products-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .addi-cards { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .feature-img { height: 320px; }
  .cats-feature-img { height: 360px; border-radius: 24px; }
  .cats-feature-badge { left: 0; }
  .cats-feature-pill  { right: 0; }
  .card-gym { flex: 0 0 calc(100% - 0px); }
  .gym-nav { display: none; }
  
  .brand-trust-inner { justify-content: center; gap: 16px; }
  .brand-trust-logos { justify-content: center; gap: 20px; flex-wrap: wrap; }
  .brand-trust-logo { height: 22px; }

  .modal-box { grid-template-columns: 1fr; max-height: 92vh; }
  .modal-img-side { min-height: 260px; max-height: 300px; }
  .modal-content-side { padding: 28px 24px; }
  .modal-title { font-size: 1.4rem; }
  .cats-grid { grid-template-columns: 1fr; }
  .card-cat, .card-cat-wide { grid-template-columns: 1fr; }
  .card-cat-img { min-height: 220px; }
  
  .ml-products-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .addi-notify { max-width: 100%; }
  .distribuidor-grid { grid-template-columns: 1fr; gap: 40px; }
  .distribuidor-card-wa { max-width: 100%; }

  .cats-feature-reversed { grid-template-columns: 1fr; }
}

/* ─── CUSTOM SOCIAL MEDIA ICON FIX ─── */
.footer-social-icon {
  color: rgba(255,255,255,0.8) !important;
}
.footer-social-icon svg {
  width: 18px !important;
  height: 18px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2 !important;
  display: inline-block !important;
  vertical-align: middle !important;
  transition: stroke var(--transition);
}
.footer-social-icon:hover {
  background: var(--honey) !important;
  color: var(--dark) !important;
}

/* ─── ADMIN MODE UI ─── */
.admin-editable-price {
  position: relative;
  cursor: pointer;
  border: 1.5px dashed transparent;
  padding: 2px 6px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.admin-mode-active .admin-editable-price {
  border-color: var(--terracotta) !important;
  background-color: rgba(158,88,59,0.06) !important;
  color: var(--terracotta) !important;
}
.admin-mode-active .admin-editable-price:hover {
  background-color: rgba(158,88,59,0.12) !important;
  box-shadow: 0 0 8px rgba(158,88,59,0.15);
}
.admin-mode-active .admin-editable-price::after {
  content: ' ✏️';
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Admin Banner styling */
.admin-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--espresso), var(--terracotta));
  color: var(--white);
  z-index: 10000;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  font-size: 0.95rem;
  border-bottom: 2px solid var(--honey);
  animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.admin-banner-title {
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-banner-title span {
  background: var(--honey);
  color: var(--dark);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}
.admin-banner-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.admin-btn {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.admin-btn:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.admin-btn-primary {
  background: var(--honey);
  color: var(--dark);
  border-color: var(--honey);
}
.admin-btn-primary:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  box-shadow: 0 0 12px rgba(226,159,82,0.4);
}

/* GitHub Settings Modal */
.admin-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.admin-modal-overlay.active {
  opacity: 1; pointer-events: auto;
}
.admin-modal-box {
  background: var(--cream);
  border-radius: var(--radius-card);
  width: 90%;
  max-width: 500px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(45,31,23,0.3);
  border: 1px solid rgba(158,88,59,0.1);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.admin-modal-overlay.active .admin-modal-box {
  transform: translateY(0);
}
.admin-modal-title {
  font-family: var(--font-display);
  color: var(--dark);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.admin-modal-desc {
  font-size: 0.88rem;
  color: rgba(45,31,23,0.65);
  margin-bottom: 24px;
  line-height: 1.5;
}
.admin-form-group {
  margin-bottom: 18px;
}
.admin-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--terracotta);
  margin-bottom: 6px;
}
.admin-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(158,88,59,0.15);
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.admin-input:focus {
  outline: none;
  border-color: var(--terracotta);
}
.admin-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 28px;
}

/* Shift body when admin banner is active */
body.admin-banner-active {
  padding-top: 48px !important;
}

/* ─── UTILITIES: INLINE STYLE CONSOLIDATION ─── */

/* ─── ANIMATION DELAYS ─── */
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .15s; }
.delay-3 { transition-delay: .18s; }
.delay-4 { transition-delay: .24s; }
.delay-5 { transition-delay: .30s; }
.delay-6 { transition-delay: .36s; }
.delay-7 { transition-delay: .42s; }
.delay-8 { transition-delay: .48s; }

/* ─── TAG VARIANTS ─── */
.tag-accent {
  background: var(--terracotta);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
  display: inline-block;
}

/* ─── MAJESTIC FEATURE ─── */
.cats-feature-reversed { grid-template-columns: 1.1fr 0.9fr; }
.cats-feature-bg-cream { background: var(--cream); }
.majestic-price-wrap {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.majestic-price-label {
  font-size: 0.75rem;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.majestic-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--terracotta);
  line-height: 1;
  margin-top: 4px;
}
.majestic-wa-btn {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* ─── MAJESTIC BADGE OVERRIDES ─── */
.majestic-badge {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(158,88,59,0.3);
}
.majestic-badge .cats-feature-badge-label { color: rgba(255,255,255,0.7); }
.majestic-badge .cats-feature-badge-value { color: var(--white); font-size: 1.15rem; }
.majestic-pill {
  background: var(--espresso);
  color: var(--white);
}
.majestic-pill [data-lucide] { color: var(--honey); }

/* ─── CATS FEATURE IMG ROUNDED VARIANTS ─── */
.cats-feature-img-rounded { border-radius: 120px 24px 24px 24px; }

/* ─── GYM BADGE ACCENT ─── */  
.card-gym-badge-accent {
  background: var(--terracotta);
  color: var(--white);
}

/* ─── CTA LARGE ─── */
.btn-lg { font-size: 1.05rem; padding: 17px 42px; }

/* ─── TEXT UTILITIES ─── */
.nowrap { white-space: nowrap; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-14 { margin-top: 14px; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.mt-80 { margin-top: 80px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }

/* ─── AESTHETIC IMPROVEMENTS ─── */

/* Smooth custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: var(--terracotta);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--honey); }

/* Focus visible for accessibility */
*:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Subtle CTA pulse */
@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(158,88,59,0.2); }
  50% { box-shadow: 0 6px 28px rgba(158,88,59,0.35); }
}
.btn-pulse { animation: subtlePulse 3s ease-in-out infinite; }

/* Better image loading */
img {
  transition: opacity 0.3s ease;
}

/* Card product grid - 3 cols, responsive already handled */
@media (min-width: 901px) and (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Smooth section transitions */
section {
  position: relative;
}

/* Better mobile tap targets */
@media (max-width: 900px) {
  .btn, .card-product-btn, .card-gym-btn, .card-cat-btn {
    min-height: 44px;
  }
}


/* ═══════════════════════════════════════════════════
   SECCIÓN ENVÍOS Y GARANTÍA
════════════════════════════════════════════════════ */
.section-envios { background: var(--latte); }

.envios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.envio-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1.5px solid rgba(158,88,59,0.1);
  transition: transform 0.25s, box-shadow 0.25s;
}
.envio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(158,88,59,0.12);
}

.envio-icon {
  width: 52px; height: 52px;
  background: var(--latte);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.envio-icon [data-lucide] { color: var(--terracotta); width: 24px; height: 24px; }

.envio-title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.envio-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--dark);
  opacity: 0.7;
}

.envio-card-cta {
  background: var(--terracotta);
  border-color: transparent;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  gap: 20px;
}
.envio-card-cta:hover { box-shadow: 0 12px 36px rgba(158,88,59,0.35); }
.envio-cta-text {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--white); line-height: 1.3;
}
.envio-card-cta .btn {
  background: var(--white);
  color: var(--terracotta);
}
.envio-card-cta .btn:hover {
  background: var(--latte);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
  .envios-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .envios-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════
   BOTÓN FLOTANTE WHATSAPP
════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex; align-items: center; gap: 10px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 14px 22px 14px 18px;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  text-decoration: none;
  font-weight: 700; font-size: 0.92rem;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
  animation: none;
}
.wa-float svg { flex-shrink: 0; }

.wa-float-label { white-space: nowrap; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
}

@media (max-width: 600px) {
  .wa-float { padding: 14px; border-radius: 50%; }
  .wa-float-label { display: none; }
}


/* ═══════════════════════════════════════════════════
   HERO: aparece de inmediato (mejor LCP, sin parpadeo)
   La animación corre al cargar vía CSS, sin depender de JS
════════════════════════════════════════════════════ */
.hero .fade-in { animation: heroIn 0.7s ease both; }
.hero .fade-in.delay-2 { animation-delay: 0.12s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════════════════
   UNIFICACIÓN DE FOTOGRAFÍA DE PRODUCTO
   Grado de color cálido consistente para que todas las
   fotos se sientan de la misma sesión (más cohesivo/premium)
════════════════════════════════════════════════════ */
.hero-img-main,
.about-img-main, .about-img-secondary,
.cats-feature-img,
.card-gym-img,
.card-cat-img-swap img,
.card-img-swap img,
.card-product-img {
  filter: saturate(0.88) contrast(1.05) brightness(1.02) sepia(0.12);
}


/* ═══════════════════════════════════════════════════
   BANDA DE CIFRAS (quiebre de ritmo + prueba social)
════════════════════════════════════════════════════ */
.stats-band { background: var(--terracotta); padding: 38px 5%; }
.stats-band-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-around;
  gap: 18px; flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.stat-num {
  font-family: var(--font-display); font-size: clamp(30px, 4vw, 42px);
  font-weight: 900; color: var(--white); line-height: 1;
}
.stat-label {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 1px;
  color: rgba(255,255,255,0.82); text-transform: uppercase;
}
.stat-divider { width: 1px; height: 46px; background: rgba(255,255,255,0.25); }
@media (max-width: 620px) {
  .stat-divider { display: none; }
  .stats-band-inner { gap: 26px 36px; }
  .stat-item { flex: 0 0 38%; }
}


/* ═══════════════════════════════════════════════════
   MANIFIESTO (momento editorial full-bleed, rompe la fórmula)
════════════════════════════════════════════════════ */
.section-manifiesto {
  background: var(--dark);
  padding: clamp(84px, 12vw, 150px) 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-manifiesto::before {
  content: ''; position: absolute; top: -35%; left: 50%;
  transform: translateX(-50%);
  width: 760px; height: 760px; border-radius: 50%;
  background: radial-gradient(circle, rgba(226,159,82,0.16), transparent 68%);
  pointer-events: none;
}
.manifiesto-inner { max-width: 840px; margin: 0 auto; position: relative; z-index: 2; }
.manifiesto-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 900; line-height: 1.12; color: var(--cream);
  margin-bottom: 28px; text-wrap: balance;
}
.manifiesto-title em { font-style: italic; color: var(--honey); }
.manifiesto-text {
  font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.75;
  color: rgba(255,255,255,0.72); max-width: 600px; margin: 0 auto;
}


/* ═══════════════════════════════════════════════════
   TESTIMONIOS EDITORIALES (cita protagonista asimétrica)
════════════════════════════════════════════════════ */
.testimonials-editorial {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.testimonial-featured {
  background: var(--terracotta);
  border-radius: var(--radius-card);
  padding: 46px 44px;
  color: var(--white);
  display: flex; flex-direction: column; justify-content: center;
  box-shadow: var(--shadow-card);
}
.testimonial-featured-stars { display: flex; gap: 4px; margin-bottom: 22px; }
.testimonial-featured-stars [data-lucide] { width: 20px; height: 20px; color: var(--honey); fill: var(--honey); }
.testimonial-featured-text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 1.95rem);
  font-weight: 700; line-height: 1.42;
  margin: 0 0 30px;
}
.testimonial-featured-text em { font-style: italic; color: var(--honey); }
.testimonial-featured .card-testimonial-avatar { background: rgba(255,255,255,0.18); }
.testimonial-featured .card-testimonial-avatar [data-lucide] { color: var(--white); }
.testimonial-featured .card-testimonial-name { color: var(--white); }
.testimonial-featured .card-testimonial-pet  { color: rgba(255,255,255,0.72); opacity: 1; }

.testimonials-side { display: flex; flex-direction: column; gap: 24px; }
.testimonials-side .card-testimonial { flex: 1; }

@media (max-width: 800px) {
  .testimonials-editorial { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════
   REFINAMIENTO MÓVIL  (al final = gana en la cascada)
   Arregla desborde horizontal + mejora lectura en celular
════════════════════════════════════════════════════ */

/* Blindaje anti-scroll horizontal (el nav es fixed, no se afecta) */
html, body { overflow-x: hidden; max-width: 100%; }

@media (max-width: 900px) {
  /* La sección Majestic SÍ se apila (vencía la regla de escritorio) */
  .cats-feature-grid,
  .cats-feature-reversed { grid-template-columns: 1fr; gap: 34px; }

  /* En móvil: primero la foto del producto, luego el texto */
  .cats-feature-reversed > .cats-feature-img-wrap { order: -1; }

  /* Badges/pills DENTRO de la imagen, sin asomarse fuera de pantalla */
  .cats-feature-badge,
  .majestic-badge { top: 16px; left: 16px; right: auto; padding: 12px 16px; }
  .cats-feature-pill,
  .majestic-pill  { bottom: 18px; right: 16px; left: auto; }

  /* Imágenes de feature más bajas (menos scroll) */
  .cats-feature-img,
  .cats-feature-img-rounded { height: 320px; border-radius: 24px; }
}

@media (max-width: 600px) {
  /* Tipografía cómoda → secciones más cortas */
  .cats-feature-title { font-size: clamp(27px, 8vw, 34px); margin-bottom: 14px; }
  .cats-feature-body  { font-size: 0.95rem; line-height: 1.6; margin-bottom: 12px; }
  .cats-feature-img,
  .cats-feature-img-rounded { height: 250px; padding: 14px; }

  /* Specs más compactas */
  .cats-specs { gap: 10px; margin: 18px 0 22px; }
  .cats-spec { padding: 12px 14px; }

  /* Precio Majestic apilado y botón full-width */
  .majestic-price-wrap { gap: 14px; margin-top: 24px; }
  .majestic-price { font-size: 1.8rem; }
  .majestic-wa-btn { width: 100%; justify-content: center; padding: 15px 22px; font-size: 0.98rem; }

  /* Hero más contenido */
  .hero-title { font-size: clamp(38px, 12vw, 52px); }
  .hero-img-main { height: 300px; }

  /* Banda de cifras + manifiesto compactos */
  .stats-band { padding: 26px 5%; }
  .stat-num { font-size: clamp(25px, 9vw, 34px); }
  .section-manifiesto { padding: 62px 6%; }
  .manifiesto-title { font-size: clamp(26px, 8vw, 34px); }
  .manifiesto-text { font-size: 0.98rem; }

  /* Testimonio protagonista no tan gigante */
  .testimonial-featured { padding: 30px 24px; }
  .testimonial-featured-text { font-size: 1.28rem; line-height: 1.4; }

  /* Envíos / tarjetas con respiro correcto */
  .envio-card { padding: 24px 22px; }
}
