/* ============================================================
   VARUÁ SPA — Landing Page El Poblado
   landing-poblado.css
   Desktop-first: base 1440px → 1024px → 768px → 480px
   Prefix: .vr-
   ============================================================ */

/* ─── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ─── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  /* Brand Colors */
  --vr-teal:          #2BBCB3;
  --vr-teal-dark:     #229e96;
  --vr-teal-light:    rgba(43, 188, 179, 0.10);
  --vr-salmon:        #F4846E;
  --vr-salmon-dark:   #e06a52;
  --vr-dark:          #1A1A1A;
  --vr-darker:        #111111;
  --vr-white:         #FFFFFF;
  --vr-gray-light:    #F7F7F7;
  --vr-text-dark:     #333333;
  --vr-text-mid:      #555555;
  --vr-text-light:    #666666;
  --vr-border:        #E8E8E8;

  /* Typography */
  --vr-font-display:  'Playfair Display', Georgia, serif;
  --vr-font-body:     'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --vr-section-py:    96px;
  --vr-container:     1280px;
  --vr-gap:           32px;

  /* Shadows */
  --vr-shadow-sm:     0 2px 8px rgba(0, 0, 0, 0.06);
  --vr-shadow-md:     0 8px 24px rgba(0, 0, 0, 0.10);
  --vr-shadow-lg:     0 16px 48px rgba(0, 0, 0, 0.14);
  --vr-shadow-card:   0 4px 20px rgba(0, 0, 0, 0.08);

  /* Radius */
  --vr-radius-sm:     8px;
  --vr-radius-md:     16px;
  --vr-radius-lg:     24px;
  --vr-radius-pill:   999px;

  /* Transitions */
  --vr-transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --vr-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Header */
  --vr-header-h:      76px;
}

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

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

body.vr-landing {
  font-family: var(--vr-font-body);
  color: var(--vr-text-dark);
  background: var(--vr-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.vr-landing img {
  display: block;
  max-width: 100%;
}

body.vr-landing a {
  text-decoration: none;
  color: inherit;
}

body.vr-landing ul,
body.vr-landing ol {
  list-style: none;
}

/* ─── TYPOGRAPHY HELPERS ─────────────────────────────────────── */
.vr-display {
  font-family: var(--vr-font-display);
}

.vr-section-label {
  display: inline-block;
  font-family: var(--vr-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vr-teal);
  margin-bottom: 12px;
}

.vr-section-title {
  font-family: var(--vr-font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vr-dark);
}

.vr-section-title--white {
  color: var(--vr-white);
}

.vr-section-subtitle {
  font-size: 17px;
  color: var(--vr-text-mid);
  line-height: 1.7;
  max-width: 600px;
}

/* ─── LAYOUT UTILITIES ───────────────────────────────────────── */
.vr-container {
  max-width: var(--vr-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.vr-section {
  padding-top: var(--vr-section-py);
  padding-bottom: var(--vr-section-py);
}

.vr-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.vr-section-header .vr-section-subtitle {
  margin: 16px auto 0;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.vr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--vr-font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--vr-radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--vr-transition), box-shadow var(--vr-transition), background-color var(--vr-transition), color var(--vr-transition), border-color var(--vr-transition);
  white-space: nowrap;
  text-decoration: none;
}

.vr-btn:hover {
  transform: translateY(-2px);
}

.vr-btn:active {
  transform: translateY(0);
}

/* Salmon / Primary */
.vr-btn--salmon {
  background: var(--vr-salmon);
  color: var(--vr-white);
  border-color: var(--vr-salmon);
  box-shadow: 0 4px 16px rgba(244, 132, 110, 0.35);
}

.vr-btn--salmon:hover {
  background: var(--vr-salmon-dark);
  border-color: var(--vr-salmon-dark);
  box-shadow: 0 8px 24px rgba(244, 132, 110, 0.45);
}

/* Teal */
.vr-btn--teal {
  background: var(--vr-teal);
  color: var(--vr-white);
  border-color: var(--vr-teal);
  box-shadow: 0 4px 16px rgba(43, 188, 179, 0.30);
}

.vr-btn--teal:hover {
  background: var(--vr-teal-dark);
  border-color: var(--vr-teal-dark);
  box-shadow: 0 8px 24px rgba(43, 188, 179, 0.40);
}

/* Outline white */
.vr-btn--outline-white {
  background: transparent;
  color: var(--vr-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.vr-btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--vr-white);
}

/* Outline teal */
.vr-btn--outline-teal {
  background: transparent;
  color: var(--vr-teal);
  border-color: var(--vr-teal);
}

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

/* Sizes */
.vr-btn--lg {
  font-size: 16px;
  padding: 18px 36px;
}

.vr-btn--sm {
  font-size: 13px;
  padding: 10px 20px;
}

/* ─── BADGES ─────────────────────────────────────────────────── */
.vr-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--vr-radius-pill);
}

.vr-badge--teal {
  background: rgba(43, 188, 179, 0.15);
  color: var(--vr-teal);
  border: 1px solid rgba(43, 188, 179, 0.30);
}

.vr-badge--teal-solid {
  background: var(--vr-teal);
  color: var(--vr-white);
}

.vr-badge--white {
  background: rgba(255, 255, 255, 0.15);
  color: var(--vr-white);
  border: 1px solid rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(8px);
}

/* ─── CARDS ──────────────────────────────────────────────────── */
.vr-card {
  background: var(--vr-white);
  border-radius: var(--vr-radius-md);
  box-shadow: var(--vr-shadow-card);
  overflow: hidden;
  transition: transform var(--vr-transition), box-shadow var(--vr-transition);
}

.vr-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vr-shadow-lg);
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes vr-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes vr-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vr-fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes vr-fadeInRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes vr-pulse-ring {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }
.animate-on-scroll.delay-6 { transition-delay: 0.6s; }
.animate-on-scroll.delay-7 { transition-delay: 0.7s; }
.animate-on-scroll.delay-8 { transition-delay: 0.8s; }

