/* Google Fonts: Cormorant Garamond (≈ Centaur), Poppins (ExtraLight + weights) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300&display=swap');

:root {
  /* ── Official VELÉ Colors ── */
  --color-bg: #15142A;
  --color-surface: #1D1C33;
  --color-gold: #DB9328;
  --color-gold-light: #E8AB42;
  --color-cream: #F0EBE3;
  --color-cream-dim: #A8A5A0;
  --color-white: #FFFFFF;
  --color-gray: #727376;
  --color-border: rgba(219,147,40,0.18);
  --color-whatsapp: #25D366;

  /* ── Typography ── */
  --font-heading: 'Cormorant Garamond', 'Centaur', Georgia, serif;
  --font-body: 'Poppins', 'Avenir Next LT Pro', system-ui, sans-serif;

  /* ── Layout ── */
  --max-width: 1400px;
  --section-padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 3rem);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--color-bg);
  color: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 3rem); }

/* ═══════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════ */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.15; color: var(--color-white); }
h2 { font-size: clamp(2.4rem, 5vw, 3.75rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
.section-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--color-cream-dim);
  max-width: 680px;
  margin-bottom: 3rem;
  line-height: 1.8;
  font-weight: 300;
}
.gold { color: var(--color-gold); }
.gold-italic { color: var(--color-gold); font-style: italic; }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-gold);
  color: var(--color-bg);
}
.btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(219,147,40,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--color-cream);
  border: 1.5px solid var(--color-cream-dim);
}
.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.btn-wa {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-border);
}
.btn-wa:hover {
  background: rgba(219,147,40,0.1);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}
.btn-wa i { color: var(--color-whatsapp); }
.btn-small {
  padding: 0.65rem 1.35rem;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(21,20,42,0.95);
  backdrop-filter: blur(12px);
  padding: 0.5rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-cream);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-cream);
  transition: color 0.3s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--color-gold); }
.nav-cta {
  background: var(--color-gold);
  color: var(--color-bg) !important;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-weight: 600 !important;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
}
.nav-cta:hover {
  background: var(--color-gold-light) !important;
  color: var(--color-bg) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-cream);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-surface);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.35s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.05rem; }
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .mobile-overlay.active { opacity: 1; pointer-events: all; }
}

/* ═══════════════════════════════════════
   LOGO
   ═══════════════════════════════════════ */
.nav-logo-img {
  height: 84px;
  width: auto;
  transition: height 0.3s;
}
.navbar.scrolled .nav-logo-img { height: 58px; }

/* Nav star highlight for key services */
.nav-star { position: relative; }
.nav-star i.fa-star {
  font-size: 0.45rem;
  color: var(--color-gold);
  vertical-align: super;
  margin-left: 1px;
}
.footer-logo-img {
  height: 100px;
  width: auto;
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(7rem, 12vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid var(--color-border);
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  color: var(--color-white);
  margin-bottom: 1.5rem;
  line-height: 1.08;
  font-weight: 600;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--color-cream-dim);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
  font-weight: 300;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-credentials {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--color-cream-dim);
  font-weight: 400;
}
.hero-credentials span { display: flex; align-items: center; gap: 0.4rem; }
.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-credentials { justify-content: center; }
  .hero-image { margin: 0 auto; width: 100%; max-width: 500px; }
}

/* ═══════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════ */
.trust-bar {
  background: var(--color-surface);
  padding: 2.75rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.trust-item i {
  font-size: 1.6rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}
.trust-item p {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-cream);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .trust-bar .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .trust-item:last-child { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════ */
.services { padding: var(--section-padding); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: 0 12px 40px rgba(219,147,40,0.1);
}
.service-card i {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--color-cream-dim);
  line-height: 1.7;
  margin-bottom: 1rem;
  flex-grow: 1;
  font-weight: 300;
}
.service-card .price {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: 1rem;
}
.service-card .btn { width: 100%; justify-content: center; font-size: 0.85rem; padding: 0.6rem 1rem; }

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   FACIALES SECTION
   ═══════════════════════════════════════ */
.faciales {
  padding: var(--section-padding);
  background: var(--color-surface);
}
.faciales-intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.faciales-intro-image { border-radius: 16px; overflow: hidden; }
.faciales-intro-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.faciales-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.facial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.facial-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
}
.facial-card.premium {
  border-color: var(--color-gold);
  position: relative;
}
.facial-card.premium::before {
  content: 'El más premium';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-bg);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.facial-card h3 { margin-bottom: 0.25rem; font-size: 1.25rem; }
