/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--color-white-pure);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.section-heading { text-align: center; max-width: 640px; margin: 0 auto var(--space-xl); }
.section-heading h2 { font-size: var(--fs-h2); }

/* Thin rule used instead of colored block backgrounds to separate sections */
.rule-top { border-top: 1px solid rgba(28,24,21,0.1); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--color-black);
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base), color var(--transition-base);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-black);
  color: var(--color-white-pure);
  border-color: var(--color-black);
}
.btn-primary:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-black); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline {
  background: transparent;
  border-color: var(--color-black);
  color: var(--color-black);
}
.btn-outline:hover { background: var(--color-black); color: var(--color-white-pure); transform: translateY(-2px); box-shadow: var(--shadow-medium); }
.btn-large { padding: 1.05rem 2.6rem; font-size: 0.9rem; }
.btn-small { padding: 0.55rem 1.3rem; font-size: 0.75rem; }
.btn-full { width: 100%; }
.btn-whatsapp {
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(28,24,21,0.18);
}
.btn-whatsapp svg { flex-shrink: 0; }
.btn-whatsapp:hover {
  box-shadow: 0 8px 22px rgba(184,151,90,0.4);
}

/* ========== REVEAL ANIMATION ========== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ========== TOP BAR ========== */
.top-bar { background: var(--color-black); color: rgba(255,255,255,0.96); font-size: 0.8rem; letter-spacing: 0.05em; font-weight: 500; border-bottom: 1px solid rgba(184,151,90,0.25); }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0; }
.top-bar a { color: var(--color-gold-light); font-weight: 600; }
.top-bar a:hover { color: var(--color-gold); }
.top-bar-links { display: flex; align-items: center; gap: var(--space-lg); }

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(28,24,21,0.08);
  transition: box-shadow var(--transition-base);
}
.site-header.is-scrolled { box-shadow: var(--shadow-soft), inset 0 -1px 0 rgba(184,151,90,0.3); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.logo-img { height: 46px; width: auto; }
.main-nav { display: flex; gap: 1.75rem; flex: 1; justify-content: center; }
.main-nav a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
  white-space: nowrap;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--color-gold); transition: width var(--transition-base);
}
.main-nav a:hover::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 1.5px; background: var(--color-gold); }

/* ========== HERO (full-bleed, editorial, impactante) ========== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media-row {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-black);
}
.hero-media-tile { height: 100%; overflow: hidden; }
.hero-media-tile img, .hero-media-tile video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.001);
  transition: transform 6s var(--ease);
}
.hero-media-tile:nth-child(1) img { object-position: center 25%; }
.hero:hover .hero-media-tile img,
.hero:hover .hero-media-tile video { transform: scale(1.045); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 100%, rgba(8,6,4,0.35) 0%, rgba(8,6,4,0) 60%),
    linear-gradient(180deg, rgba(10,8,6,0.42) 0%, rgba(10,8,6,0.04) 22%, rgba(10,8,6,0.1) 50%, rgba(10,8,6,0.85) 100%);
}
.hero-content { position: relative; z-index: 2; padding-bottom: var(--space-2xl); max-width: 780px; }
.hero .eyebrow {
  color: var(--color-gold-light);
  display: flex; align-items: center; gap: 0.85em;
  letter-spacing: 0.24em;
}
.hero .eyebrow::before { content: ''; width: 2.5em; height: 1px; background: var(--color-gold-light); opacity: 0.85; }
.hero h1 {
  font-size: var(--fs-hero); color: var(--color-white-pure); font-weight: 400; letter-spacing: -0.01em;
  text-shadow: 0 4px 28px rgba(0,0,0,0.28);
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--color-gold-light); }

.hero-sub-section { padding: var(--space-xl) 0; background: var(--color-white-pure); text-align: center; }
.hero-slogan { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--color-gold); margin-bottom: var(--space-md); padding-bottom: var(--space-md); position: relative; }
.hero-slogan::after {
  content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 44px; height: 1px; background: var(--color-gold);
}
.hero-sub { font-size: 1rem; max-width: 480px; margin: 0 auto var(--space-lg); color: var(--text-muted); font-weight: 300; }

/* ========== IMAGE PLACEHOLDERS (editorial, grayscale-style) ========== */
.img-placeholder {
  width: 100%; height: 100%;
  background: #B8B2A7;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 220px;
}
.img-placeholder::after {
  content: attr(data-photo);
  color: rgba(255,255,255,0.85);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 1rem;
  font-family: var(--font-body);
}

/* ========== TRUST BAR (thin strip, no color block) ========== */
.trust-bar { border-top: 1px solid rgba(28,24,21,0.1); border-bottom: 1px solid rgba(28,24,21,0.1); padding: var(--space-sm) 0; }
.trust-bar-inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-sm);
  font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted);
}
.trust-bar .dot { color: var(--color-gold); }
.trust-review-link { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color var(--transition-base), color var(--transition-base); }
.trust-review-link:hover { color: var(--color-gold); border-bottom-color: var(--color-gold); }

