/* ========================================
   YB Nails — Estilo y Belleza
   Paleta: rosa #F4A7B9 · blanco #FAFAFA · teal #5BBFB5 · oscuro #1a1a2e
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background: #FAFAFA;
  color: #1a1a2e;
  overflow-x: hidden;
}

/* ── Variables ── */
:root {
  --pink:    #F4A7B9;
  --pink-d:  #e07fa0;
  --pink-l:  #fce8ef;
  --teal:    #5BBFB5;
  --teal-d:  #3da89e;
  --dark:    #1a1a2e;
  --gray:    #6b7280;
  --white:   #FAFAFA;
  --radius:  16px;
  --shadow:  0 8px 32px rgba(244,167,185,.18);
  --trans:   .35s cubic-bezier(.4,0,.2,1);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--pink-l); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 99px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAV
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 8px 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--trans), backdrop-filter var(--trans), box-shadow var(--trans);
}
nav.scrolled {
  background: rgba(250,250,250,.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(244,167,185,.15);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; font-style: italic;
  color: var(--dark); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  letter-spacing: .01em;
}
.nav-logo span { color: var(--pink-d); }
.nav-logo img { height: 100px; object-fit: contain; }

@media (max-width: 640px) {
  .nav-logo { font-size: 1.6rem; }
  .nav-logo img { height: 64px; }
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--dark);
  text-decoration: none; position: relative; padding-bottom: 2px;
  transition: color var(--trans);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--pink-d);
  transition: width var(--trans);
}
.nav-links a:hover { color: var(--pink-d); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--pink-d); color: #fff !important;
  padding: 10px 24px; border-radius: 99px;
  font-weight: 600 !important; font-style: normal;
  transition: background var(--trans), transform var(--trans) !important;
}
.nav-cta:hover { background: var(--teal) !important; transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  min-height: 100vh;
  display: grid; place-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #fce8ef 0%, #f9f0f5 50%, #e8f7f6 100%);
  padding: 120px 5% 80px;
}

/* Blob animado de fondo */
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: radial-gradient(circle, rgba(244,167,185,.35) 0%, rgba(91,191,181,.15) 100%);
  animation: blob 10s ease-in-out infinite;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; bottom: -15%; left: -8%;
  width: 45vw; height: 45vw; max-width: 500px; max-height: 500px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: radial-gradient(circle, rgba(91,191,181,.2) 0%, rgba(244,167,185,.1) 100%);
  animation: blob 14s ease-in-out infinite reverse;
  z-index: 0;
}

@keyframes blob {
  0%,100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  33%      { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
  66%      { border-radius: 30% 70% 30% 70% / 50% 60% 40% 50%; }
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; max-width: 1100px; width: 100%;
}

.hero-text { display: flex; flex-direction: column; gap: 24px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,167,185,.18); border: 1px solid rgba(244,167,185,.4);
  padding: 6px 16px; border-radius: 99px;
  font-size: .8rem; font-weight: 600; color: var(--pink-d);
  width: fit-content;
  animation: fadeUp .6s both;
}
.hero-badge::before { content: '✦'; font-size: .7rem; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15; color: var(--dark);
  animation: fadeUp .7s .1s both;
}
.hero-title em { font-style: italic; color: var(--pink-d); }

.hero-sub {
  font-size: 1.05rem; color: var(--gray); line-height: 1.7;
  max-width: 440px;
  animation: fadeUp .7s .2s both;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp .7s .3s both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink-d); color: #fff;
  padding: 14px 32px; border-radius: 99px;
  font-weight: 600; font-size: .95rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(224,127,160,.35);
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}
.btn-primary:hover {
  background: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(91,191,181,.35);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--dark);
  padding: 14px 32px; border-radius: 99px;
  font-weight: 500; font-size: .95rem;
  text-decoration: none;
  border: 2px solid rgba(26,26,46,.15);
  transition: border-color var(--trans), color var(--trans), transform var(--trans);
}
.btn-secondary:hover {
  border-color: var(--pink-d); color: var(--pink-d);
  transform: translateY(-3px);
}

