/* ===== FONTS ===== */
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #1B3A5C;
  --navy-dark: #0f2640;
  --orange: #E8872B;
  --orange-dark: #d0751f;
  --orange-light: #f5a623;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --font-body: 'Gilroy', sans-serif;
  --font-accent: 'Playfair Display', serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: auto; overflow-x: hidden; max-width: 100%; }
html.lenis, html.lenis body { height: auto; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.accent-bold {
  font-weight: 800;
  color: var(--navy);
}

.accent-italic {
  font-family: var(--font-accent);
  font-weight: 900;
  font-style: italic;
  color: var(--orange);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform var(--transition);
  opacity: 0;
}

.whatsapp-float:hover { transform: scale(1.1); }

.whatsapp-float__icon {
  width: 60%;
  height: 60%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0);
  transition: background 0.5s, backdrop-filter 0.5s, box-shadow 0.5s;
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 200px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 160px;
  width: auto;
  display: block;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.nav__link:hover::after { width: 100%; }
.nav__link:hover { color: var(--orange); }

.nav__link--cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.6rem 1.6rem;
  border-radius: 100px;
}

.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--orange-dark); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-right: -10px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
  transform-origin: center;
}

.nav__menu.active ~ .nav__toggle span:nth-child(1),
.nav__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__menu.active ~ .nav__toggle span:nth-child(2),
.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__menu.active ~ .nav__toggle span:nth-child(3),
.nav__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 200px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 30%, rgba(232, 135, 43, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 15% 90%, rgba(27, 58, 92, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  width: 60vw;
  max-width: 700px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(232, 135, 43, 0.12) 0%, transparent 65%);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 560px;
}

/* Hero subtitle pill */
.hero__pill {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.75rem;
  border-radius: 8px;
  margin-bottom: 1.75rem;
  opacity: 0;
  max-width: 100%;
}

.hero__pill .hero__subtitle {
  font-size: clamp(0.5rem, 1.85vw, 1.05rem);
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  line-height: 1.4;
  max-width: none;
  opacity: 1;
  white-space: nowrap;
}

/* Hero badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0;
}

.hero__badge-text { letter-spacing: 0.01em; }

/* Hero collage — 1 big + 2 small */
.hero__collage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.85rem;
  aspect-ratio: 1.05 / 1;
  max-width: 560px;
  margin-left: auto;
  position: relative;
}

.hero__collage > div {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(27, 58, 92, 0.15);
  position: relative;
  background: var(--off-white);
}

.hero__collage > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__collage > div:hover img { transform: scale(1.04); }

.hero__collage-main {
  grid-row: span 2;
}

.hero__collage-top { }
.hero__collage-bottom { }

.hero__tag {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0;
  opacity: 0;
}

.hero__title {
  margin-bottom: 1.25rem;
  line-height: 1;
}

.hero__title-accent {
  font-family: var(--font-accent);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(3.6rem, 9vw, 7.4rem);
  color: var(--orange);
  line-height: 0.9;
  letter-spacing: -0.01em;
  display: block;
  margin-top: -0.22em;
  margin-bottom: 0.08em;
}

.hero__title-accent .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
}

.hero__title-sub {
  font-family: var(--font-body);
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  font-weight: 600;
  color: var(--navy);
  display: block;
  opacity: 0;
  line-height: 1;
  margin-top: 0;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  opacity: 0;
}

.hero__actions .btn {
  font-size: 1.05rem;
  padding: 0.95rem 2.4rem;
}

/* Hero Stats */
.hero__stats {
  border-top: 1px solid rgba(27, 58, 92, 0.1);
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.hero__stat {
  text-align: left;
  padding: 0 clamp(1rem, 2vw, 1.75rem);
  position: relative;
}

.hero__stat:first-child { padding-left: 0; }
.hero__stat:last-child { padding-right: 0; }

.hero__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(27, 58, 92, 0.15) 50%, transparent 100%);
}

