/* =============================================
   Podología — Design System
   Inspirado en Serenna · Paleta del flyer
   ============================================= */

:root {
  --green-dark: #4a5c2e;
  --green: #5c6f3a;
  --green-light: #7a8f52;
  --green-pale: #e8edd8;
  --gold: #c9a84c;
  --gold-light: #e8d5a0;
  --cream: #f2f4e3;
  --cream-dark: #e8ead8;
  --white: #ffffff;
  --text: #2c3320;
  --text-muted: #5a6348;
  --text-light: rgba(255,255,255,0.85);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-script: 'Great Vibes', cursive;

  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  --shadow: 0 8px 32px rgba(74, 92, 46, 0.08);
  --shadow-lg: 0 20px 60px rgba(74, 92, 46, 0.12);
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 96px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: -40px;
  z-index: -2;
  background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1600&q=80') center / cover no-repeat;
  filter: blur(8px) brightness(1.06) saturate(0.82);
  transform: scale(1.04);
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 70% 55% at 30% 70%, rgba(92, 111, 58, 0.22) 0%, transparent 55%),
    linear-gradient(160deg, rgba(232, 237, 216, 0.62) 0%, rgba(242, 244, 227, 0.72) 100%);
}

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--green-light);
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
}
.script {
  display: block;
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-top: 8px;
  line-height: 1.3;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9375rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 28px;
}
.btn--primary:hover {
  background: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--ghost {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-pale);
  padding: 14px 28px;
}
.btn--ghost:hover {
  border-color: var(--green);
  background: var(--green-pale);
}
.btn--white {
  background: var(--white);
  color: var(--green-dark);
  padding: 16px 32px;
  font-weight: 600;
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--nav { padding: 12px 22px; font-size: 0.875rem; }
.nav__mobile-cta { display: none; }

/* ---- Loader ---- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(242, 244, 227, 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ---- Brand logo ---- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand__icon {
  display: block;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}
.brand__name {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}
.brand--loader {
  flex-direction: column;
  gap: 16px;
  pointer-events: none;
}
.brand--loader .brand__icon {
  width: 56px;
  height: 56px;
}
.brand--loader .brand__name {
  font-size: 2rem;
}
.brand--footer .brand__name {
  color: var(--white);
}
.brand--modal {
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.brand--modal .brand__icon {
  width: 72px;
  height: 72px;
}
.brand--modal .brand__name {
  font-size: 1.5rem;
}

/* ---- Nav ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(242, 244, 227, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(74, 92, 46, 0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}
.nav__brand { flex-shrink: 0; }
.nav__links {
  display: flex;
  gap: 28px;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--green-dark); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--green-dark);
  margin-bottom: 20px;
}
.hero__title em {
  font-style: italic;
  color: var(--green-light);
}
.hero__lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 460px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__image-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}
.hero__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--green-dark);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  animation: float 4s ease-in-out infinite;
}
.hero__badge span {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}
.hero__badge small {
  font-size: 0.75rem;
  opacity: 0.85;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fade-bounce 2s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green-light), transparent);
}
@keyframes fade-bounce {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* ---- Pillars ---- */
.pillars {
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.pillar {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  transition: transform var(--transition);
}
.stat.reveal {
  transform: translateY(28px) scale(0.95);
}
.stat.reveal.visible {
  transform: translateY(0) scale(1);
}

.contact__info .reveal {
  transform: translateX(-32px) translateY(8px);
}
.contact__info .reveal.visible {
  transform: translateX(0) translateY(0);
}

.pillar.reveal.visible {
  transition: transform var(--transition), opacity 1s cubic-bezier(0.22, 1, 0.36, 1), filter 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.pillar:hover { transform: translateY(-6px); }
.pillar__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 50%;
  font-size: 1.375rem;
}
.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.pillar p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Marquee ---- */
.marquee {
  background: rgba(74, 92, 46, 0.88);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: flex;
  animation: marquee 25s linear infinite;
}
.marquee__track span {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  padding-right: 48px;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Sections ---- */
.section { padding: 100px 0; }
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head .section-desc { margin: 0 auto; }

/* ---- About ---- */
.about { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(6px); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about__image {
  position: relative;
}
.about__image img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.about__image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about__content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.about__sign {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold) !important;
  margin-top: 24px !important;
}

.stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--green-pale);
}
.stat__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.stat__plus, .stat__suffix {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
}
.stat small {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---- Services ---- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card__img {
  position: relative;
}
.service-card__img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.service-card:hover .service-card__img img {
  transform: scale(1.06);
}
.service-card__icon {
  position: absolute;
  bottom: -18px;
  left: 24px;
  z-index: 3;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  box-shadow: var(--shadow);
}
.service-card__body {
  position: relative;
  z-index: 2;
  padding: 32px 24px 24px;
}
.service-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.service-card__body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.service-card__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  transition: color var(--transition);
}
.service-card:hover .service-card__link { color: var(--gold); }

/* ---- Views (SPA) ---- */
.view {
  animation: viewIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.view--hidden {
  display: none !important;
}
@keyframes viewIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Catalog ---- */
.catalog-teaser {
  background: transparent;
}
.catalog-teaser__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px;
  background: rgba(232, 237, 216, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
}
.catalog-teaser .section-desc { margin-bottom: 0; }

.page-hero {
  padding: calc(var(--nav-h) + 48px) 0 48px;
  background: transparent;
}
.page-hero__inner { text-align: center; max-width: 640px; margin: 0 auto; }
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-hero__title em { font-style: italic; color: var(--green-light); }
.page-hero__desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
}

.catalog-page { padding-top: 0; }
.catalog-page .catalog__grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.nav__link--active { color: var(--green-dark) !important; font-weight: 600; }
.nav__link--active::after { width: 100% !important; }

.catalog { background: var(--white); }
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.product-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}
.product-card__info {
  flex: 1;
  margin-bottom: 20px;
}
.product-card__info h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.product-card__info p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.product-card__price-block {
  margin: 0 -24px 20px;
  padding: 20px 24px;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  text-align: center;
}
.product-card__price-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.product-card__price {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.03em;
}
.product-card .btn { font-size: 0.875rem; padding: 14px 20px; margin-top: auto; }