/* Imagen hero con efecto */
.hero-visual {
  position: relative;
  animation: fadeRight .9s .2s both;
}
.hero-img-wrap {
  position: relative; border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* Floating badge */
.float-badge {
  position: absolute;
  background: #fff; border-radius: var(--radius);
  padding: 12px 18px; box-shadow: 0 8px 32px rgba(0,0,0,.1);
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 600;
  animation: float 4s ease-in-out infinite;
}
.float-badge.b1 { bottom: -20px; left: -30px; }
.float-badge.b2 { top: 30px; right: -30px; animation-delay: -2s; }
.float-badge .badge-icon { font-size: 1.4rem; }

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

/* Estadísticas hero */
.hero-stats {
  display: flex; gap: 32px;
  animation: fadeUp .7s .4s both;
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--dark);
  line-height: 1;
}
.stat-label { font-size: .78rem; color: var(--gray); margin-top: 4px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTIONS — base
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
section { padding: 100px 5%; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--pink-d);
  margin-bottom: 12px;
}
.section-tag::before, .section-tag::after {
  content: ''; display: block; width: 24px; height: 1.5px;
  background: var(--pink-d);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2; margin-bottom: 16px;
}
.section-sub {
  color: var(--gray); font-size: 1rem; line-height: 1.7;
  max-width: 500px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.accent { color: var(--pink-d); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICIOS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.servicios { background: var(--white); }

.tabs-wrap {
  display: flex; justify-content: center; gap: 12px;
  flex-wrap: wrap; margin: 48px 0 40px;
}
.tab-btn {
  padding: 10px 28px; border-radius: 99px;
  border: 2px solid rgba(244,167,185,.4);
  background: transparent; color: var(--gray);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem; font-weight: 500; cursor: pointer;
  transition: var(--trans);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--pink-d); color: #fff;
  border-color: var(--pink-d);
  box-shadow: 0 6px 20px rgba(224,127,160,.3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
.service-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 24px;
  border: 1.5px solid rgba(244,167,185,.18);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  display: flex; flex-direction: column; gap: 12px;
  cursor: default;
  opacity: 0; transform: translateY(24px);
}
.service-card.visible {
  animation: cardIn .5s forwards;
}
@keyframes cardIn {
  to { opacity: 1; transform: translateY(0); }
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--pink);
}
.service-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--pink-l);
  display: grid; place-items: center;
  font-size: 1.4rem;
}
.service-name {
  font-size: 1rem; font-weight: 600; color: var(--dark);
}
.service-desc { font-size: .85rem; color: var(--gray); line-height: 1.6; }
.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--pink-d);
  margin-top: auto;
}
.service-price--soon { display: none; }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROCESO / CÓMO FUNCIONA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.proceso {
  background: linear-gradient(135deg, #fce8ef 0%, #e8f7f6 100%);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; max-width: 900px; margin: 56px auto 0;
}
.step {
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 16px;
  position: relative;
}
.step:not(:last-child)::after {
  content: ''; position: absolute;
  top: 32px; left: calc(50% + 36px);
  width: calc(100% - 72px); height: 2px;
  background: linear-gradient(90deg, var(--pink) 0%, var(--teal) 100%);
  border-radius: 2px;
}
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: #fff; border: 3px solid var(--pink);
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--pink-d);
  box-shadow: 0 8px 24px rgba(244,167,185,.25);
  z-index: 1;
}
.step-title { font-weight: 600; font-size: .95rem; color: var(--dark); }
.step-text { font-size: .82rem; color: var(--gray); line-height: 1.6; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GALERÍA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.galeria { background: var(--white); }

.gallery-grid {
  columns: 3; column-gap: 16px;
  max-width: 1100px; margin: 56px auto 0;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 16px;
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,.5) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--trans);
  display: grid; place-items: end center;
  padding-bottom: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff; font-size: .8rem; font-weight: 500;
}

/* Galería masonry */
.gallery-masonry {
  max-width: 1100px; margin: 0 auto;
  columns: 4; column-gap: 14px;
}
.gallery-item {
  break-inside: avoid; display: block;
  margin-bottom: 14px; border-radius: var(--radius);
  overflow: hidden; position: relative;
  text-decoration: none;
}