/* ========== EMPATHY ========== */
.empathy-section { padding: var(--space-2xl) 0; }
.empathy-text {
  font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-style: italic;
  text-align: center; max-width: 780px; margin: 0 auto; line-height: 1.5; color: var(--color-black-soft);
}

/* ========== GALERÍA ANTES/DESPUÉS ========== */
.gallery-hero { padding: var(--space-2xl) 0; }
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.ba-slider { position: relative; }
.ba-slider-inner {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before { clip-path: inset(0 0 0 50%); }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: var(--color-white-pure);
  transform: translateX(-50%); pointer-events: none;
}
.ba-divider::after {
  content: '↔'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 34px; height: 34px; background: var(--color-white-pure); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem; color: var(--color-black);
}
.ba-range {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: ew-resize; appearance: none;
}
.ba-tag {
  position: absolute; top: 0.75rem; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem; text-transform: uppercase;
}
.ba-tag-before { left: 0.75rem; background: rgba(10,10,10,0.7); color: var(--color-white-pure); }
.ba-tag-after { right: 0.75rem; background: var(--color-white-pure); color: var(--color-black); }
.ba-caption { text-align: center; font-size: var(--fs-small); color: var(--text-muted); margin-top: var(--space-sm); }

.section-cta { text-align: center; margin-top: var(--space-xl); }

/* ========== ABOUT ========== */
.about-section { padding: var(--space-2xl) 0; }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-2xl); align-items: center; }
.about-img-wrap { aspect-ratio: 1/1; overflow: hidden; }
.about-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-content h2 { margin-bottom: var(--space-sm); }
.about-content p { color: var(--text-muted); margin-bottom: var(--space-md); font-weight: 300; }
.about-list { display: flex; flex-direction: column; gap: 0.6rem; }
.about-list li { padding-left: 1.6rem; position: relative; font-size: var(--fs-small); }
.about-list li::before { content: '—'; position: absolute; left: 0; color: var(--color-gold); }

/* ========== SERVICES ========== */
.services-section { padding: var(--space-2xl) 0; }
.services-category { margin-bottom: var(--space-xl); }
.services-category:last-of-type { margin-bottom: 0; }
.services-category-title {
  text-align: center; font-family: var(--font-body); font-size: var(--fs-eyebrow);
  letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--color-gold);
  font-weight: 600; margin-bottom: var(--space-md);
}
.services-category-banner {
  position: relative; height: 340px; overflow: hidden;
  display: flex; align-items: flex-end; margin-bottom: var(--space-md);
}
.services-category-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.services-category-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,16,14,0.75), rgba(20,16,14,0.05));
}
.services-category-banner-text { position: relative; z-index: 1; padding: var(--space-md) var(--space-lg); color: var(--color-white-pure); }
.services-category-banner-text .eyebrow { color: var(--color-gold-light); margin-bottom: 0.2rem; }
.services-category-banner-text h3 { color: var(--color-white-pure); font-size: 1.6rem; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(28,24,21,0.1); border-left: 1px solid rgba(28,24,21,0.1); }
.services-grid-compact { grid-template-columns: repeat(2, 1fr); max-width: 600px; margin: 0 auto; }
.service-card {
  border-right: 1px solid rgba(28,24,21,0.1); border-bottom: 1px solid rgba(28,24,21,0.1);
  padding: var(--space-lg) var(--space-md); text-align: center;
  position: relative;
  transition: background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}
.service-card:hover {
  background: var(--color-cream);
  transform: scale(1.07);
  box-shadow: var(--shadow-medium);
  z-index: 5;
}
.service-icon { display: inline-flex; color: var(--color-gold); margin-bottom: 0.7rem; }
.service-icon svg { width: 18px; height: 18px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.04em; }
.service-card p { color: var(--text-muted); font-size: 0.82rem; margin-bottom: var(--space-sm); font-weight: 300; }
.service-price { font-family: var(--font-display); color: var(--color-black); font-size: 1.05rem; font-weight: 500; margin-bottom: var(--space-md) !important; }
.services-note { text-align: center; font-size: var(--fs-small); color: var(--text-muted); margin-top: var(--space-lg); font-style: italic; }