/* ---- Benefits ---- */
.benefits__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.benefit {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.benefit:hover { transform: translateY(-4px); }
.benefit__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-pale);
  display: block;
  margin-bottom: 12px;
}
.benefit h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.benefit p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ---- CTA Band ---- */
.cta-band {
  background: rgba(74, 92, 46, 0.88);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 80px 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}
.cta-band p {
  color: var(--text-light);
  max-width: 480px;
}

/* ---- Testimonials ---- */
.testimonials { background: rgba(255, 255, 255, 0.88); backdrop-filter: blur(6px); }
.testimonials__slider {
  position: relative;
  overflow: hidden;
}
.testimonials__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonial {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--cream);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  min-width: 0;
}
.testimonial__stars {
  color: var(--gold);
  font-size: 0.75rem;
  margin-bottom: 16px;
  display: flex;
  gap: 3px;
}
.testimonial__stars i { font-size: 0.75rem; }
.testimonial blockquote {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__avatar {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}
.testimonial footer strong {
  display: block;
  font-size: 0.875rem;
}
.testimonial footer small {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.testimonials__btn {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--green-pale);
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.125rem;
  color: var(--green-dark);
  transition: all var(--transition);
}
.testimonials__btn:hover {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

/* ---- Contact ---- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__info { margin-top: 32px; }
.contact__info li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 50%;
  font-size: 1rem;
}
.contact__info strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--green-dark);
}
.contact__info span,
.contact__info a {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.contact__info a:hover { color: var(--green); }

.contact__form {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.contact__form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.contact__form-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 12px;
  background: var(--cream);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(92, 111, 58, 0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-hint {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.contact__cta {
  background: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.contact__cta h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.contact__cta p {
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Booking Modal ---- */
.bk-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.bk-modal.active {
  opacity: 1;
  visibility: visible;
}
.bk-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 51, 32, 0.55);
  backdrop-filter: blur(8px);
}
.bk-modal__dialog {
  position: relative;
  display: grid;
  grid-template-columns: 300px 1fr;
  width: 100%;
  max-width: 800px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(44, 51, 32, 0.2);
  transform: scale(0.92) translateY(24px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}
.bk-modal__dialog--in {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.bk-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--cream);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.bk-modal__close:hover {
  background: var(--green-pale);
  transform: rotate(90deg);
}

/* Brand side */
.bk-modal__brand {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--cream-dark);
}
.bk-modal__logo {
  width: 220px;
  height: auto;
  margin-bottom: 28px;
}
.bk-modal__tagline {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1.4;
}

