/* =========================================================
   BALANCE CENTRO PILATES — STYLES
   Paleta verde menta / turquesa · Fraunces + Inter + Caveat
   ========================================================= */

:root {
  /* Paleta */
  --turq: #7DCAC0;
  --mint: #B8DED7;
  --turq-d: #4CAFA3;
  --turq-dd: #3A8F85;
  --white: #FFFFFF;
  --bone: #FAFAF7;
  --gray-l: #E8E8E6;
  --gray: #8A8A88;
  --ink: #2D2D2B;
  --black: #000000;
  --wa: #25D366;

  /* Tipografía */
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --script: 'DM Serif Display', Georgia, serif;

  /* Espaciado / radios */
  --radius: 24px;
  --radius-lg: 32px;
  --radius-sm: 14px;
  --shadow-sm: 0 4px 16px rgba(45, 45, 43, 0.06);
  --shadow: 0 10px 40px rgba(45, 45, 43, 0.08);
  --shadow-lg: 0 24px 60px rgba(76, 175, 163, 0.18);

  /* Transiciones */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 400;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--turq-d);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

a:hover { color: var(--turq-dd); }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul { list-style: none; }

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
  font-size: clamp(1rem, 1.05vw, 1.0625rem);
  line-height: 1.75;
  color: var(--ink);
}

.serif-italic {
  font-style: italic;
  font-weight: 500;
}

.script {
  font-family: var(--script);
  font-style: normal;
  font-weight: 700;
  color: var(--turq-d);
  font-size: 1.1em;
  letter-spacing: 0;
}

.script-large {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.3;
  color: var(--ink);
}

.gradient-text {
  background: linear-gradient(135deg, var(--turq-d) 0%, var(--turq) 60%, var(--mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  color: var(--turq-d);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ============== LAYOUT ============== */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 36px;
  position: relative;
}

.container-narrow {
  max-width: 880px;
}

.section {
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.section-sub {
  color: var(--gray);
  margin-top: 18px;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}

/* ============== SKIP LINK / A11Y ============== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  z-index: 1000;
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--turq-d);
  outline-offset: 4px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--turq-d);
  outline-offset: 4px;
}

/* ============== HEADER ============== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-l);
  transition: box-shadow 0.4s var(--ease), padding 0.3s;
  padding: 0;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(45, 45, 43, 0.1);
  padding: 0;
}

.nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 116px;
  transition: min-height 0.3s;
}

.site-header.scrolled .nav { min-height: 86px; }

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
}

.logo {
  width: auto;
  height: 104px;
  object-fit: contain;
  transition: height 0.3s var(--ease);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.04));
}

.site-header.scrolled .logo { height: 74px; }

.menu {
  display: flex;
  gap: 36px;
  align-items: center;
}

.menu a {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 6px 2px;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--turq-d), var(--turq));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.menu a:hover::after { transform: scaleX(1); }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.35s var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-large {
  padding: 16px 32px;
  font-size: 0.95rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--turq-d) 0%, var(--turq-dd) 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(76, 175, 163, 0.32);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(76, 175, 163, 0.45);
  color: var(--white);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-3px);
}

.nav-cta {
  flex-shrink: 0;
  z-index: 2;
}

/* ============== MOBILE MENU TOGGLE ============== */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============== DRAWER MOBILE ============== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(45, 45, 43, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  z-index: 99;
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100vh;
  background: var(--bone);
  z-index: 110;
  padding: 80px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink);
  transition: background 0.3s;
}

.drawer-close:hover { background: var(--gray-l); }

.drawer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto;
}

.drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
}

.drawer-menu a {
  display: block;
  padding: 16px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-l);
  transition: color 0.3s, padding-left 0.3s var(--ease-out);
}

.drawer-menu a:hover {
  color: var(--turq-d);
  padding-left: 8px;
}

.drawer-cta {
  margin-top: auto;
  justify-content: center;
}

/* ============== HERO — fondo full-bleed borroso + imagen nítida ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 36px;
}

/* Fondo: foto a todo el hero, borrosa */
.hero-bg {
  position: absolute;
  inset: -30px;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) saturate(1.1) brightness(1.05);
}