/* ========== PROCESS ========== */
.process-section { padding: var(--space-2xl) 0; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.process-step { text-align: center; }
.process-num { font-family: var(--font-display); font-size: 2.75rem; color: var(--color-gold); display: block; margin-bottom: var(--space-xs); }
.process-step h3 { margin-bottom: 0.5rem; text-transform: uppercase; font-size: 1rem; letter-spacing: 0.04em; }
.process-step p { color: var(--text-muted); font-size: var(--fs-small); font-weight: 300; }

/* ========== TESTIMONIALS ========== */
.testimonials-section { padding: var(--space-2xl) 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.testimonial-card {
  padding: var(--space-lg) var(--space-sm);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-sm);
  border-top: 1px solid rgba(28,24,21,0.15);
}
.testimonial-img { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; min-height: 64px; }
.testimonial-text { font-style: italic; font-family: var(--font-display); color: var(--color-black-soft); font-size: 1rem; }
.testimonial-card cite { font-weight: 600; font-style: normal; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-gold); }

/* ========== LEAD MAGNET ========== */
.lead-magnet-section { padding: var(--space-2xl) 0; border-top: 1px solid rgba(28,24,21,0.1); }
.lead-magnet-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--space-2xl); align-items: center; }
.lead-magnet-content p { color: var(--text-muted); margin-bottom: var(--space-md); font-weight: 300; }
.lead-magnet-form { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.lead-magnet-form input {
  flex: 1 1 160px; padding: 0.8rem 1rem; border: 1px solid rgba(28,24,21,0.2); border-radius: 2px;
  font-family: var(--font-body); font-size: var(--fs-body); background: var(--color-white-pure);
}
.lead-magnet-visual { aspect-ratio: 3/4; overflow: hidden; }
.lead-magnet-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hidden-field { position: absolute; left: -9999px; }

/* ========== SCARCITY (thin bordered banner, no solid color) ========== */
.scarcity-section { padding: var(--space-lg) 0; border-top: 1px solid var(--color-black); border-bottom: 1px solid var(--color-black); text-align: center; }
.scarcity-text { font-size: 1.05rem; margin-bottom: var(--space-md); font-family: var(--font-display); font-style: italic; }
.scarcity-text strong { color: var(--color-gold); font-style: normal; }

/* ========== FAQ ========== */
.faq-section { padding: var(--space-2xl) 0; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid rgba(28,24,21,0.12); padding: 1.1rem 0;
}
.faq-item summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--color-gold); font-size: 1.3rem; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 0.75rem; color: var(--text-muted); font-size: var(--fs-small); font-weight: 300; }

/* ========== LOCATION ========== */
.location-section { padding: var(--space-2xl) 0; border-top: 1px solid rgba(28,24,21,0.1); }
.location-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: var(--space-2xl); align-items: center; }
.location-grid p { color: var(--text-muted); margin: var(--space-sm) 0 var(--space-md); font-weight: 300; }
.map-embed { overflow: hidden; filter: grayscale(0.4) contrast(1.05); }
.map-embed iframe { display: block; }

/* ========== FINAL CTA ========== */
.final-cta-section { padding: var(--space-2xl) 0 var(--space-3xl); border-top: 1px solid rgba(28,24,21,0.1); }
.final-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: start; }
.final-cta-content p { color: var(--text-muted); margin: var(--space-sm) 0 var(--space-lg); font-weight: 300; }
.pre-agenda-form {
  background: var(--color-black); color: var(--color-white-pure); padding: var(--space-lg);
  display: flex; flex-direction: column; gap: var(--space-sm);
}
.pre-agenda-form label { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; display: flex; flex-direction: column; gap: 0.5rem; }
.pre-agenda-form input, .pre-agenda-form select {
  padding: 0.75rem 1rem; border-radius: 2px; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05); color: var(--color-white-pure); font-family: var(--font-body); text-transform: none; letter-spacing: normal; font-size: 0.9rem;
}
.pre-agenda-form input::placeholder { color: rgba(255,255,255,0.45); }
.pre-agenda-form .btn-primary { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-black); }
.pre-agenda-form .btn-primary:hover { background: var(--color-white-pure); border-color: var(--color-white-pure); }