/* Marca de agua automática en toda foto/video de la galería */
/* Marca de agua estilo monograma: pequeña, abajo, sin rotar */
.gallery-item::before {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 14px; z-index: 2;
  margin: 0 auto;
  width: 60%; max-width: 150px; aspect-ratio: 357 / 222;
  background: url('../img/logo-watermark.png?v=1') no-repeat center/contain;
  opacity: .92;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.35));
  pointer-events: none;
}
.gallery-item img, .gallery-item video {
  width: 100%; display: block;
  transition: transform .5s ease, filter .5s ease;
  /* Retoque: +brillo, +contraste, +saturación, piel más cálida */
  filter: brightness(1.06) contrast(1.08) saturate(1.25);
}
.gallery-item:hover img, .gallery-item:hover video {
  transform: scale(1.06);
  filter: brightness(1.1) contrast(1.1) saturate(1.35);
}
.gallery-item video { background: #000; object-fit: cover; aspect-ratio: 4/5; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,.5) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--trans);
  display: grid; place-items: end center;
  padding-bottom: 14px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff; font-size: .78rem; font-weight: 600;
  background: rgba(0,0,0,.25); padding: 4px 12px; border-radius: 99px;
}

/* Videos en galería: controles nativos clicables, sin overlay encima */
.gallery-item--video .gallery-overlay { display: none; }
.gallery-item--video video { aspect-ratio: 4/5; object-fit: cover; }