/* ─── ═══════════════════════════════════════════════════════
   SECTION 1 — HEADER
   ══════════════════════════════════════════════════════════ */
.vr-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--vr-header-h);
  background: var(--vr-dark);
  box-shadow: none;
  display: flex;
  align-items: center;
  transition: background var(--vr-transition), backdrop-filter var(--vr-transition), box-shadow var(--vr-transition);
}

.vr-header.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.vr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.vr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.vr-logo__icon {
  width: 36px;
  height: 36px;
  background: var(--vr-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vr-white);
  font-size: 16px;
  flex-shrink: 0;
}

.vr-logo__text {
  font-family: var(--vr-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--vr-white);
  letter-spacing: 0.05em;
  line-height: 1;
}

.vr-logo__sub {
  display: block;
  font-family: var(--vr-font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vr-teal);
  margin-top: 2px;
}

/* Nav */
.vr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.vr-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  border-radius: var(--vr-radius-sm);
  transition: color var(--vr-transition), background var(--vr-transition);
  white-space: nowrap;
}

.vr-nav__link:hover,
.vr-nav__link.active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

/* Header CTA */
.vr-header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.vr-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--vr-radius-sm);
  transition: background var(--vr-transition);
}

.vr-hamburger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.vr-hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--vr-white);
  border-radius: 2px;
  transition: transform var(--vr-transition), opacity var(--vr-transition);
  transform-origin: center;
}

.vr-hamburger.is-open .vr-hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.vr-hamburger.is-open .vr-hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.vr-hamburger.is-open .vr-hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Drawer */
.vr-mobile-menu {
  display: none;
  position: fixed;
  top: var(--vr-header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--vr-dark);
  z-index: 999;
  flex-direction: column;
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.vr-mobile-menu.is-open {
  transform: translateX(0);
}

.vr-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 32px;
}

.vr-mobile-menu__link {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 16px;
  border-radius: var(--vr-radius-sm);
  transition: color var(--vr-transition), background var(--vr-transition);
}