/* Gradiente sobre el blur para legibilidad */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(15, 22, 20, 0.55) 0%,
    rgba(15, 22, 20, 0.35) 45%,
    rgba(15, 22, 20, 0.06) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  padding: 160px 0 100px;
}

/* Hero text */
.hero-text { position: relative; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--turq);
  animation: pulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(125, 202, 192, 0.55);
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(125, 202, 192, 0.55); }
  50% { opacity: 0.85; box-shadow: 0 0 0 8px rgba(125, 202, 192, 0); }
}

.hero h1 {
  margin-bottom: 28px;
  color: #fff;
}

.hero h1 em {
  font-style: italic;
  color: var(--turq);
}

.lead {
  font-size: clamp(1.05rem, 1.3vw, 1.15rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Botones hero sobre fondo oscuro */
.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-3px);
}

/* Hero visual — imagen nítida que contrasta con el blur */
.hero-visual {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-sharp-frame {
  position: relative;
  z-index: 2;
  width: 82%;
  height: 82%;
  border-radius: 24px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.25);
  animation: gentleFloat 9s ease-in-out infinite;
}

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

.img-sharp-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Chip de stats — inferior izquierdo */
.hero-stat {
  position: absolute;
  bottom: 24px;
  left: -24px;
  z-index: 4;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 16px 22px;
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: gentleFloat2 7s ease-in-out infinite;
}

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

.hero-stat .stat-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--turq-d);
}

.hero-stat .stat-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
  margin-top: 4px;
}

/* Badge — superior derecho */
.hero-badge {
  position: absolute;
  top: 20px;
  right: -20px;
  z-index: 4;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.9);
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: gentleFloat3 11s ease-in-out infinite;
}

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

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--turq);
  box-shadow: 0 0 0 3px rgba(125, 202, 192, 0.3);
  flex-shrink: 0;
}

.hero-badge strong {
  font-size: 0.8rem;
  font-weight: 600;
  display: block;
  line-height: 1.2;
  color: #fff;
}

.hero-badge span {
  font-size: 0.68rem;
  opacity: 0.65;
  color: rgba(255, 255, 255, 0.8);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
  animation: bounceDown 2.4s ease-in-out infinite;
  text-decoration: none;
}

.scroll-indicator:hover { color: var(--turq); }

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  animation: wheelMove 1.6s ease-in-out infinite;
}

@keyframes wheelMove {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

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

/* Blobs — reemplazados por hero-bg, se ocultan */
.blob { display: none; }

/* ============== WAVE DIVIDER ============== */
.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 3;
}

.wave-top {
  top: -1px;
}

.wave-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============== ACTIVIDADES ============== */
.actividades {
  background: var(--white);
  padding-top: clamp(120px, 14vw, 180px);
}

.actividades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.act-card {
  background: linear-gradient(180deg, var(--white) 0%, var(--bone) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 36px 36px;
  border: 1px solid var(--gray-l);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.act-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--mint), var(--turq), var(--turq-d));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}

.act-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(76, 175, 163, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.act-card:hover {
  transform: perspective(1000px) rotateX(-2deg) rotateY(2deg) translateY(-10px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.act-card:hover::before { transform: scaleX(1); }
.act-card:hover::after { opacity: 1; }

.act-icon {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--mint), var(--turq));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--white);
  transition: transform 0.6s var(--ease-out);
}

.act-icon svg {
  width: 44px;
  height: 44px;
}

.act-card:hover .act-icon {
  transform: scale(1.08) rotate(-6deg);
}

.act-title {
  font-size: 1.625rem;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.2;
}

.act-desc {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 22px;
  line-height: 1.65;
  flex-grow: 1;
}

.act-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.act-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--ink);
  font-weight: 500;
}

.act-features svg {
  color: var(--turq-d);
  flex-shrink: 0;
}

.act-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--turq-d);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  padding-top: 18px;
  border-top: 1px solid var(--gray-l);
  margin-top: auto;
}