/* Tarjeta "Ver más" galería */
.gallery-more { position: relative; }
.gallery-more img { filter: brightness(.35); }
.gallery-more-overlay {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.gallery-more-content {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px; text-align: center; padding: 16px;
}
.gallery-more-content strong {
  color: #fff; font-size: 1rem; font-weight: 700;
}

.gallery-upload-note {
  text-align: center; margin-top: 32px;
  font-size: .85rem; color: var(--gray);
  padding: 16px; background: var(--pink-l);
  border-radius: var(--radius); max-width: 500px; margin: 32px auto 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SOBRE YB
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sobre { background: #fff; }
.sobre-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.sobre-img-wrap {
  position: relative;
}
.sobre-img {
  width: 100%; border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
  overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.sobre-img img { width: 100%; height: 100%; object-fit: cover; }
.sobre-deco {
  position: absolute; bottom: -20px; right: -20px;
  width: 180px; height: 180px; border-radius: 50%;
  border: 3px solid var(--pink-l);
  z-index: -1;
}

.sobre-text { display: flex; flex-direction: column; gap: 20px; }
.sobre-text p { font-size: .95rem; color: var(--gray); line-height: 1.8; text-align: justify; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 6px 16px; border-radius: 99px;
  background: var(--pink-l); color: var(--pink-d);
  font-size: .8rem; font-weight: 600;
}
.chip.teal { background: #e0f5f3; color: var(--teal-d); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIOS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonios {
  background: linear-gradient(135deg, #fce8ef 0%, #e8f7f6 100%);
  overflow: hidden;
}
.testimonios-track-wrap { overflow: hidden; margin-top: 56px; }
.testimonios-track {
  display: flex; gap: 24px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.testimonios-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testi-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 28px 24px; width: 320px; flex-shrink: 0;
  box-shadow: 0 4px 24px rgba(244,167,185,.12);
  display: flex; flex-direction: column; gap: 12px;
}
.testi-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.testi-text { font-size: .9rem; color: var(--gray); line-height: 1.7; font-style: italic; }
.testi-author {
  display: flex; align-items: center; gap: 10px;
  margin-top: auto;
}
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--pink-l); display: grid; place-items: center;
  font-weight: 700; color: var(--pink-d); font-size: .9rem;
}
.testi-name { font-weight: 600; font-size: .88rem; }
.testi-loc  { font-size: .76rem; color: var(--gray); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESERVA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reserva { background: var(--white); }
.reserva-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
  max-width: 1100px; margin: 0 auto;
}
.reserva-info { display: flex; flex-direction: column; gap: 28px; padding-top: 8px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.contact-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--pink-l); display: grid; place-items: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-icon.teal { background: #e0f5f3; }
.contact-label { font-size: .75rem; color: var(--gray); font-weight: 500; margin-bottom: 2px; }
.contact-val {
  font-size: .95rem; font-weight: 600; color: var(--dark);
  text-decoration: none;
}
.contact-val:hover { color: var(--pink-d); }

/* Formulario */
.booking-form {
  background: #fff; border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 8px 48px rgba(244,167,185,.15);
  border: 1.5px solid rgba(244,167,185,.2);
  display: flex; flex-direction: column; gap: 20px;
}
.booking-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border-radius: 12px;
  border: 1.5px solid rgba(244,167,185,.3);
  background: var(--white);
  font-family: 'Poppins', sans-serif; font-size: .9rem; color: var(--dark);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink-d);
  box-shadow: 0 0 0 4px rgba(244,167,185,.15);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group.full { grid-column: 1/-1; }

.btn-form {
  width: 100%; padding: 14px;
  background: var(--pink-d); color: #fff; border: none;
  border-radius: 99px; font-family: 'Poppins', sans-serif;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 8px 24px rgba(224,127,160,.3);
}
.btn-form:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(91,191,181,.3);
}

.wapp-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px;
  background: #25d366; color: #fff; border: none;
  border-radius: 99px; font-family: 'Poppins', sans-serif;
  font-size: 1rem; font-weight: 600;
  text-decoration: none;
  transition: background var(--trans), transform var(--trans);
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}
.wapp-btn:hover { background: #1db954; transform: translateY(-2px); }

.form-divider {
  display: flex; align-items: center; gap: 12px;
  color: var(--gray); font-size: .8rem;
}
.form-divider::before, .form-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(244,167,185,.3);
}

/* Toast */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 2000;
  background: var(--dark); color: #fff;
  padding: 14px 24px; border-radius: var(--radius);
  font-size: .9rem; font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  transform: translateY(80px); opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: var(--teal); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
footer {
  background: var(--dark); color: rgba(255,255,255,.7);
  padding: 60px 5% 32px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; max-width: 1100px; margin: 0 auto 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo img { height: 60px; object-fit: contain; }
.footer-tagline { font-size: .85rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  color: #fff; font-size: .9rem; font-weight: 600;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,.6); text-decoration: none;
  font-size: .85rem;
  transition: color var(--trans);
}
.footer-col ul a:hover { color: var(--pink); }

.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-link {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: rgba(255,255,255,.7); text-decoration: none; font-size: 1.1rem;
  transition: background var(--trans), color var(--trans), transform var(--trans);
}
.social-link:hover {
  background: var(--pink-d); color: #fff; transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px; max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: .8rem; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: var(--pink); text-decoration: none; }

/* Botón flotante de contacto (Instagram — WhatsApp deshabilitado temporalmente) */
.wapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  color: #fff;
  display: grid; place-items: center; font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(224,127,160,.4);
  transition: transform var(--trans), box-shadow var(--trans);
  animation: pulse-pink 2.5s infinite;
}
.wapp-float:hover { transform: scale(1.1); }

@keyframes pulse-pink {
  0%,100% { box-shadow: 0 8px 32px rgba(224,127,160,.4); }
  50%      { box-shadow: 0 8px 48px rgba(224,127,160,.65); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANIMACIONES UTILES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; max-width: 360px; margin: 0 auto; }
  .hero-sub { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .float-badge.b1 { left: -10px; }
  .float-badge.b2 { right: -10px; }
  .sobre-inner { grid-template-columns: 1fr; }
  .reserva-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .gallery-masonry { columns: 2; }
}
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; gap: 20px;
    position: fixed; inset: 0; background: rgba(250,250,250,.97);
    backdrop-filter: blur(12px);
    justify-content: center; align-items: center;
    z-index: 999; padding: 20px;
    font-size: 1.2rem;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; z-index: 1001; }
  .nav-cta { display: none; }
  section { padding: 70px 5%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