.vr-mobile-menu__link:hover {
  color: var(--vr-white);
  background: rgba(255, 255, 255, 0.06);
}

.vr-mobile-menu__cta {
  padding: 0 4px;
}

.vr-mobile-menu__cta .vr-btn {
  width: 100%;
  justify-content: center;
}

/* ─── ═══════════════════════════════════════════════════════
   SECTION 2 — HERO
   ══════════════════════════════════════════════════════════ */
.vr-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--vr-header-h);
  overflow: hidden;
}

.vr-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('<?php echo get_stylesheet_directory_uri(); ?>/assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.vr-hero__bg.loaded {
  transform: scale(1);
}

.vr-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.88) 0%,
    rgba(26, 26, 26, 0.70) 50%,
    rgba(43, 188, 179, 0.15) 100%
  );
}

.vr-hero__overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--vr-dark) 0%, transparent 100%);
}

.vr-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 40px;
}

.vr-hero__badge {
  margin-bottom: 28px;
  animation: vr-fadeInUp 0.8s ease both;
  animation-delay: 0.2s;
}

.vr-hero__title {
  font-family: var(--vr-font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  color: var(--vr-white);
  line-height: 1.15;
  margin-bottom: 24px;
  animation: vr-fadeInUp 0.8s ease both;
  animation-delay: 0.4s;
}

.vr-hero__title em {
  font-style: italic;
  color: var(--vr-teal);
}

.vr-hero__subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  animation: vr-fadeInUp 0.8s ease both;
  animation-delay: 0.6s;
}

.vr-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: vr-fadeInUp 0.8s ease both;
  animation-delay: 0.8s;
}

.vr-hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  animation: vr-fadeInUp 0.8s ease both;
  animation-delay: 1.0s;
}

.vr-hero__trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vr-teal);
  animation: vr-pulse-ring 2s ease-out infinite;
  position: relative;
}

.vr-hero__trust-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--vr-teal);
  animation: vr-pulse-ring 2s ease-out infinite 0.3s;
}

/* Scroll indicator */
.vr-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: vr-float 3s ease-in-out infinite;
}

.vr-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4));
}

/* ─── ═══════════════════════════════════════════════════════
   SECTION 3 — BIENVENIDA
   ══════════════════════════════════════════════════════════ */
.vr-welcome {
  background: var(--vr-white);
}

.vr-welcome__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vr-welcome__image-wrap {
  position: relative;
  border-radius: var(--vr-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--vr-shadow-lg);
}

.vr-welcome__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--vr-transition-slow);
}

.vr-welcome__image-wrap:hover img {
  transform: scale(1.04);
}

.vr-welcome__image-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--vr-white);
  border-radius: var(--vr-radius-md);
  box-shadow: var(--vr-shadow-lg);
  padding: 20px 24px;
  text-align: center;
  min-width: 140px;
}

.vr-welcome__image-badge-num {
  display: block;
  font-family: var(--vr-font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--vr-teal);
  line-height: 1;
}

.vr-welcome__image-badge-text {
  font-size: 12px;
  color: var(--vr-text-light);
  margin-top: 4px;
}

.vr-welcome__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vr-welcome__title {
  font-family: var(--vr-font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--vr-dark);
  line-height: 1.2;
}

.vr-welcome__text {
  font-size: 16px;
  color: var(--vr-text-mid);
  line-height: 1.8;
}

.vr-welcome__highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.vr-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.vr-highlight-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--vr-teal-light);
  border-radius: var(--vr-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vr-teal);
  font-size: 20px;
}

.vr-highlight-item__text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--vr-dark);
  margin-bottom: 3px;
}

.vr-highlight-item__text p {
  font-size: 14px;
  color: var(--vr-text-light);
  line-height: 1.5;
}

/* ─── ═══════════════════════════════════════════════════════
   SECTION 4 — MASAJES
   ══════════════════════════════════════════════════════════ */
.vr-masajes {
  background: var(--vr-gray-light);
}

.vr-masajes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vr-gap);
}