.facial-card .price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-heading);
  margin: 0.75rem 0;
}
.facial-card .price small { font-size: 0.8rem; color: var(--color-cream-dim); font-weight: 400; }
.facial-card .tagline {
  font-size: 0.85rem;
  color: var(--color-gold-light);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.facial-card .desc {
  font-size: 0.9rem;
  color: var(--color-cream-dim);
  margin-bottom: 1.25rem;
  line-height: 1.7;
  font-weight: 300;
}
.facial-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.facial-extra {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.facial-extra i { font-size: 1.5rem; color: var(--color-gold); flex-shrink: 0; margin-top: 0.2rem; }
.facial-extra h4 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.facial-extra .price { color: var(--color-gold); font-weight: 500; font-size: 0.95rem; margin-bottom: 0.4rem; }
.facial-extra p { font-size: 0.9rem; color: var(--color-cream-dim); line-height: 1.7; margin-bottom: 0.75rem; font-weight: 300; }

@media (max-width: 768px) {
  .faciales-intro-layout { grid-template-columns: 1fr; }
  .faciales-grid { grid-template-columns: 1fr; }
  .facial-extras { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   VIDEO SECTION
   ═══════════════════════════════════════ */
.video-showcase {
  padding: var(--section-padding);
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.video-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.video-card video {
  width: 100%;
  height: auto;
  display: block;
}
.video-card-info {
  padding: 1.25rem 1.5rem;
}
.video-card-info h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.video-card-info p { font-size: 0.9rem; color: var(--color-cream-dim); font-weight: 300; }
@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   TATUAJES SECTION
   ═══════════════════════════════════════ */
.tatuajes { padding: var(--section-padding); background: var(--color-surface); }
.tatuajes-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.tatuajes-factors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.factor {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-cream-dim);
  padding: 0.5rem;
  font-weight: 300;
}
.factor i { color: var(--color-gold); width: 18px; text-align: center; }
.tatuajes-cta {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: sticky;
  top: 100px;
}
.tatuajes-cta video {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.tatuajes-cta h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.tatuajes-cta .note {
  font-size: 0.85rem;
  color: var(--color-cream-dim);
  margin-top: 1rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .tatuajes-layout { grid-template-columns: 1fr; }
  .tatuajes-factors { grid-template-columns: 1fr; }
  .tatuajes-cta { position: static; }
}

/* ═══════════════════════════════════════
   DEPILACION SECTION
   ═══════════════════════════════════════ */
.depilacion {
  padding: var(--section-padding);
}
.depilacion-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.depilacion-image {
  border-radius: 16px;
  overflow: hidden;
}
.depilacion-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.depilacion-content { max-width: 800px; }
.depilacion-tech {
  display: inline-block;
  background: rgba(219,147,40,0.1);
  border: 1px solid var(--color-border);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 2rem;
}
.benefits-list { margin-bottom: 2rem; }
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0;
  font-size: 1rem;
  color: var(--color-cream);
  font-weight: 300;
}
.benefits-list li i { color: var(--color-gold); margin-top: 0.2rem; flex-shrink: 0; }
.zones-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 0.75rem;
}
.chip {
  background: rgba(219,147,40,0.1);
  border: 1px solid var(--color-border);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--color-cream);
  font-weight: 400;
}
.note-small { font-size: 0.85rem; color: var(--color-cream-dim); font-style: italic; margin: 1rem 0 2rem; font-weight: 300; }
.depilacion-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 768px) {
  .depilacion-layout { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   CORPORAL (Cavitacion + Criolipólisis)
   ═══════════════════════════════════════ */
.corporal { padding: var(--section-padding); background: var(--color-surface); }
.corporal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.corporal-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
}
.corporal-card-img { width: 100%; overflow: hidden; }
.corporal-card-img img { width: 100%; height: auto; }
.corporal-card-body { padding: 2rem 2.25rem; }
.corporal-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.corporal-card .subtitle {
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 1rem;
}
.corporal-card p {
  font-size: 0.95rem;
  color: var(--color-cream-dim);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 300;
}
.corporal-card .price-info {
  background: rgba(219,147,40,0.08);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.corporal-card .price-info p { margin-bottom: 0.25rem; font-size: 0.9rem; }
.corporal-card .price-info strong { color: var(--color-gold); }
@media (max-width: 768px) {
  .corporal-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   EXPERIENCE STEPS
   ═══════════════════════════════════════ */
.experience {
  padding: var(--section-padding);
  text-align: center;
}
.steps {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 190px;
  max-width: 240px;
  position: relative;
  padding: 0 0.5rem;
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-bg);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step p {
  font-size: 0.9rem;
  color: var(--color-cream);
  line-height: 1.6;
  font-weight: 300;
}
@media (max-width: 768px) {
  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 300px; }
}

/* ═══════════════════════════════════════
   PRECIOS (PRICING CARDS)
   ═══════════════════════════════════════ */
.precios { padding: var(--section-padding); }
.precios-intro {
  font-size: 0.95rem;
  color: var(--color-cream-dim);
  max-width: 680px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(219,147,40,0.12);
}

.pricing-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(219,147,40,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
  color: var(--color-gold);
}

.pricing-card h3 {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.pricing-desde {
  font-size: 0.9rem;
  color: var(--color-cream-dim);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
  font-weight: 300;
}
.pricing-desde span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-heading);
}

.pricing-details {
  flex: 1;
  margin-bottom: 1.5rem;
}
.pricing-details li {
  font-size: 0.9rem;
  color: var(--color-cream-dim);
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
  font-weight: 300;
}
.pricing-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-card .btn {
  text-align: center;
  justify-content: center;
  margin-top: auto;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
}

.pricing-note {
  font-size: 0.9rem;
  color: var(--color-cream-dim);
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
  font-style: italic;
  font-weight: 300;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.payment-methods {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.payment-methods span {
  font-size: 0.85rem;
  color: var(--color-cream-dim);
  font-weight: 400;
}
.payment-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.payment-icons i { font-size: 1.6rem; color: var(--color-cream-dim); }

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials {
  padding: var(--section-padding);
  background: var(--color-surface);
  text-align: center;
}
.testimonials-image {
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}
.testimonials-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
}
.testimonial-card .stars { color: var(--color-gold); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--color-cream);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-style: italic;
  font-weight: 300;
}
.testimonial-card .author {
  font-size: 0.85rem;
  color: var(--color-cream-dim);
}
.testimonial-card .author strong { color: var(--color-cream); font-style: normal; font-weight: 500; }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════ */
.faq { padding: var(--section-padding); }
.faq-list { max-width: 850px; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.35rem 0;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--color-gold); }
.faq-question i {
  font-size: 0.85rem;
  color: var(--color-gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--color-cream-dim);
  line-height: 1.8;
  padding-bottom: 1.25rem;
  font-weight: 300;
}

/* ═══════════════════════════════════════
   CTA FINAL + MAP
   ═══════════════════════════════════════ */
.cta-final { padding: var(--section-padding); background: var(--color-surface); }
.cta-final-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.cta-final h2 { font-size: clamp(2.2rem, 4.5vw, 3rem); }
.cta-final .subtitle {
  font-size: 1.05rem;
  color: var(--color-cream-dim);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
  font-weight: 300;
}
.cta-hours {
  font-size: 0.9rem;
  color: var(--color-cream-dim);
  margin-top: 1.5rem;
  line-height: 1.8;
  font-weight: 300;
}
.cta-hours i { color: var(--color-gold); margin-right: 0.4rem; }
.location-info { padding-top: 0.5rem; }
.location-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--color-gold);
}
.location-info p {
  font-size: 0.95rem;
  color: var(--color-cream-dim);
  line-height: 1.8;
  margin-bottom: 0.75rem;
  font-weight: 300;
}
.location-info a { color: var(--color-gold); }
.location-info a:hover { color: var(--color-gold-light); }
.map-placeholder {
  width: 100%;
  height: 260px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
}
.map-placeholder a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold);
  font-size: 0.9rem;
}
.map-placeholder i { font-size: 2rem; }
@media (max-width: 768px) {
  .cta-final-layout { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 3.5rem 0 1.5rem;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-brand .nav-logo { margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.9rem; color: var(--color-cream-dim); line-height: 1.7; max-width: 320px; font-weight: 300; }
.footer-links h4, .footer-social h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}
.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: var(--color-cream-dim);
  padding: 0.3rem 0;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-links a:hover { color: var(--color-gold); }
.social-icons { display: flex; gap: 1rem; }
.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream-dim);
  transition: all 0.3s;
}
.social-icons a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(219,147,40,0.1);
}
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-cream-dim);
}
@media (max-width: 768px) {
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin: 0 auto; }
  .social-icons { justify-content: center; }
}