.hero__stat-number {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.hero__stat-label {
  font-size: clamp(0.78rem, 1vw, 0.85rem);
  color: var(--gray);
  line-height: 1.4;
  display: block;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 24px rgba(232,135,43,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn--outline:hover {
  background: var(--orange);
  color: var(--white);
}

.btn--sm { padding: 0.6rem 1.5rem; font-size: 0.85rem; }

/* ===== SECTIONS ===== */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section__header { margin-bottom: 1.5rem; text-align: center; }

.section__tag {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.section__tag--light { color: var(--orange-light); }

.section__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--navy);
}

.section__title--light { color: var(--white); }

.section__intro {
  text-align: center;
  color: var(--navy);
  max-width: 760px;
  margin: 0 auto 3rem;
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  font-weight: 500;
  line-height: 1.65;
}

.section__intro--light { color: rgba(255,255,255,0.65); }

/* ===== PRODUCTOS ===== */
.productos { background: var(--off-white); }

.productos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.producto-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.producto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.producto-card__img {
  height: 360px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8f6f1 0%, #efeae0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.producto-card__img-asset {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  padding: 0;
  transition: transform var(--transition);
}

.producto-card:hover .producto-card__img-asset {
  transform: scale(1.05);
}

.producto-card__body { padding: 2rem; }

.producto-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.producto-card__text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.producto-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.producto-card__tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #2ec4b6;
  padding: 0.45rem 1rem 0.45rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 600;
}

.producto-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.producto-card__actions .btn { flex: 0 0 auto; }

@media (max-width: 480px) {
  .producto-card__actions { gap: 0.5rem; }
  .producto-card__actions .btn { flex: 1 1 auto; }
}

.producto-card__tags li::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f0c419;
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* ===== FRAGANCIAS GRID (estilo prototipo: flat, sin caja) ===== */
.fragancias__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(1.6rem, 3.2vw, 2.6rem);
  row-gap: clamp(1.6rem, 3vw, 2.4rem);
}

.fragancia-card {
  background: transparent;
  transition: transform var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fragancia-card:hover { transform: translateY(-4px); }

/* Separadores verticales entre columnas (excepto la 3a) */
.fragancia-card:not(:nth-child(3n))::after {
  content: '';
  position: absolute;
  top: 0.4rem;
  bottom: 0.4rem;
  right: calc(clamp(1.6rem, 3.2vw, 2.6rem) / -2);
  width: 1px;
  background: #d4d8e0;
}

/* Clickable card variant -> links to filtered catalog */
.fragancia-card--link {
  display: flex;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.fragancia-card--link:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 4px;
}

/* CTA legacy oculto */
.fragancia-card__cta { display: none; }

.fragancia-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 2;
  overflow: hidden;
  display: block;
  border-bottom: 4px solid var(--navy);
  margin-bottom: 0.9rem;
}

.fragancia-card__img-asset {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform var(--transition);
}

.fragancia-card:hover .fragancia-card__img-asset {
  transform: scale(1.04);
}

.fragancia-card__body {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fragancia-card__title {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.45rem;
  line-height: 1.25;
}

.fragancia-card__title-italic {
  font-style: italic;
  font-weight: 700;
  color: var(--navy);
}

.fragancia-card__text {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 0.8rem;
}

.fragancia-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32rem 0.85rem 0.32rem 0.6rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: #2ec4b6;
  letter-spacing: 0.01em;
}

.fragancia-card__body .fragancia-card__badge {
  align-self: flex-start;
  margin-top: auto;
}

.fragancia-card__badge::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f0c419;
  flex-shrink: 0;
}

