/*
 * Beauty Point & Acupunture — WordPress Global CSS
 * Pegar en: WordPress Admin → Apariencia → Personalizar → CSS adicional
 * O usar en child theme: style.css
 * =====================================================
 */

/* ── VARIABLES DE MARCA ── */
:root {
  --bp-dark:    #0C3A33;
  --bp-darkest: #071f1b;
  --bp-mid:     #506E6A;
  --bp-teal:    #9abcb8;
  --bp-beige:   #E8E0D5;
  --bp-gold:    #c7a96b;
  --bp-white:   #ffffff;
  --font-title: 'Playfair Display', serif;
  --font-body:  'Inter', sans-serif;
}

/* ── GOOGLE FONTS (agregar en header o via plugin) ──
   https://fonts.googleapis.com/css2?family=Gravitas+One&family=Montserrat:wght@400;500;600;700&display=swap
*/

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

body {
  font-family: var(--font-body);
  background: var(--bp-darkest);
  color: var(--bp-beige);
  margin: 0;
}

/* ── TIPOGRAFÍA GLOBAL ── */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--bp-beige);
  line-height: 1.2;
}
p { font-family: var(--font-body); color: var(--bp-beige); line-height: 1.7; }
a { color: var(--bp-gold); text-decoration: none; }
a:hover { color: var(--bp-beige); }

/* ── HEADER / NAV ── */
.site-header,
header.header {
  background: rgba(7, 31, 27, 0.97);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(199, 169, 107, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
}

.img-logo { height: 48px; width: auto; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--bp-beige);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.25s ease;
}
.nav-links a:hover,
.nav-links .current-menu-item a {
  color: var(--bp-gold);
  border-bottom-color: var(--bp-gold);
}

/* ── HERO (página de inicio) ── */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--bp-darkest);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 31, 27, 0.88) 0%,
    rgba(7, 31, 27, 0.45) 50%,
    rgba(7, 31, 27, 0.2) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 12%;
  left: 8%; right: 8%;
  z-index: 2;
  max-width: 600px;
}

.hero-content h1 {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--bp-beige);
  margin: 0 0 16px;
  line-height: 1.15;
}
.hero-content h1 span { color: var(--bp-gold); }
.hero-content p {
  font-size: 1.1rem;
  color: rgba(232, 224, 213, 0.85);
  margin: 0 0 28px;
  max-width: 480px;
}