.act-link svg {
  transition: transform 0.3s var(--ease-out);
}

.act-link:hover svg { transform: translateX(6px); }

/* ============== NOSOTROS ============== */
.nosotros {
  background: linear-gradient(180deg, var(--white) 0%, var(--bone) 100%);
}

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

.nosotros-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 640px;
}

.nosotros-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 2;
}

.nosotros-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.nosotros-img-wrap:hover img { transform: scale(1.06); }

.nosotros-img-deco {
  position: absolute;
  width: 70%;
  height: 70%;
  bottom: -30px;
  right: -30px;
  background: linear-gradient(135deg, var(--mint), var(--turq));
  border-radius: var(--radius-lg);
  opacity: 0.35;
  z-index: 1;
  animation: morphDeco 14s ease-in-out infinite;
}

@keyframes morphDeco {
  0%, 100% { border-radius: 32px; transform: rotate(0deg); }
  50% { border-radius: 60% 40% 50% 60% / 50% 60% 40% 50%; transform: rotate(3deg); }
}

.quote-card {
  position: absolute;
  bottom: 20px;
  left: -40px;
  background: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  max-width: 320px;
  box-shadow: var(--shadow);
  z-index: 3;
  animation: floatCard 8s ease-in-out infinite;
}

.quote-mark {
  color: var(--turq);
  margin-bottom: 6px;
}

.quote-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 10px;
}

.quote-author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--turq-d);
  letter-spacing: 0.05em;
}

.nosotros-content h2 {
  margin: 14px 0 28px;
}

.nosotros-content p {
  margin-bottom: 20px;
  color: var(--ink);
}

.nosotros-content p strong {
  color: var(--turq-dd);
  font-weight: 600;
}

.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-l);
}

.counter {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.counter-num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--turq-d);
  line-height: 1;
  letter-spacing: -0.03em;
}

.counter-label {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
  line-height: 1.3;
}

/* ============== TESTIMONIOS ============== */
.testimonios {
  background: linear-gradient(180deg, var(--bone) 0%, #eef9f5 100%);
  position: relative;
}

.testimonios::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--mint);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
}

.testimonios-slider {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonios-track {
  display: flex;
  gap: 28px;
  transition: transform 0.7s var(--ease-out);
  will-change: transform;
}

.testimonial {
  flex: 0 0 calc(50% - 14px);
  background: var(--white);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 280px;
  transition: transform 0.5s, box-shadow 0.5s;
}

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

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--turq-d);
}

.testimonial-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-l);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--turq));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-out);
}

.slider-btn:hover {
  background: var(--turq-d);
  color: var(--white);
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-l);
  transition: all 0.3s;
  cursor: pointer;
}

.slider-dot.active {
  background: var(--turq-d);
  width: 28px;
  border-radius: 5px;
}

/* ============== GALERIA ============== */
.galeria {
  background: var(--white);
}

/* Carrusel de galería */
.galeria-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.galeria-track {
  display: flex;
  gap: 16px;
  transition: transform 0.7s var(--ease-out);
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 calc((100% - 32px) / 3);
  height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--gray-l);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.gallery-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(45, 45, 43, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-slide:hover img { transform: scale(1.08); }
.gallery-slide:hover::after { opacity: 1; }

.gallery-slide .zoom-icon {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turq-d);
  transform: translateY(10px) scale(0.85);
  opacity: 0;
  transition: all 0.4s var(--ease-out);
  z-index: 2;
}

.gallery-slide:hover .zoom-icon {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Botones de navegación del carrusel */
.galeria-prev,
.galeria-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  box-shadow: var(--shadow);
  z-index: 5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
  opacity: 0.92;
}

.galeria-prev { left: 16px; }
.galeria-next { right: 16px; }

.galeria-prev:hover,
.galeria-next:hover {
  background: var(--turq-d);
  color: var(--white);
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}