.vr-massage-card {
  background: var(--vr-white);
  border-radius: var(--vr-radius-md);
  box-shadow: var(--vr-shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--vr-transition), box-shadow var(--vr-transition);
}

.vr-massage-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--vr-shadow-lg);
}

.vr-massage-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.vr-massage-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--vr-transition-slow);
}

.vr-massage-card:hover .vr-massage-card__img-wrap img {
  transform: scale(1.08);
}

.vr-massage-card__price {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--vr-teal);
  color: var(--vr-white);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--vr-radius-pill);
}

.vr-massage-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.vr-massage-card__title {
  font-family: var(--vr-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--vr-dark);
  line-height: 1.3;
}

.vr-massage-card__duration {
  font-size: 12px;
  color: var(--vr-teal);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vr-massage-card__desc {
  font-size: 14px;
  color: var(--vr-text-light);
  line-height: 1.65;
  flex: 1;
}

.vr-massage-card__footer {
  padding: 0 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vr-massage-card__price-mobile {
  display: none;
}

/* ─── ═══════════════════════════════════════════════════════
   SECTION 5 — PLANES
   ══════════════════════════════════════════════════════════ */
.vr-planes {
  background: var(--vr-white);
}

.vr-planes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vr-gap);
}

.vr-plan-card {
  background: var(--vr-white);
  border-radius: var(--vr-radius-md);
  box-shadow: var(--vr-shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--vr-transition), box-shadow var(--vr-transition);
  border: 1px solid var(--vr-border);
}

.vr-plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--vr-shadow-lg);
  border-color: transparent;
}

.vr-plan-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.vr-plan-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--vr-transition-slow);
}

.vr-plan-card:hover .vr-plan-card__img-wrap img {
  transform: scale(1.06);
}

.vr-plan-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(26, 26, 26, 0.80);
  color: var(--vr-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--vr-radius-pill);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 6px;
}

.vr-plan-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.vr-plan-card__title {
  font-family: var(--vr-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--vr-dark);
}

.vr-plan-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--vr-text-light);
}

.vr-plan-card__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.vr-plan-card__includes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vr-plan-card__include-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--vr-text-mid);
}

.vr-plan-card__include-item i {
  color: var(--vr-teal);
  font-size: 13px;
  flex-shrink: 0;
}

.vr-plan-card__footer {
  padding: 0 28px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vr-plan-card__price {
  font-family: var(--vr-font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--vr-teal);
  line-height: 1;
}

.vr-plan-card__price span {
  display: block;
  font-family: var(--vr-font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--vr-text-light);
  margin-top: 2px;
}

/* ─── ═══════════════════════════════════════════════════════
   SECTION 6 — TRATAMIENTOS
   ══════════════════════════════════════════════════════════ */
.vr-tratamientos {
  background: var(--vr-white);
  border-top: 1px solid var(--vr-border);
}

.vr-tratamientos__sub-title {
  font-family: var(--vr-font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--vr-dark);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--vr-teal-light);
  position: relative;
}

.vr-tratamientos__sub-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--vr-teal);
}

.vr-tratamientos__group {
  margin-bottom: 56px;
}

.vr-tratamientos__group:last-child {
  margin-bottom: 0;
}

.vr-trat-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vr-gap);
}

.vr-trat-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vr-gap);
}

.vr-trat-card {
  background: var(--vr-white);
  border: 1px solid var(--vr-border);
  border-radius: var(--vr-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--vr-transition), box-shadow var(--vr-transition), border-color var(--vr-transition);
}

.vr-trat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vr-shadow-lg);
  border-color: transparent;
}

.vr-trat-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.vr-trat-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--vr-transition-slow);
}

.vr-trat-card:hover .vr-trat-card__img-wrap img {
  transform: scale(1.06);
}

.vr-trat-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vr-trat-card__title {
  font-family: var(--vr-font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--vr-dark);
}

.vr-trat-card__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--vr-teal);
}