/* ═══════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ═══════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-whatsapp);
  color: var(--color-white);
  padding: 0.7rem 1.25rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.85rem;
  box-shadow: 0 2px 12px rgba(37,211,102,0.25);
  transition: all 0.3s;
  opacity: 0.85;
}
.wa-float:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
}
.wa-float i { font-size: 1.1rem; }
.wa-float-text { display: inline; }

@media (max-width: 768px) {
  .wa-float {
    padding: 0.75rem;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }
  .wa-float-text { display: none; }
  .wa-float i { font-size: 1.3rem; }
}

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE PRICING
   ═══════════════════════════════════════ */
@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .pricing-card {
    padding: 1.5rem 1.25rem;
  }
  .pricing-desde span {
    font-size: 1.35rem;
  }
}

/* ═══════════════════════════════════════
   PLACEHOLDER IMAGE (fallback)
   ═══════════════════════════════════════ */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--color-gold);
  font-size: 0.9rem;
}
.img-placeholder i { font-size: 2.5rem; margin-bottom: 1rem; opacity: 0.5; }

/* ═══════════════════════════════════════
   PROMO BANNER ROTATIVO
   ═══════════════════════════════════════ */
.promo-banner {
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  padding: 0.65rem 1rem;
  text-align: center;
  position: relative;
  z-index: 800;
  overflow: hidden;
}
.promo-banner .promo-slide {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-bg);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.promo-banner .promo-slide.active { display: flex; }
.promo-banner .promo-slide i { font-size: 0.9rem; }
.promo-banner .promo-slide a {
  color: var(--color-bg);
  text-decoration: underline;
  font-weight: 600;
  margin-left: 0.25rem;
}
.promo-banner .promo-slide a:hover { opacity: 0.8; }
@media (max-width: 600px) {
  .promo-banner .promo-slide { font-size: 0.75rem; flex-wrap: wrap; }
}