/* Category placeholder images */
.placeholder-img--cat {
  background: linear-gradient(135deg, #e8e0d4, #d4c8b8);
}

.placeholder-img--herbales { background: linear-gradient(135deg, #a8d8a8, #7cb87c); }
.placeholder-img--frescos { background: linear-gradient(135deg, #a8d8e8, #7cb8d8); }
.placeholder-img--frutales { background: linear-gradient(135deg, #f5c6aa, #e8a87c); }
.placeholder-img--exoticos { background: linear-gradient(135deg, #d8b4fe, #a78bfa); }
.placeholder-img--citricos { background: linear-gradient(135deg, #fde68a, #f59e0b); }
.placeholder-img--suaves { background: linear-gradient(135deg, #e5d5c0, #c4a882); }

.placeholder-img--products {
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.4;
}

/* ===== CATÁLOGO ===== */
.catalogo { background: var(--off-white); }

.catalogo__category { margin-bottom: 4rem; }
.catalogo__category:last-child { margin-bottom: 0; }

.catalogo__cat-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.catalogo__products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.aroma-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  font-family: inherit;
  border: none;
  width: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.aroma-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.aroma-card:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.aroma-card__visual {
  height: 220px;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.aroma-card__visual-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  transition: transform var(--transition);
}

.aroma-card:hover .aroma-card__visual-img {
  transform: scale(1.06);
}

/* Tapete visual: circulo con patron de huecos */
.tapete-visual {
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0.25rem auto 1.25rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.18) 0%, rgba(0,0,0,0) 60%),
    radial-gradient(circle 1.4px at 50% 50%, rgba(255,255,255,0.7) 49%, transparent 51%),
    var(--tapete-color, #6b7280);
  background-size: 100% 100%, 11px 11px, 100% 100%;
  background-position: center;
  box-shadow:
    inset 0 0 0 6px rgba(255,255,255,0.08),
    0 12px 30px rgba(0,0,0,0.12);
  position: relative;
  transition: transform var(--transition);
}

.tapete-visual::before {
  content: '';
  position: absolute;
  top: -2%;
  left: 50%;
  transform: translateX(-50%);
  width: 18%;
  height: 14%;
  background: var(--tapete-color, #6b7280);
  border-radius: 50% 50% 0 0;
  filter: brightness(0.9);
}

.aroma-card:hover .tapete-visual {
  transform: scale(1.04);
}

/* Tapete photo: foto real del producto (circular, sin marco) */
.tapete-photo {
  width: 80%;
  aspect-ratio: 1 / 1;
  margin: 0.25rem auto 1.25rem;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.18));
  transition: transform var(--transition);
}

.aroma-card:hover .tapete-photo {
  transform: scale(1.04);
}

.product-modal__visual--tapete .tapete-photo {
  width: 70%;
  margin: 0;
}

.catalogo-tapetes { background: var(--white); }

.aroma-card__name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.aroma-card__desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.aroma-card__weight {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.aroma-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin-top: auto;
}

.aroma-card__intensity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.aroma-card__intensity::before {
  content: 'Intensidad';
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.02em;
  margin-right: 4px;
}

.aroma-card__intensity span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.aroma-card__intensity span.dim {
  background: var(--gray-light);
}

/* ===== NOSOTROS ===== */
.nosotros__historia {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 5rem;
}

.nosotros__historia-content .section__title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.nosotros__historia-content .section__tag {
  text-align: left;
}

.nosotros__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 700;
}

.nosotros__historia-content > p:not(.nosotros__lead) {
  color: var(--navy);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.nosotros__valores { text-align: center; }
.nosotros__valores .valores-icons { justify-content: center; }

.nosotros__valores h4 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}

.valores-icons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.valor-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.valor-icon__svg {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: #f1f3f6;
  border-radius: 12px;
}

.valor-icon__svg svg {
  width: 34px;
  height: 34px;
}

.valor-icon strong {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Collage de 3 imagenes para historia */
.nosotros__collage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.85rem;
  aspect-ratio: 0.95 / 1;
  max-width: 460px;
  margin-left: auto;
}

.nosotros__collage-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(27, 58, 92, 0.12);
  position: relative;
}

.nosotros__collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nosotros__collage-item:hover img { transform: scale(1.06); }

.nosotros__collage-item:nth-child(1) { grid-row: span 2; }
.nosotros__collage-item:nth-child(2) { grid-column: 2; }
.nosotros__collage-item:nth-child(3) { grid-column: 2; }

/* Pillars: Misión / Visión / Propósito (imagen central) */
.nosotros__pillars {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: 4rem;
}

.pillar h3 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--navy);
  line-height: 1.1;
}

.pillar p {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.6;
}

.pillar--feature {
  text-align: center;
}

.pillar--feature h3 { margin-top: 1.75rem; }

.pillar__image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(27, 58, 92, 0.15);
  background: var(--off-white);
}

.pillar__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .nosotros__pillars { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .pillar--feature { order: -1; }
}

.nosotros__backed {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.nosotros__backed span {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}

.nosotros__backed-logo {
  height: 44px;
  width: auto;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.nosotros__backed-logo:hover { opacity: 1; }

/* ===== CONTACTO ===== */
.contacto__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: stretch;
  margin-top: 2rem;
}

.contacto__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contacto__info-title {
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.contacto__info-text {
  color: var(--gray);
  line-height: 1.7;
  font-size: 1.08rem;
  margin: 0;
}

.contacto__info-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contacto__info-label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--orange);
}

.contacto__info-value {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}

a.contacto__info-value {
  text-decoration: none;
  transition: color var(--transition);
}

a.contacto__info-value:hover { color: var(--orange); }

.contacto__form {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form__group { margin-bottom: 1.25rem; }

.form__group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  transition: border var(--transition);
}

.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.form__group textarea { resize: vertical; }

.contacto__social-icons {
  display: flex;
  gap: 0.9rem;
  margin-top: 0.25rem;
}

.social-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.social-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.social-icon:hover { transform: scale(1.1); }

.contacto__company {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.contacto__company span {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.04em;
}

.contacto__company-logo {
  height: 32px;
  width: auto;
  display: block;
}

/* ===== HEADER PAGE (catalogo / contacto) ===== */
.header--solid {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav__link--active { color: var(--orange); }
.nav__link--active::after { width: 100% !important; }

.page-header {
  padding: calc(200px + clamp(2.5rem, 6vw, 5rem)) 0 clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -8%;
  width: 50vw;
  max-width: 600px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(232, 135, 43, 0.1) 0%, transparent 65%);
  transform: translateY(-50%);
  pointer-events: none;
}

.page-header > .container { position: relative; z-index: 1; }
.page-header .section__tag { font-size: 1rem; }
.page-header .section__title { margin: 0.4rem 0 1rem; }
.page-header .section__intro { margin-bottom: 0; }

.catalogo__heading {
  text-align: center;
  margin-bottom: 3rem;
}

.catalogo__heading-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.catalogo__heading-text {
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.catalogo-tapetes { background: var(--off-white); }

/* ===== CATALOGO CONTROLES ===== */
.catalogo-controls {
  padding: 0 0 1rem;
  position: sticky;
  top: 200px;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
}

.catalogo-controls__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  flex-wrap: wrap;
}

.catalogo-filters {
  display: inline-flex;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 100px;
  padding: 0.3rem;
  gap: 0.25rem;
}

.catalogo-filter {
  border: none;
  background: transparent;
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--transition), color var(--transition);
}

.catalogo-filter:hover { color: var(--orange); }
.catalogo-filter.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(27,58,92,0.2);
}

.catalogo-search {
  position: relative;
  flex: 1 1 280px;
  max-width: 380px;
}

.catalogo-search__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--gray);
  pointer-events: none;
}

.catalogo-search__input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border-radius: 100px;
  border: 1px solid var(--gray-light);
  background: var(--white);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.catalogo-search__input::placeholder { color: var(--gray); }
.catalogo-search__input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232,135,43,0.12);
}

.catalogo-empty {
  text-align: center;
  color: var(--gray);
  padding: 3rem 1rem;
  font-style: italic;
}

.catalogo-section--hidden { display: none; }
.aroma-card--hidden { display: none !important; }
.catalogo__category--empty { display: none; }

@media (max-width: 768px) {
  .catalogo-controls { top: 150px; }
  .catalogo-controls__inner { gap: 1rem; padding-top: 1rem; padding-bottom: 1rem; }
  .catalogo-filter { padding: 0.5rem 0.95rem; font-size: 0.85rem; }
  .catalogo-search { flex: 1 1 100%; max-width: 100%; }
}

@media (max-width: 480px) {
  .catalogo-controls { top: 120px; }
  .catalogo-filters { width: 100%; justify-content: center; }
}

/* ===== PRODUCT MODAL ===== */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.product-modal.open {
  pointer-events: auto;
  opacity: 1;
}

.product-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 38, 64, 0.65);
  backdrop-filter: blur(6px);
}