/* Controles inferiores: contador + barra de progreso */
.galeria-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.galeria-counter {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.galeria-counter .total {
  color: var(--gray);
  font-weight: 400;
}

.galeria-progress {
  flex-grow: 1;
  height: 2px;
  background: var(--gray-l);
  border-radius: 2px;
  overflow: hidden;
}

.galeria-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--turq), var(--turq-d));
  width: 0;
  transition: width 0.5s var(--ease-out);
}

/* ============== LIGHTBOX ============== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 14, 0.94);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
}

.lightbox-close { top: 28px; right: 28px; }
.lightbox-prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 28px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.lightbox-prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.1); }

.lightbox-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 18px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

/* ============== FAQ ============== */
.faq {
  background: linear-gradient(180deg, var(--white) 0%, var(--bone) 100%);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-l);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.faq-item[open] {
  border-color: var(--turq);
  box-shadow: 0 12px 36px rgba(76, 175, 163, 0.12);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--turq-d); }

.faq-icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.4s var(--ease-out);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--turq-d);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-out);
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
}

.faq-item[open] .faq-icon {
  background: var(--turq-d);
  transform: rotate(180deg);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: var(--white);
}

.faq-item[open] .faq-icon::after {
  transform: rotate(90deg);
}

.faq-body {
  padding: 0 28px 28px;
  animation: faqOpen 0.4s var(--ease-out);
}

.faq-body p {
  color: var(--gray);
  line-height: 1.7;
}

.faq-body strong { color: var(--ink); font-weight: 600; }

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

/* ============== CONTACTO ============== */
.contacto {
  background: linear-gradient(180deg, var(--bone) 0%, #e8f5f1 100%);
  position: relative;
}

.contact-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--turq);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  bottom: -200px;
  right: -200px;
  animation: blobFloat2 20s ease-in-out infinite;
  z-index: 0;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  position: relative;
  z-index: 2;
}

.contacto-info {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.contact-h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-intro {
  color: var(--gray);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 28px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  transition: all 0.35s var(--ease-out);
  text-decoration: none;
  color: var(--ink);
}

.info-item-link:hover {
  background: var(--white);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mint), var(--turq));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.info-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--ink);
}

.info-item span {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.4;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turq-d);
  transition: all 0.35s var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.social-links a:hover {
  background: var(--turq-d);
  color: var(--white);
  transform: translateY(-3px);
}

.map-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  display: block;
  filter: saturate(0.85);
  transition: filter 0.4s;
}

.map-wrap:hover iframe { filter: saturate(1); }

/* Form */
.contacto-form {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

.form-row {
  margin-bottom: 18px;
  position: relative;
}

.form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-l);
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bone);
  color: var(--ink);
  transition: all 0.3s var(--ease-out);
  outline: none;
  font-weight: 400;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--gray);
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--turq-d);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(76, 175, 163, 0.12);
}

.form-row input.invalid,
.form-row textarea.invalid {
  border-color: #e57373;
  background: #fff5f5;
}

.form-row textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-error {
  display: block;
  font-size: 0.78rem;
  color: #c14545;
  margin-top: 6px;
  min-height: 18px;
  opacity: 0;
  transition: opacity 0.3s;
}

.form-error.show { opacity: 1; }

.contacto-form .btn {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--turq-d) 0%, var(--ink) 100%);
}

.btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.contacto-form .btn.loading .btn-text,
.contacto-form .btn.loading .btn-icon { display: none; }

.contacto-form .btn.loading .btn-loader { display: inline-block; }

.form-success {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  background: #e8f5f1;
  color: var(--turq-dd);
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.92rem;
  align-items: center;
  gap: 10px;
}

.form-success.show { display: flex; }

/* ============== FOOTER ============== */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: var(--turq-d);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--sans);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a,
.footer-col li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--turq);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  max-width: 320px;
  line-height: 1.65;
}

.footer-logo {
  width: 140px;
  height: auto;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 2;
}

.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--turq); }

/* ============== WHATSAPP FLOATING ============== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.45);
  z-index: 90;
  text-decoration: none;
  animation: waPulse 2.4s ease-in-out infinite;
  transition: transform 0.3s var(--ease-out);
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

@keyframes waPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5), 0 0 0 16px rgba(37, 211, 102, 0);
  }
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--ink);
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

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

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Hero reveal con stagger */
.hero .reveal {
  transition-delay: 0ms;
}