/* ═══════════════════════════════════════
   SOBRE NOSOTROS
   ═══════════════════════════════════════ */
.about-section {
  padding: var(--section-padding);
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text .about-lead {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--color-cream);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.about-text p {
  font-size: 0.95rem;
  color: var(--color-cream-dim);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 300;
}
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}
.about-stat { text-align: center; }
.about-stat .stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-gold);
  font-weight: 700;
  line-height: 1;
}
.about-stat .stat-txt {
  font-size: 0.8rem;
  color: var(--color-cream-dim);
  margin-top: 0.25rem;
  font-weight: 300;
}
.about-image {
  position: relative;
}
.about-image img {
  border-radius: 16px;
  width: 100%;
}
.about-image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--color-gold);
  border-radius: 16px;
  opacity: 0.3;
  z-index: -1;
}
@media (max-width: 768px) {
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { order: -1; }
  .about-stats { flex-wrap: wrap; justify-content: center; }
}

/* ═══════════════════════════════════════
   GOOGLE MAPS EMBED
   ═══════════════════════════════════════ */
.map-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-top: 1.5rem;
}
.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}
@media (max-width: 768px) {
  .map-embed iframe { height: 220px; }
}

/* ═══════════════════════════════════════
   INSTAGRAM CTA SECTION
   ═══════════════════════════════════════ */