.vr-trat-card__desc {
  font-size: 14px;
  color: var(--vr-text-light);
  line-height: 1.6;
  flex: 1;
}

.vr-trat-card__footer {
  padding: 0 24px 24px;
}

/* ─── ═══════════════════════════════════════════════════════
   SECTION 7 — DEPILACIÓN
   ══════════════════════════════════════════════════════════ */
.vr-depilacion {
  background: var(--vr-gray-light);
}

.vr-depilacion__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vr-depilacion__img-wrap {
  position: relative;
  border-radius: var(--vr-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--vr-shadow-lg);
}

.vr-depilacion__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--vr-transition-slow);
}

.vr-depilacion__img-wrap:hover img {
  transform: scale(1.04);
}

.vr-depilacion__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.vr-depilacion__title {
  font-family: var(--vr-font-display);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 700;
  color: var(--vr-dark);
  line-height: 1.2;
}

.vr-depilacion__desc {
  font-size: 16px;
  color: var(--vr-text-mid);
  line-height: 1.75;
}

.vr-depilacion__pros {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.vr-depi-pro {
  background: var(--vr-white);
  border-radius: var(--vr-radius-md);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid rgba(43, 188, 179, 0.15);
  transition: box-shadow var(--vr-transition), transform var(--vr-transition);
}

.vr-depi-pro:hover {
  box-shadow: var(--vr-shadow-md);
  transform: translateY(-4px);
}

.vr-depi-pro__icon {
  width: 44px;
  height: 44px;
  background: var(--vr-teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vr-teal);
  font-size: 18px;
  margin: 0 auto 10px;
}

.vr-depi-pro__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--vr-dark);
}

.vr-depilacion__checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}

.vr-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--vr-text-mid);
}

.vr-check-item i {
  color: var(--vr-teal);
  font-size: 15px;
  flex-shrink: 0;
}

/* ─── ═══════════════════════════════════════════════════════
   SECTION 8 — CTA FINAL
   ══════════════════════════════════════════════════════════ */
.vr-cta-final {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.vr-cta-final__bg {
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/2025/02/IMG-20250218-WA0018.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.vr-cta-final__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.93) 0%, rgba(43, 188, 179, 0.25) 100%);
}

.vr-cta-final__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.vr-cta-final__badge {
  margin-bottom: 24px;
}

.vr-cta-final__title {
  font-family: var(--vr-font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  color: var(--vr-white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.vr-cta-final__subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.7;
  margin-bottom: 36px;
}

.vr-cta-final__actions {
  margin-bottom: 48px;
}

.vr-cta-final__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.vr-cta-final__info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.70);
}

.vr-cta-final__info-item i {
  color: var(--vr-teal);
  font-size: 16px;
}

/* Map embed */
.vr-map-wrap {
  margin-top: 56px;
  border-radius: var(--vr-radius-lg);
  overflow: hidden;
  box-shadow: var(--vr-shadow-lg);
  line-height: 0;
}

.vr-map-wrap iframe {
  width: 100%;
  height: 360px;
  border: none;
  display: block;
}

/* ─── ═══════════════════════════════════════════════════════
   SECTION 9 — FOOTER
   ══════════════════════════════════════════════════════════ */
.vr-footer {
  background: var(--vr-darker);
  padding-top: 72px;
  padding-bottom: 0;
}

.vr-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vr-footer__brand-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 300px;
}

.vr-footer__social {
  display: flex;
  gap: 10px;
}

.vr-footer__social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  transition: background var(--vr-transition), color var(--vr-transition), transform var(--vr-transition);
}

.vr-footer__social-link:hover {
  background: var(--vr-teal);
  color: var(--vr-white);
  transform: translateY(-3px);
}

.vr-footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 20px;
}

.vr-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vr-footer__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--vr-transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.vr-footer__link:hover {
  color: var(--vr-teal);
}

.vr-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 14px;
}