/* ========== FOOTER ========== */
.site-footer { background: var(--color-black); color: rgba(255,255,255,0.7); padding: var(--space-2xl) 0 var(--space-lg); }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-sm); }
.footer-logo { height: 56px; width: auto; }
.footer-slogan { font-family: var(--font-display); font-style: italic; color: var(--color-gold-light); }
.footer-social { display: flex; gap: var(--space-md); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-social a:hover { color: var(--color-gold); }
.footer-legal { font-size: 0.7rem; color: rgba(255,255,255,0.35); margin-top: var(--space-md); }

/* ========== GALLERY PAGE ========== */
.gallery-intro { padding: var(--space-2xl) 0 var(--space-lg); text-align: center; }
.gallery-intro-content { max-width: 640px; margin: 0 auto; }
.gallery-intro-sub { color: var(--text-muted); font-weight: 300; margin-top: var(--space-sm); }
.gallery-full { padding: var(--space-lg) 0 var(--space-2xl); }
.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-cta { border-top: 1px solid rgba(28,24,21,0.1); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ========== THANKS PAGE ========== */
.thanks-section { padding: var(--space-3xl) 0; min-height: 70vh; display: flex; align-items: center; }
.thanks-content { max-width: 640px; margin: 0 auto; text-align: center; }
.thanks-content h1 { font-size: var(--fs-h1); margin-bottom: var(--space-sm); }
.thanks-sub { color: var(--text-muted); font-weight: 300; margin-bottom: var(--space-lg); font-size: 1.05rem; }
.thanks-back { display: block; margin: var(--space-sm) auto 0; width: fit-content; }

/* ========== PRODUCTOS ========== */
.products-intro { padding: var(--space-2xl) 0 var(--space-lg); text-align: center; }
.products-intro-content { max-width: 680px; margin: 0 auto; }
.products-intro-sub { color: var(--text-muted); font-weight: 300; margin-top: var(--space-sm); }

.product-line-section { padding: var(--space-xl) 0; }
.product-line-heading { max-width: 720px; margin: 0 auto var(--space-lg); text-align: center; }
.product-line-heading p.line-sub { color: var(--text-muted); font-weight: 300; margin-top: var(--space-xs); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }

.product-card {
  border: 1px solid rgba(28,24,21,0.12);
  display: flex; flex-direction: column;
  position: relative;
  transition: box-shadow var(--transition-base);
}
.product-card:hover { box-shadow: var(--shadow-soft); }

.product-img-wrap { aspect-ratio: 1/1; background: var(--color-cream); position: relative; overflow: hidden; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: var(--space-sm); }

.product-img-collage-3 {
  display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 0.5rem; height: 100%; padding: var(--space-sm);
}
.product-img-collage-3 img { width: 100%; height: 100%; object-fit: contain; padding: 0; background: var(--color-white-pure); }
.product-img-collage-3 img:nth-child(1) { grid-row: 1 / 3; grid-column: 1; }
.product-img-collage-3 img:nth-child(2) { grid-row: 1; grid-column: 2; }
.product-img-collage-3 img:nth-child(3) { grid-row: 2; grid-column: 2; }

.product-img-collage-2 {
  display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr;
  gap: 0.5rem; height: 100%; padding: var(--space-sm);
}
.product-img-collage-2 img { width: 100%; height: 100%; object-fit: contain; padding: 0; background: var(--color-white-pure); }

.product-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--color-black); color: var(--color-white-pure);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.35rem 0.7rem; border-radius: 2px;
}
.product-badge-right { left: auto; right: 0.75rem; }
.product-badge-gift {
  background: var(--color-white-pure);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  text-transform: none;
  border-radius: 2px;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--color-gold);
}

.product-gift-note {
  font-family: var(--font-display); font-style: italic;
  font-size: 0.82rem; color: var(--color-gold); font-weight: 500; margin-bottom: var(--space-sm);
}

.product-stock-note { font-size: 0.78rem; color: var(--color-terracotta-dark); font-weight: 600; margin-bottom: var(--space-sm); }

.product-body { padding: var(--space-md); display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.product-desc { color: var(--text-muted); font-size: 0.85rem; font-weight: 300; margin-bottom: var(--space-sm); }

.product-price-row { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: var(--space-sm); }
.product-price-regular { color: var(--text-muted); text-decoration: line-through; font-size: 0.85rem; }
.product-price-final { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--color-black); }


.product-more { margin-bottom: var(--space-sm); }
.product-more summary { cursor: pointer; font-size: 0.78rem; font-weight: 600; color: var(--color-gold); list-style: none; }
.product-more summary::-webkit-details-marker { display: none; }
.product-more summary::before { content: 'Ver más '; }
.product-more[open] summary::before { content: 'Ver menos '; }
.product-more p { margin-top: 0.5rem; color: var(--text-muted); font-size: 0.8rem; font-weight: 300; }

.product-card .btn { margin-top: auto; }

.products-cta { border-top: 1px solid rgba(28,24,21,0.1); }

@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: var(--color-white-pure);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-medium);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45), var(--shadow-medium); }
  50% { box-shadow: 0 0 0 10px rgba(37,211,102,0), var(--shadow-medium); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--color-white-pure); flex-direction: column; align-items: center;
    gap: 0; padding: var(--space-sm) 0; box-shadow: var(--shadow-soft);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 0.85rem 0; width: 100%; text-align: center; }
  .nav-toggle { display: flex; }
  .ba-grid, .testimonials-grid, .process-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .lead-magnet-grid, .location-grid, .final-cta-grid { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; }
  .top-bar-links { display: none; }
  .top-bar-inner { justify-content: center; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .logo-img { height: 38px; }
  .hero-content { padding-bottom: var(--space-xl); }
  .btn { white-space: normal; text-align: center; }
  .btn-large { padding: 1rem 1.5rem; font-size: 0.82rem; }
}