.hero .reveal[data-delay="100"] { transition-delay: 100ms; }
.hero .reveal[data-delay="200"] { transition-delay: 200ms; }
.hero .reveal[data-delay="300"] { transition-delay: 300ms; }
.hero .reveal[data-delay="400"] { transition-delay: 400ms; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 52px; padding: 140px 0 80px; }
  .hero-visual { height: 420px; max-width: 520px; margin: 0 auto; width: 100%; }
  .hero-stat { bottom: 10px; left: -10px; padding: 12px 16px; }
  .hero-stat .stat-num { font-size: 1.7rem; }
  .hero-badge { top: 10px; right: -10px; }
  .nosotros-grid { grid-template-columns: 1fr; gap: 48px; }
  .nosotros-visual { max-width: 540px; margin: 0 auto; width: 100%; }
  .contacto-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-slide { flex: 0 0 calc((100% - 16px) / 2); height: 360px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid .footer-col:nth-child(4) { grid-column: span 3; margin-top: 12px; }
}

@media (max-width: 860px) {
  .menu { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .nav { min-height: 88px; padding: 0 20px; }
  .logo { height: 80px; }
  .site-header.scrolled .logo { height: 64px; }

  .hero { padding: 0 20px; min-height: 100vh; }
  .hero-inner { padding: 130px 0 80px; }
  .container { padding: 0 20px; }
  .actividades-grid { grid-template-columns: 1fr; gap: 20px; }
  .act-card { padding: 32px 28px 28px; }
  .counters { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .section-header { margin-bottom: 56px; }

  .testimonial { flex: 0 0 calc(100% - 0px); padding: 32px 28px; }
  .testimonios-track { gap: 0; }

  .galeria-track { gap: 12px; }
  .gallery-slide { flex: 0 0 calc((100% - 12px) / 2); height: 280px; }
  .galeria-prev, .galeria-next { width: 44px; height: 44px; }
  .galeria-prev { left: 8px; }
  .galeria-next { right: 8px; }

  .quote-card { left: 0; max-width: 280px; padding: 20px 22px; }
  .quote-card p { font-size: 0.95rem; }

  .contacto-info,
  .contacto-form { padding: 32px 24px; }
  .form-row-double { grid-template-columns: 1fr; gap: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid .footer-col:nth-child(1) { grid-column: span 2; }
  .footer-grid .footer-col:nth-child(4) { grid-column: span 2; margin-top: 0; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .hc-badge { left: 0; padding: 12px 18px; }
  .hc-badge strong { font-size: 0.82rem; }
  .hc-badge span { font-size: 0.72rem; }
  .hc-badge-icon { width: 36px; height: 36px; }

  .scroll-indicator { display: none; }

  .wa-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .wa-float svg { width: 28px; height: 28px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-visual { height: 420px; }
  .hc-stat { padding: 20px; }
  .hc-stat-num { font-size: 2.75rem; }

  .gallery-slide { flex: 0 0 100%; height: 320px; }
  .galeria-track { gap: 10px; }
  .galeria-controls { flex-direction: column; gap: 12px; align-items: stretch; }
  .lightbox-close { top: 16px; right: 16px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close,
  .lightbox-prev,
  .lightbox-next { width: 44px; height: 44px; }
}

/* ============== REDUCED MOTION ============== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .contact-blob, .quote-card, .wa-float, .pill-dot,
  .scroll-indicator, .nosotros-img-deco,
  .img-sharp-frame, .hero-stat, .hero-badge { animation: none !important; }

  .reveal { opacity: 1; transform: none; }
}

/* ============== PRINT ============== */
@media print {
  .site-header, .wa-float, .scroll-indicator, .blob, .contact-blob,
  .menu-toggle, .mobile-drawer, .drawer-backdrop { display: none !important; }
  body { background: white; color: black; }
  .section { padding: 40px 0; page-break-inside: avoid; }
}