.vr-footer__contact-item i {
  color: var(--vr-teal);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.vr-footer__contact-item a {
  color: inherit;
  transition: color var(--vr-transition);
}

.vr-footer__contact-item a:hover {
  color: var(--vr-teal);
}

.vr-footer__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--vr-white);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--vr-radius-pill);
  margin-top: 4px;
  transition: background var(--vr-transition), transform var(--vr-transition);
}

.vr-footer__wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* Footer Bottom */
.vr-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.vr-footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.30);
}

.vr-footer__legal {
  display: flex;
  gap: 20px;
}

.vr-footer__legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.30);
  transition: color var(--vr-transition);
}

.vr-footer__legal a:hover {
  color: var(--vr-teal);
}

/* ─── ═══════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ══════════════════════════════════════════════════════════ */
.vr-wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vr-white);
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--vr-transition), box-shadow var(--vr-transition);
  animation: vr-float 3.5s ease-in-out infinite;
}

.vr-wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
  animation-play-state: paused;
}

.vr-wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: vr-pulse-ring 2.5s ease-out infinite;
}

/* ─── ═══════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════ */

/* ── 1024px ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --vr-section-py: 72px;
    --vr-gap: 24px;
  }

  .vr-container {
    padding-left: 28px;
    padding-right: 28px;
  }

  /* Header */
  .vr-nav,
  .vr-header__cta .vr-btn:not(.vr-btn--salmon) {
    display: none;
  }

  .vr-hamburger {
    display: flex;
  }

  .vr-mobile-menu {
    display: flex;
  }

  /* Grids */
  .vr-welcome__grid,
  .vr-depilacion__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .vr-welcome__image-badge {
    right: 0;
  }

  .vr-masajes__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vr-planes__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vr-trat-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .vr-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .vr-depilacion__pros {
    grid-template-columns: repeat(3, 1fr);
  }

  /* CTA Final */
  .vr-cta-final__bg {
    background-attachment: scroll;
  }
}

/* ── 768px ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --vr-section-py: 56px;
    --vr-header-h: 64px;
  }

  .vr-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .vr-section-header {
    margin-bottom: 40px;
  }

  /* Hero */
  .vr-hero__content {
    padding: 40px 20px;
  }

  .vr-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vr-hero__actions .vr-btn {
    justify-content: center;
  }

  /* Welcome */
  .vr-welcome__image-badge {
    right: 16px;
    bottom: 16px;
  }

  /* Masajes */
  .vr-masajes__grid {
    grid-template-columns: 1fr;
  }

  /* Planes */
  .vr-planes__grid {
    grid-template-columns: 1fr;
  }

  /* Tratamientos */
  .vr-trat-grid-2,
  .vr-trat-grid-3 {
    grid-template-columns: 1fr;
  }

  /* Depilacion */
  .vr-depilacion__pros {
    grid-template-columns: 1fr;
  }

  .vr-depilacion__checklist {
    grid-template-columns: 1fr;
  }

  /* CTA Final */
  .vr-cta-final {
    padding: 72px 0;
  }

  .vr-cta-final__info {
    flex-direction: column;
    gap: 16px;
  }

  /* Footer */
  .vr-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .vr-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Map */
  .vr-map-wrap iframe {
    height: 260px;
  }
}

/* ── 480px ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root {
    --vr-section-py: 48px;
  }

  .vr-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .vr-btn--lg {
    font-size: 15px;
    padding: 16px 28px;
  }

  .vr-logo__sub {
    display: none;
  }

  .vr-hero__title {
    font-size: clamp(28px, 8vw, 36px);
  }

  .vr-massage-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .vr-massage-card__footer .vr-btn {
    justify-content: center;
  }

  .vr-plan-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .vr-plan-card__footer .vr-btn {
    width: 100%;
    justify-content: center;
  }

  .vr-footer__social {
    flex-wrap: wrap;
  }

  .vr-wa-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .vr-footer__legal {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ─── PRINT ──────────────────────────────────────────────── */
@media print {
  .vr-header,
  .vr-wa-float,
  .vr-mobile-menu {
    display: none !important;
  }

  .vr-landing {
    padding-top: 0 !important;
  }
}