.instagram-section {
  padding: var(--section-padding);
  text-align: center;
  background: var(--color-surface);
}
.instagram-section h2 { margin-bottom: 0.5rem; }
.instagram-section .section-subtitle { margin: 0 auto 2rem; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.insta-placeholder {
  aspect-ratio: 1;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 0.85rem;
  gap: 0.5rem;
  transition: all 0.3s;
}
.insta-placeholder i { font-size: 1.5rem; opacity: 0.5; }
.insta-placeholder:hover {
  border-color: var(--color-gold);
  background: rgba(219,147,40,0.05);
}
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--color-white);
}
.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(131,58,180,0.3);
}
@media (max-width: 600px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════
   MOBILE CALL BUTTON
   ═══════════════════════════════════════ */
.mobile-call-btn {
  display: none;
}
@media (max-width: 768px) {
  .mobile-call-btn {
    display: flex;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 900;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-bg);
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 12px rgba(219,147,40,0.3);
    transition: all 0.3s;
    border: none;
  }
  .mobile-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(219,147,40,0.4);
  }
}

/* ═══════════════════════════════════════
   FIRST VISIT POPUP
   ═══════════════════════════════════════ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.popup-overlay.active { display: flex; }
.popup-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  max-width: 420px;
  width: 100%;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  animation: popupIn 0.4s ease;
}
@keyframes popupIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--color-cream-dim);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s;
}
.popup-close:hover { color: var(--color-white); }
.popup-card .popup-logo {
  width: 60px;
  margin: 0 auto 1rem;
}
.popup-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.popup-card .popup-discount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.popup-card .popup-desc {
  font-size: 0.9rem;
  color: var(--color-cream-dim);
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
}
.popup-card .popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.popup-card .popup-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}
.popup-card .popup-form input::placeholder { color: var(--color-cream-dim); }
.popup-card .popup-form input:focus { border-color: var(--color-gold); }
.popup-card .popup-form .btn-popup-submit {
  width: 100%;
  padding: 0.85rem;
  border-radius: 10px;
  border: none;
  background: var(--color-gold);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.popup-card .popup-form .btn-popup-submit:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
}
.popup-card .popup-skip {
  font-size: 0.8rem;
  color: var(--color-cream-dim);
  margin-top: 0.75rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 300;
  transition: color 0.3s;
}
.popup-card .popup-skip:hover { color: var(--color-white); }

/* ═══════════════════════════════════════
   PRIVACY PAGE
   ═══════════════════════════════════════ */
.privacy-page {
  padding: 8rem 0 4rem;
  min-height: 100vh;
}
.privacy-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
}
.privacy-page h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.privacy-page p,
.privacy-page li {
  font-size: 0.95rem;
  color: var(--color-cream-dim);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 300;
}
.privacy-page ul {
  padding-left: 1.5rem;
  list-style: disc;
}
.privacy-page ul li { margin-bottom: 0.5rem; }
.privacy-page a { color: var(--color-gold); text-decoration: underline; }
.privacy-page a:hover { color: var(--color-gold-light); }