/* Panel */
.bk-modal__panel {
  padding: 28px 32px 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Progress */
.bk-progress {
  position: relative;
  margin-bottom: 24px;
}
.bk-progress__bar {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: translateY(-50%);
  width: 0;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
.bk-progress__steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.bk-progress__steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cream-dark);
  transform: translateY(-50%);
}
.bk-progress__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
.bk-progress__dot.active {
  background: var(--green-pale);
  color: var(--green-dark);
}
.bk-progress__dot.current {
  background: var(--green-dark);
  color: var(--white);
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(74, 92, 46, 0.3);
}

/* Steps */
.bk-steps {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.bk-step {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;
  overflow: hidden;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.bk-step.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
  overflow: visible;
}
.bk-step.exit-left {
  transform: translateX(-40px);
  opacity: 0;
}
.bk-step.exit-right {
  transform: translateX(40px);
  opacity: 0;
}

.bk-step__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}
.bk-step__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.bk-back {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--text-muted);
  cursor: pointer;
  margin-top: 16px;
  padding: 0;
  transition: color var(--transition);
}
.bk-back:hover { color: var(--green-dark); }

/* Calendar */
.bk-cal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.bk-cal__month {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}
.bk-cal__nav {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--green-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.bk-cal__nav:hover {
  border-color: var(--green);
  background: var(--green-pale);
}
.bk-cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.bk-cal__weekdays span {
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 4px 0;
}
.bk-cal__weekdays .weekend { color: #c45c4a; }
.bk-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.bk-cal__day {
  aspect-ratio: 1;
  border: none;
  background: none;
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bk-cal__day--empty { pointer-events: none; }
.bk-cal__day--weekend { color: #c45c4a; }
.bk-cal__day--disabled {
  color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
}
.bk-cal__day--today {
  border: 2px solid var(--gold);
}
.bk-cal__day:not(.bk-cal__day--disabled):not(.bk-cal__day--empty):hover {
  background: var(--green-pale);
  transform: scale(1.1);
}
.bk-cal__day--selected {
  background: var(--green-dark) !important;
  color: var(--white) !important;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(74, 92, 46, 0.3);
  animation: day-pop 0.3s ease;
}
@keyframes day-pop {
  0% { transform: scale(0.8); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1.1); }
}

/* Period cards */
.bk-period {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bk-period__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  font-family: var(--font-sans);
}
.bk-period__card strong {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--green-dark);
}
.bk-period__card small {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.bk-period__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.375rem;
}
.bk-period__card--active .bk-period__icon {
  background: var(--green-dark);
  color: var(--white);
}
.bk-period__card:hover:not(.bk-period__card--disabled) {
  border-color: var(--green);
  background: var(--green-pale);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.bk-period__card--active {
  border-color: var(--green-dark) !important;
  background: var(--green-pale) !important;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.bk-period__card--disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* Time slots */
.bk-times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.bk-time {
  padding: 12px 8px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 12px;
  background: var(--white);
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: time-in 0.4s ease both;
}
@keyframes time-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.bk-time:hover {
  border-color: var(--green);
  background: var(--green-pale);
  transform: translateY(-2px);
}
.bk-time--active {
  background: var(--green-dark) !important;
  color: var(--white) !important;
  border-color: var(--green-dark) !important;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(74, 92, 46, 0.25);
}

/* Summary & form */
.bk-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.bk-summary__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--green-pale);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--green-dark);
}
.bk-summary__item i {
  font-size: 0.875rem;
  color: var(--green);
}
.bk-form .form-group { margin-bottom: 12px; }
.bk-form .form-group label {
  font-size: 0.75rem;
  margin-bottom: 4px;
}
.bk-form .form-group input,
.bk-form .form-group select,
.bk-form .form-group textarea {
  padding: 10px 14px;
  font-size: 0.875rem;
  border-radius: 10px;
}
.bk-form .btn--lg { padding: 12px 24px; font-size: 0.9375rem; }

/* ---- Footer ---- */
.footer {
  background: rgba(74, 92, 46, 0.92);
  backdrop-filter: blur(10px);
  color: var(--text-light);
  padding: 48px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 32px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__logo {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin-bottom: 0;
}
.footer__brand p { font-size: 0.875rem; max-width: 320px; margin: 0; }
.footer h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer a, .footer span {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer a:hover { color: var(--gold-light); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8125rem;
}
.footer__tag { color: var(--gold-light); }
.footer__tag .fa-heart { color: var(--gold-light); font-size: 0.75rem; margin: 0 3px; }

/* ---- WhatsApp Float ---- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float__tooltip {
  position: absolute;
  right: 70px;
  background: var(--white);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 0.8125rem;
  white-space: nowrap;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
  pointer-events: none;
}
.wa-float:hover .wa-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

html.modal-open,
body.modal-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(44px) scale(0.97);
  filter: blur(6px);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform, filter;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal--left {
  transform: translateX(-56px) translateY(20px) scale(0.97);
}
.reveal--left.visible {
  transform: translateX(0) translateY(0) scale(1);
}

.reveal--right {
  transform: translateX(56px) translateY(20px) scale(0.97);
}
.reveal--right.visible {
  transform: translateX(0) translateY(0) scale(1);
}

.reveal--scale {
  transform: scale(0.88);
  filter: blur(8px);
}
.reveal--scale.visible {
  transform: scale(1);
  filter: blur(0);
}

.reveal--fade {
  transform: translateY(24px);
  filter: none;
}
.reveal--fade.visible {
  transform: translateY(0);
}

.reveal--delay { --reveal-delay: 0.15s; }
.reveal--delay-2 { --reveal-delay: 0.3s; }
.reveal--delay-3 { --reveal-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 480px; margin: 0 auto; order: -1; }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .benefits__header { grid-template-columns: 1fr; }
  .testimonial { flex: 0 0 calc(50% - 12px); }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 72px; }

  .container { padding: 0 20px; }
  .section { padding: 64px 0; }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px 20px calc(24px + env(safe-area-inset-bottom));
    gap: 16px;
    border-bottom: 1px solid var(--cream-dark);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
    box-shadow: 0 12px 32px rgba(74, 92, 46, 0.08);
  }
  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav__links a {
    font-size: 1rem;
    padding: 4px 0;
  }
  .nav__mobile-cta {
    display: inline-flex;
    margin-top: 8px;
    width: 100%;
    white-space: normal;
    text-align: center;
  }
  .nav__toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .btn--nav { display: none; }
  .nav__brand .brand__name { font-size: 1.4rem; }
  .nav__brand .brand__icon { width: 40px; height: 40px; }
  .brand--loader .brand__name { font-size: 1.75rem; }
  .brand--loader .brand__icon { width: 48px; height: 48px; }

  .hero {
    min-height: 100dvh;
    padding: calc(var(--nav-h) + 20px) 0 56px;
  }
  .hero__grid { gap: 28px; }
  .hero__title { font-size: clamp(2rem, 9vw, 2.75rem); }
  .hero__lead {
    font-size: 1rem;
    margin-bottom: 24px;
    max-width: none;
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
    white-space: normal;
  }
  .hero__scroll { display: none; }
  .hero__badge {
    bottom: 16px;
    left: 16px;
    padding: 12px 16px;
  }
  .hero__badge span { font-size: 1.5rem; }
  .script { font-size: 1.5rem; }

  .section-title { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .section-head { margin-bottom: 40px; }

  .pillars { padding: 40px 0; }
  .pillars__grid { grid-template-columns: 1fr; gap: 16px; }
  .pillar { padding: 24px 16px; }

  .about__image-accent {
    width: 72px;
    height: 72px;
    bottom: -8px;
    right: 8px;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 16px;
  }
  .stat {
    flex: 1 1 calc(50% - 8px);
    min-width: 130px;
    text-align: center;
  }
  .stat__num { font-size: 2rem; }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .catalog__grid,
  .catalog-page .catalog__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefits__grid { grid-template-columns: 1fr; }
  .benefit { padding: 24px 20px; }

  .cta-band { padding: 56px 0; }
  .cta-band__inner .btn {
    width: 100%;
    white-space: normal;
  }

  .testimonial {
    flex: 0 0 100%;
    padding: 24px 20px;
  }
  .testimonials__btn {
    width: 52px;
    height: 52px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact__cta {
    padding: 32px 24px;
  }
  .contact__cta h3 { font-size: 1.5rem; }

  .page-hero {
    padding: calc(var(--nav-h) + 28px) 0 28px;
  }
  .page-hero__title {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .form-row { grid-template-columns: 1fr; }

  .bk-modal {
    padding: 12px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    align-items: flex-end;
  }
  .bk-modal__dialog {
    grid-template-columns: 1fr;
    max-width: 100%;
    max-height: calc(100dvh - 24px - env(safe-area-inset-bottom));
    overflow-y: auto;
  }
  .bk-modal__brand {
    flex-direction: row;
    gap: 16px;
    padding: 20px 24px;
    border-right: none;
    border-bottom: 1px solid var(--cream-dark);
  }
  .bk-modal__brand .brand--modal {
    flex-direction: row;
    text-align: left;
    gap: 14px;
  }
  .brand--modal .brand__icon { width: 56px; height: 56px; }
  .bk-modal__tagline { font-size: 1.2rem; text-align: left; }
  .bk-modal__panel {
    padding: 20px 20px 24px;
    overflow: visible;
  }
  .bk-modal__close {
    width: 44px;
    height: 44px;
    top: 12px;
    right: 12px;
  }
  .bk-period { grid-template-columns: 1fr; }
  .bk-times { grid-template-columns: repeat(2, 1fr); }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand .brand { margin-bottom: 4px; }
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }

  .catalog-teaser__inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }
  .catalog-teaser__inner .btn {
    width: 100%;
    white-space: normal;
  }

  .product-card__price { font-size: 2.75rem; }

  .wa-float {
    bottom: max(20px, env(safe-area-inset-bottom));
    right: max(20px, env(safe-area-inset-right));
    width: 54px;
    height: 54px;
  }
  .wa-float__tooltip { display: none; }

  .marquee__track span { font-size: 1rem; }

  .reveal {
    transform: translateY(24px) scale(0.98);
    filter: blur(3px);
    transition-duration: 0.75s;
  }
  .reveal--left {
    transform: translateX(-20px) translateY(12px) scale(0.98);
  }
  .reveal--right {
    transform: translateX(20px) translateY(12px) scale(0.98);
  }
  .reveal--scale {
    transform: scale(0.94);
    filter: blur(3px);
  }
  .reveal--fade {
    transform: translateY(16px);
  }
  .contact__info .reveal {
    transform: translateX(-12px) translateY(8px);
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stat { flex: 1 1 100%; }
  .hero__visual { max-width: 100%; }
  .section { padding: 56px 0; }
  .stat__num { font-size: 1.75rem; }
}