.product-modal__dialog {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  max-width: 880px;
  width: 100%;
  max-height: calc(100vh - 3rem);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-modal.open .product-modal__dialog { transform: translateY(0) scale(1); }

.product-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--navy);
  z-index: 2;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-modal__close:hover { background: var(--orange); color: var(--white); transform: rotate(90deg); }

.product-modal__visual {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  user-select: none;
  touch-action: none;
}

.product-modal__visual.is-zoomed { cursor: grab; }
.product-modal__visual.is-panning { cursor: grabbing; }

.product-modal__visual img {
  max-width: 100%;
  max-height: 420px;
  width: auto;
  height: auto;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  pointer-events: none;
}

.product-modal__visual.is-panning img { transition: none; }

.product-modal__zoom-hint {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  background: rgba(15, 38, 64, 0.85);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.product-modal__zoom-hint::before {
  content: '';
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E") center/contain no-repeat;
}

.product-modal__visual.is-zoomed .product-modal__zoom-hint { opacity: 0; }

.product-modal__visual--tapete .tapete-visual {
  width: 70%;
  margin: 0;
}

.product-modal__visual--tapete { cursor: default; }
.product-modal__visual--tapete .product-modal__zoom-hint { display: none; }

.product-modal__visual--tapete .tapete-visual {
  width: 70%;
  margin: 0;
}

.product-modal__body {
  padding: 2.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.product-modal__category {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  align-self: flex-start;
}

.product-modal__name {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.product-modal__desc {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.product-modal__specs {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 1.75rem;
}

.product-modal__spec {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-modal__spec-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}

.product-modal__spec-value {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.product-modal__spec .aroma-card__intensity {
  justify-content: flex-start;
}

.product-modal__cta {
  margin-top: auto;
  align-self: flex-start;
}

body.modal-open { overflow: hidden; }

@media (max-width: 768px) {
  .product-modal { padding: 1rem; }
  .product-modal__dialog {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }
  .product-modal__visual { min-height: 220px; padding: 2rem; }
  .product-modal__visual img { max-height: 220px; }
  .product-modal__body { padding: 1.75rem; }
  .product-modal__close { top: 0.75rem; right: 0.75rem; }
}

/* Form hint */
.form__hint {
  color: var(--gray);
  font-weight: 400;
  font-size: 0.78rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.5);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ===== ANIMATION STATES ===== */
[data-animate] { opacity: 0; }
[data-animate="fade-up"] { transform: translateY(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"] { transform: translateX(40px); }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] { opacity: 1 !important; transform: none !important; }
  .hero__title-accent .char { opacity: 1 !important; transform: none !important; }
}

/* ===== RESPONSIVE ===== */

/* Tablet landscape & small desktop */
@media (max-width: 1200px) {
  .container { padding: 0 1.75rem; }
  .nav__menu { gap: 1.75rem; }
  .hero__collage { max-width: 480px; }
}

/* Tablet */
@media (max-width: 1024px) {
  .container { padding: 0 1.5rem; }

  .hero { min-height: auto; padding-top: 220px; padding-bottom: 0; }
  .hero__layout {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(2rem, 5vw, 3rem);
    text-align: center;
  }
  .hero__content { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
  .hero__collage { order: -1; max-width: 460px; margin: 0 auto; }
  .hero__pill { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__stat { text-align: center; }

  .hero::before { right: -25%; width: 80vw; opacity: 0.7; }

  .section { padding: 5rem 0; }

  .fragancias__grid { grid-template-columns: repeat(2, 1fr); }
  .fragancia-card:not(:nth-child(3n))::after { display: none; }
  .fragancia-card:not(:nth-child(2n))::after { display: block; }
  .catalogo__products-grid { grid-template-columns: repeat(2, 1fr); }
  .contacto__grid { grid-template-columns: 1fr; gap: 2rem; }

  .nosotros__historia { grid-template-columns: 1fr; gap: 2rem; }
  .nosotros__historia-content .section__title,
  .nosotros__historia-content .section__tag { text-align: center; }
  .valores-icons { justify-content: center; }
  .nosotros__collage { margin: 0 auto; max-width: 420px; }
  .mvp { gap: 2rem; }
}

/* Tablet portrait & large mobile */
@media (max-width: 768px) {
  html { font-size: 15px; }

  .container { padding: 0 1.25rem; }

  .nav { height: 150px; }
  .nav__logo-img { height: 120px; }
  .nav__toggle { display: flex; z-index: 102; }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -10px 0 40px rgba(0,0,0,0.12);
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 101;
  }

  .nav__menu.active { right: 0; }
  .nav__link { font-size: 1rem; }
  .nav__link--cta { width: 100%; text-align: center; }

  body.nav-open { overflow: hidden; }
  body.nav-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(15, 38, 64, 0.45);
    backdrop-filter: blur(2px);
    z-index: 99;
    animation: fadeIn 0.4s ease;
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  .hero { padding-top: 180px; }
  .hero__tag { font-size: 1rem; letter-spacing: 0.02em; }
  .hero__title { margin-bottom: 1.5rem; }
  .hero__title-accent { font-size: clamp(3.6rem, 15vw, 5.4rem); }
  .hero__title-sub { font-size: clamp(1.9rem, 7.6vw, 2.9rem); }
  .hero__pill { padding: 0.8rem 1rem; }
  .hero__collage { max-width: min(85vw, 380px); }

  .hero__stats { padding: 1.75rem 0; }
  .hero__stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 0;
  }
  .hero__stat { padding: 0 1rem; text-align: center; }
  .hero__stat:first-child { padding-left: 1rem; }
  .hero__stat:last-child { padding-right: 1rem; }
  .hero__stat:nth-child(2)::after,
  .hero__stat:last-child::after { display: none; }
  .hero__stat:nth-child(odd)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(27, 58, 92, 0.15) 50%, transparent 100%);
  }
  .hero__stat:nth-child(-n+2) {
    border-bottom: 1px solid rgba(27, 58, 92, 0.08);
    padding-bottom: 1.5rem;
    margin-bottom: 0;
  }
  .hero__stat:nth-child(n+3) { padding-top: 0.5rem; }
  .hero__stat-number { font-size: 1.9rem; }
  .hero__stat-label { font-size: 0.78rem; }

  .section { padding: 4rem 0; }
  .section__intro { margin-bottom: 2.25rem; font-size: 1.05rem; }

  .productos__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .producto-card__img { height: 300px; }
  .producto-card__body { padding: 1.5rem; }
  .producto-card__title { font-size: 1.3rem; }

  .fragancias__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .fragancia-card::after { display: none !important; }

  .catalogo__products-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .catalogo__cat-title { font-size: 1.6rem; margin-bottom: 1.5rem; }
  .catalogo__category { margin-bottom: 3rem; }

  .nosotros__historia { margin-bottom: 3.5rem; }
  .nosotros__lead { font-size: 1rem; }
  .mvp { gap: 1.75rem; margin-bottom: 3rem; }
  .valores-icons { gap: 1.25rem; }
  .valor-icon__svg { width: 48px; height: 48px; }
  .valor-icon__svg svg { width: 28px; height: 28px; }
  .nosotros__backed { margin-top: 3rem; padding-top: 2rem; }
  .nosotros__backed-logo { height: 38px; }

  .contacto__form { padding: 1.75rem; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .contacto__social-icons { gap: 0.85rem; }
  .contacto__company { justify-content: flex-start; flex-wrap: wrap; }
  .social-icon { width: 46px; height: 46px; }

  .hero__actions { flex-direction: row; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
  .hero__actions .btn { flex: 1 1 auto; min-width: 140px; }

  .whatsapp-float { width: 52px; height: 52px; bottom: 1.25rem; right: 1.25rem; }
}

/* Small mobile */
@media (max-width: 480px) {
  html { font-size: 14.5px; }
  .container { padding: 0 1rem; }

  .nav { height: 120px; }
  .nav__logo-img { height: 96px; }

  .hero { padding-top: 150px; }
  .hero__tag { font-size: 0.95rem; }
  .hero__title-accent { font-size: clamp(3.1rem, 16vw, 4.2rem); }
  .hero__title-sub { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .hero__collage { max-width: min(78vw, 280px); gap: 0.5rem; aspect-ratio: 1.15 / 1; }
  .hero__collage > div { border-radius: 14px; }
  .hero__pill { margin-bottom: 1.5rem; padding: 0.75rem 0.85rem; }
  .hero__badge { font-size: 0.85rem; }

  .hero__stats { padding: 1.5rem 0; }
  .hero__stats-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem 0; }
  .hero__stat { padding: 0 0.75rem; }
  .hero__stat:first-child { padding-left: 0.75rem; }
  .hero__stat:last-child { padding-right: 0.75rem; }
  .hero__stat:nth-child(-n+2) { padding-bottom: 1.25rem; }
  .hero__stat-number { font-size: 1.7rem; }
  .hero__stat-label { font-size: 0.72rem; line-height: 1.3; }

  .section { padding: 3.25rem 0; }
  .section__title { font-size: clamp(1.75rem, 8vw, 2.4rem); }
  .section__header { margin-bottom: 1rem; }

  .producto-card__img { height: 260px; }
  .producto-card__body { padding: 1.25rem; }
  .producto-card__tags li { font-size: 0.72rem; padding: 0.3rem 0.7rem; }

  .fragancia-card__img { height: auto; }
  .fragancia-card__body { padding: 0; }

  .aroma-card { padding: 1.25rem; }
  .aroma-card__visual { height: 170px; }

  .catalogo__cat-title { font-size: 1.4rem; }

  .mvp h3 { font-size: 1.5rem; }
  .nosotros__historia { margin-bottom: 2.5rem; }
  .mvp { margin-bottom: 2.5rem; }

  .contacto__form { padding: 1.4rem; }
  .form__group input,
  .form__group textarea { font-size: 16px; padding: 0.75rem 0.9rem; }
  .contacto__company-logo { height: 30px; }

  .btn { padding: 0.75rem 1.6rem; font-size: 0.85rem; }

  .whatsapp-float { width: 48px; height: 48px; bottom: 1rem; right: 1rem; }
}

/* Landscape phones — keep hero readable */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 90px 0 1.5rem; }
  .hero__layout { grid-template-columns: 1fr 1fr; text-align: left; gap: 1.5rem; padding: 1rem 0; }
  .hero__collage { order: 0; max-width: 280px; gap: 0.5rem; }
  .hero__content { margin: 0; }
  .hero__subtitle { margin-left: 0; margin-right: 0; max-width: none; }
  .hero__actions { justify-content: flex-start; }
  .hero__stats { padding: 1rem 0; }
  .hero__stats-grid { grid-template-columns: repeat(4, 1fr); }
  .hero__stat:nth-child(-n+2) { border-bottom: none; padding-bottom: 0; }
  .hero__stat:nth-child(2)::after,
  .hero__stat:nth-child(3)::after { display: block; }
  .hero__stat:last-child::after { display: none; }
}