.hero-cta {
  display: inline-block;
  background: var(--bp-gold);
  color: var(--bp-dark);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.hero-cta:hover {
  background: var(--bp-beige);
  color: var(--bp-dark);
  transform: translateY(-2px);
}

/* Dots navegación hero */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(232, 224, 213, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.hero-dot.active {
  background: var(--bp-gold);
  transform: scale(1.3);
}

/* ── PAGE HERO (páginas interiores) ── */
.page-hero,
.about-hero,
.contacto-hero,
.tienda-header {
  background: linear-gradient(135deg, #071f1b 0%, #0C3A33 60%, #134d42 100%);
  padding: 120px 60px 70px;
  text-align: center;
}
.page-hero h1,
.about-hero h1,
.contacto-hero h1,
.tienda-header h1 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--bp-beige);
  margin: 0 0 16px;
}
.page-hero p,
.about-hero p,
.contacto-hero p,
.tienda-header p {
  color: var(--bp-teal);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.contacto-hero span { color: var(--bp-gold); }

/* ── SECTION BADGE ── */
.section-badge {
  display: inline-block;
  background: rgba(199, 169, 107, 0.12);
  border: 1px solid rgba(199, 169, 107, 0.35);
  color: var(--bp-gold);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ── BOTONES GENERALES ── */
.btn-primary,
.wp-block-button__link,
.elementor-button {
  background: var(--bp-gold);
  color: var(--bp-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.btn-primary:hover { background: var(--bp-beige); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--bp-gold);
  border: 1.5px solid var(--bp-gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-outline:hover {
  background: var(--bp-gold);
  color: var(--bp-dark);
}

/* ── CHERRY PAY BANNER ── */
.cherry-banner {
  background: var(--bp-darkest);
  border-top: 1px solid rgba(199, 169, 107, 0.2);
  border-bottom: 1px solid rgba(199, 169, 107, 0.2);
  padding: 70px 40px;
  text-align: center;
}
.cherry-banner__inner { max-width: 680px; margin: 0 auto; }
.cherry-banner__tag {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(199, 169, 107, 0.45);
  color: var(--bp-gold);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.cherry-banner h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--bp-beige);
  margin: 0 0 16px;
}
.cherry-banner h2 span { color: var(--bp-gold); }
.cherry-banner p { color: #8aada6; font-size: 1rem; margin: 0 0 28px; }
.cherry-banner__cta {
  display: inline-block;
  background: var(--bp-dark);
  border: 1.5px solid var(--bp-gold);
  color: var(--bp-gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.cherry-banner__cta:hover {
  background: var(--bp-gold);
  color: var(--bp-dark);
}
.cherry-banner__note {
  font-size: 12px;
  color: rgba(154, 188, 184, 0.6);
  margin-top: 16px;
}

/* ── WOOCOMMERCE — TIENDA ── */
.woocommerce .products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  padding: 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: rgba(12, 58, 51, 0.35);
  border: 1px solid rgba(80, 110, 106, 0.3);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  padding: 0;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 169, 107, 0.4);
}

.woocommerce ul.products li.product img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--bp-beige);
  padding: 16px 20px 4px;
  margin: 0;
}

.woocommerce ul.products li.product .price {
  color: var(--bp-gold);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  padding: 0 20px 16px;
  display: block;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button {
  background: var(--bp-gold);
  color: var(--bp-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  border-radius: 50px;
  border: none;
  padding: 10px 24px;
  margin: 0 20px 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-block;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover {
  background: var(--bp-beige);
  color: var(--bp-dark);
}

/* WooCommerce checkout / cart */
.woocommerce-cart table.cart,
.woocommerce-checkout form.checkout {
  background: rgba(12, 58, 51, 0.3);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(80, 110, 106, 0.3);
}

.woocommerce #payment {
  background: rgba(7, 31, 27, 0.8);
  border-radius: 12px;
}

/* ── FORMULARIO DE CONTACTO (WPForms) ── */
.wpforms-container input,
.wpforms-container textarea,
.wpforms-container select {
  background: rgba(12, 58, 51, 0.4) !important;
  border: 1px solid rgba(80, 110, 106, 0.5) !important;
  border-radius: 10px !important;
  color: var(--bp-beige) !important;
  font-family: var(--font-body) !important;
  padding: 12px 16px !important;
  width: 100%;
}
.wpforms-container input:focus,
.wpforms-container textarea:focus {
  border-color: var(--bp-gold) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(199, 169, 107, 0.15) !important;
}
.wpforms-container label {
  color: var(--bp-teal) !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}
.wpforms-submit-container button[type="submit"],
.wpforms-container .wpforms-submit {
  background: var(--bp-gold) !important;
  color: var(--bp-dark) !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  border: none !important;
  padding: 14px 36px !important;
  font-size: 15px !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}
.wpforms-submit-container button[type="submit"]:hover {
  background: var(--bp-beige) !important;
}

/* ── FOOTER ── */
.site-footer,
footer.footer {
  background: var(--bp-darkest);
  border-top: 1px solid rgba(80, 110, 106, 0.2);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-links a {
  color: var(--bp-teal);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--bp-gold); }

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social img {
  width: 22px;
  height: 22px;
  opacity: 0.7;
  transition: opacity 0.25s ease;
  filter: brightness(0) invert(1);
}
.footer-social a:hover img { opacity: 1; }

.footer-logo { height: 44px; width: auto; }

.footer-copy {
  color: rgba(154, 188, 184, 0.5);
  font-family: var(--font-body);
  font-size: 12px;
  margin-top: 8px;
  text-align: right;
}

/* ── WHATSAPP FLOTANTE ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #25D366;
  color: white;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ── HEADER — EFECTO SCROLL ── */
.site-header.scrolled,
header.header.scrolled {
  background: rgba(7, 31, 27, 1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(199, 169, 107, 0.25);
}

/* ── MENÚ HAMBURGUESA ── */
#menuToggle {
  display: none;
  background: none;
  border: none;
  color: var(--bp-beige);
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s ease;
  z-index: 1001;
}
#menuToggle:hover { color: var(--bp-gold); }

/* ── ANIMACIONES DE SCROLL ── */
.bp-fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.bp-fade-in.bp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger para múltiples elementos en fila */
.bp-fade-in:nth-child(1) { transition-delay: 0s; }
.bp-fade-in:nth-child(2) { transition-delay: 0.1s; }
.bp-fade-in:nth-child(3) { transition-delay: 0.2s; }
.bp-fade-in:nth-child(4) { transition-delay: 0.3s; }
.bp-fade-in:nth-child(5) { transition-delay: 0.4s; }
.bp-fade-in:nth-child(6) { transition-delay: 0.5s; }

/* ── STATS ROW ── */
.stats-section {
  background: var(--bp-dark);
  padding: 0;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 60px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 48px;
  flex: 1;
}

.stat-number {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bp-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--bp-teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(80, 110, 106, 0.3);
  flex-shrink: 0;
}

/* ── SECCIONES DE CONTENIDO ── */
.section-light {
  background: #F2EDE3;
  color: #1a1a1a;
}
.section-light h2,
.section-light h3 { color: #071f1b; }
.section-light p { color: #3a3a3a; }
.section-light .section-badge {
  background: rgba(7, 31, 27, 0.08);
  border-color: rgba(7, 31, 27, 0.2);
  color: #0C3A33;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 60px;
}

.section-sub {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── SERVICIOS GRID ── */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.servicio-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.14);
}

.servicio-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
}

.servicio-info {
  padding: 24px;
}
.servicio-info h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: #071f1b;
  margin: 0 0 8px;
}
.servicio-info p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 16px;
}
.servicio-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: #0C3A33;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── TESTIMONIOS ── */
.testimonios-section {
  background: #EDE7DA;
  color: #1a1a1a;
}
.testimonios-section .container { text-align: center; }
.testimonios-section h2 { color: #071f1b; }
.testimonios-section .section-badge {
  background: rgba(7, 31, 27, 0.08);
  border-color: rgba(7, 31, 27, 0.2);
  color: #0C3A33;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}

.testimonio {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.testimonio-stars {
  color: var(--bp-gold);
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonio-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: #3a3a3a;
  line-height: 1.7;
  margin: 0 0 20px;
  font-style: italic;
}

.testimonio-autor {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.autor-nombre {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #071f1b;
}
.autor-servicio {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--bp-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── VIDEO TOUR SECTION ── */
.video-tour-section {
  background: var(--bp-darkest);
  padding: 70px 60px;
  text-align: center;
}
.video-tour-section h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--bp-beige);
  margin: 0 0 16px;
}
.video-tour-section p {
  color: var(--bp-teal);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

.video-tour-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.video-tour-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 72px;
  height: 72px;
  background: rgba(199, 169, 107, 0.9);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.video-play-btn:hover {
  background: var(--bp-gold);
  transform: translate(-50%, -50%) scale(1.1);
}
.video-play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent var(--bp-dark);
  margin-left: 4px;
}

/* ── BARRA ANUNCIO ── */
.barra-anuncio {
  background: var(--bp-dark);
  text-align: center;
  padding: 8px 20px;
  border-bottom: 1px solid rgba(199, 169, 107, 0.2);
}
.barra-anuncio h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bp-gold);
  margin: 0;
}

/* ── NAV BOOK BUTTON ── */
.nav-book { margin-left: 16px; }
.btn-book {
  background: var(--bp-gold);
  color: var(--bp-dark);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-book:hover {
  background: var(--bp-beige);
  color: var(--bp-dark);
}

/* ── INFO — TU CUERPO MERECE UN PLAN REAL ── */
.info {
  background: linear-gradient(180deg, #E8E0D5 0%, #506E6A 46.63%, #0C3A33 100%);
  padding: 70px 60px;
}
.info-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.info-text { flex: 1; }
.info-text h2 {
  font-family: var(--font-title);
  font-size: 36px;
  margin-bottom: 20px;
  color: #DDCFC5;
}
.info-text p {
  font-size: 18px;
  color: #DDCFC5;
  line-height: 1.6;
}
.info-img { flex: 1; }
.info-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ── TESTIMONIOS TITLE ── */
.testimonios-title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #071f1b;
  text-align: center;
  margin: 0 0 40px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  #menuToggle { display: block; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(7, 31, 27, 0.98);
    backdrop-filter: blur(16px);
    padding: 20px 24px 30px;
    gap: 0;
    border-bottom: 1px solid rgba(199, 169, 107, 0.2);
    z-index: 999;
  }
  .nav-links.active li { border-bottom: 1px solid rgba(80, 110, 106, 0.15); }
  .nav-links.active li:last-child { border-bottom: none; }
  .nav-links.active a { padding: 14px 0; display: block; font-size: 15px; }

  /* Nav book button */
  .nav-book { display: none; }

  /* Info section */
  .info { padding: 50px 24px; }
  .info-content { flex-direction: column; text-align: left; }
  .info-text, .info-img { width: 100%; }
  .info-text h2 { font-size: 26px; }
  .info-text p { font-size: 16px; }

  .page-hero,
  .about-hero,
  .contacto-hero { padding: 100px 24px 50px; }

  .woocommerce .products { padding: 24px; }

  .site-footer,
  footer.footer { padding: 30px 24px; flex-direction: column; align-items: flex-start; }

  .footer-copy { text-align: left; }

  /* Stats */
  .stats-row { flex-wrap: wrap; padding: 40px 24px; gap: 0; }
  .stat-item { padding: 20px 24px; flex: 0 0 50%; }
  .stat-divider:nth-child(4) { display: none; }

  /* Servicios */
  .servicios-grid { grid-template-columns: 1fr; }
  .container { padding: 50px 24px; }

  /* Testimonios */
  .testimonios-grid { grid-template-columns: 1fr; }

  /* Video */
  .video-tour-section { padding: 50px 24px; }
  .video-tour-wrapper { max-width: 100%; }
}

@media (max-width: 1024px) {
  .servicios-grid { grid-template-columns: 1fr 1fr; }
  .testimonios-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { padding: 40px 30px; }
  .stat-item { padding: 0 28px; }
}

@media (max-width: 480px) {
  .stat-item { flex: 0 0 100%; }
  .stat-divider { display: none; }
  .stats-row { padding: 30px 20px; }
  .stat-number { font-size: 2rem; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .servicio-img { height: 160px; }
}
