/* =========================================
   FLOW PILATES ESTUDIO — Design System
   Paleta basada en logo teal + tierra + crema
   ========================================= */

:root {
  --teal:       #3BBFBF;
  --teal-dark:  #2a9393;
  --teal-light: #7dd8d8;
  --teal-pale:  #e8f8f8;
  --earth:      #8B6F5E;
  --cream:      #FAF7F2;
  --warm-white: #FFFFFF;
  --charcoal:   #1E2020;
  --mid-gray:   #5A6060;
  --light-gray: #E8ECEC;
  --gold:       #C9A96E;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Outfit', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.14);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* UTILIDADES */
.section-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-sub { color: var(--mid-gray); max-width: 520px; }
.section-header { margin-bottom: 56px; }
.section-header.light .section-title,
.section-header.light .section-tag { color: var(--warm-white); }
.section-header.light .section-tag { color: var(--teal-light); }

/* BOTONES */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 14px 32px;
  border-radius: 100px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--teal);
  color: var(--warm-white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59,191,191,.35);
}
.btn-outline {
  background: transparent;
  color: var(--warm-white);
  border-color: rgba(255,255,255,.6);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--warm-white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; text-align: center; }
.btn-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: .04em;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.btn-link:hover { color: var(--teal-dark); gap: 10px; }
.btn-nav {
  background: var(--teal);
  color: var(--warm-white) !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 500;
  transition: var(--transition);
}
.btn-nav:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* =========== NAVBAR =========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img-wrap {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  transition: var(--transition);
  background: var(--warm-white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.15); /* Aumenta el tamaño visual del logo por si tiene márgenes internos */
}
.nav-brand-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--warm-white);
  letter-spacing: .04em;
  transition: var(--transition);
  white-space: nowrap;
}
.navbar.scrolled .nav-brand-name { color: var(--charcoal); }
.navbar.scrolled .nav-logo-img-wrap { width: 64px; height: 64px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 400;
  color: var(--warm-white);
  letter-spacing: .04em;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--teal-light);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.navbar.scrolled .nav-links a { color: var(--charcoal); }
.navbar.scrolled .nav-links a::after { background: var(--teal); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--warm-white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--charcoal); }

/* =========== HERO =========== */
.hero {
  position: relative;
  height: 100vh; /* Fuerza a que ocupe exactamente el 100% de la ventana */
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden; /* Evita que la animación de la imagen o las partículas se salgan del contenedor */
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: kenBurns 20s cubic-bezier(0.4, 0.0, 0.2, 1) infinite alternate;
  transform-origin: center center;
}
@keyframes kenBurns {
  0%   { transform: scale(1)    translate(0, 0); filter: saturate(1) contrast(1); }
  50%  { transform: scale(1.05) translate(-1%, -1%); filter: saturate(1.1) contrast(1.05); }
  100% { transform: scale(1.08) translate(1%, 0.5%); filter: saturate(1.2) contrast(1.1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 20%, rgba(30,32,32,0.7) 100%),
              linear-gradient(135deg, rgba(30,32,32,.7) 0%, rgba(30,32,32,.3) 50%, rgba(59,191,191,.4) 100%);
  background-size: 100% 100%, 200% 200%;
  animation: gradientShift 15s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%, 0% 50%; }
  50% { background-position: 100% 50%, 100% 50%; }
  100% { background-position: 0% 50%, 0% 50%; }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  color: var(--warm-white);
}
/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(125,216,216,0.3) 0%, transparent 70%);
  filter: blur(20px);
  animation: floatParticle 15s ease-in-out infinite alternate;
}
.particle.p1 {
  width: 350px; height: 350px;
  top: -5%; left: -10%;
  animation-duration: 25s;
}
.particle.p2 {
  width: 500px; height: 500px;
  bottom: -15%; right: -5%;
  animation-duration: 20s;
  animation-delay: -5s;
  background: radial-gradient(circle at center, rgba(59,191,191,0.2) 0%, transparent 70%);
}
.particle.p3 {
  width: 250px; height: 250px;
  top: 40%; right: 20%;
  animation-duration: 18s;
  animation-delay: -10s;
  background: radial-gradient(circle at center, rgba(250,247,242,0.15) 0%, transparent 70%);
}
@keyframes floatParticle {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(30px, -50px) scale(1.1) rotate(45deg); }
  66% { transform: translate(-20px, 20px) scale(0.9) rotate(-15deg); }
  100% { transform: translate(0, 0) scale(1) rotate(0deg); }
}

/* Animaciones de entrada escalonadas y premium */
.hero-brand,
.hero-title,
.hero-sub,
.hero-ctas {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  filter: blur(10px);
  animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-brand  { animation-delay: 0.1s; }
.hero-title  { animation-delay: 0.3s; }
.hero-sub    { animation-delay: 0.5s; }
.hero-ctas   { animation-delay: 0.7s; }

@keyframes heroReveal {
  100% { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
    filter: blur(0); 
  }
}

.hero-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(125,216,216,.4);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
/* Nombre del estudio en hero */
.hero-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.hero-logo-wrap {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}
.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.35));
}
.hero-brand-text { display: flex; flex-direction: column; }
.hero-brand-name {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 300;
  color: var(--warm-white);
  letter-spacing: .12em;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 580px;
}
.hero-title em { 
  font-style: italic; 
  background: linear-gradient(135deg, var(--teal-light), #ffffff, var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  animation: shine 5s linear infinite;
  background-size: 200% auto;
}
@keyframes shine {
  to { background-position: 200% center; }
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-ctas .btn-primary {
  box-shadow: 0 0 0 0 rgba(59,191,191,0.6);
  animation: pulseBtn 3s infinite;
}
@keyframes pulseBtn {
  0% { box-shadow: 0 0 0 0 rgba(59,191,191,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(59,191,191,0); }
  100% { box-shadow: 0 0 0 0 rgba(59,191,191,0); }
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========== TRUST BAR =========== */
.trust-bar {
  background: var(--charcoal);
  padding: 28px 0;
}
.trust-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.trust-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--teal-light);
  font-weight: 600;
}
.trust-label {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 2px;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
}

/* =========== NOSOTROS =========== */
.nosotros { padding: 100px 0; }
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nosotros-img-wrap {
  position: relative;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.nosotros-img-wrap img {
  border-radius: var(--radius-lg);
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.nosotros-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: var(--shadow-md);
}
.nosotros-text .section-title { margin-bottom: 24px; }
.nosotros-text p { color: var(--mid-gray); margin-bottom: 16px; }
.nosotros-text strong { color: var(--charcoal); }
.nosotros-text .btn { margin-top: 24px; }

/* =========== CLASES =========== */
.clases {
  padding: 100px 0;
  background: var(--teal-pale);
}
.clases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.clase-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.clase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.clase-img {
  height: 240px;
  overflow: hidden;
}
.clase-img img {
  transition: transform .5s ease;
  height: 100%;
}
.clase-card:hover .clase-img img { transform: scale(1.06); }
.clase-body {
  padding: 28px;
}
.clase-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.clase-body p {
  font-size: .9rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* =========== GALERÍA =========== */
.galeria {
  padding: 100px 0;
  background: var(--charcoal);
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gal-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gal-item:hover img { transform: scale(1.07); }

/* =========== HORARIOS =========== */
.horarios {
  padding: 100px 0;
  background: var(--cream);
}
.horarios-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.horarios-text .section-title { margin-bottom: 16px; }
.horarios-text p { color: var(--mid-gray); margin-bottom: 32px; }
.horarios-tabla {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.horario-row {
  display: flex;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--light-gray);
  gap: 24px;
  transition: background var(--transition);
}
.horario-row:hover { background: var(--teal-pale); }
.horario-row:last-of-type { border-bottom: none; }
.horario-dia {
  font-weight: 500;
  color: var(--charcoal);
  min-width: 140px;
  font-size: .95rem;
}
.horario-horas {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--mid-gray);
  font-size: .9rem;
}
.horarios-note {
  padding: 16px 28px;
  background: var(--teal);
  color: var(--warm-white);
  font-size: .8rem;
  letter-spacing: .06em;
  text-align: center;
}

/* =========== TURNOS =========== */
.turnos {
  padding: 100px 0;
  background: var(--teal-pale);
}
.turnos-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.turnos-form-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.turnos-direct-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.turnos-direct-sub {
  color: var(--mid-gray);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 32px;
}
.btn-turnera {
  font-size: 1.1rem;
  padding: 16px 32px;
  box-shadow: 0 8px 24px rgba(59,191,191,.35);
  margin-bottom: 40px;
}
.btn-turnera:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(59,191,191,.45);
}
.trial-class-box {
  background: var(--teal-pale);
  border-radius: var(--radius-sm);
  padding: 32px;
  border-left: 4px solid var(--teal);
}
.trial-class-box h4 {
  color: var(--teal-dark);
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}
.trial-class-box p {
  color: var(--mid-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.mp-btn-wrapper { margin-top: 20px; }
.btn-mp {
  background: #009EE3;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1.05rem;
  width: 100%;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0, 158, 227, 0.25);
}
.btn-mp:hover {
  background: #0087c1;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0, 158, 227, 0.4);
}
.btn-mp svg {
  transition: transform 0.3s ease;
}
.btn-mp:hover svg {
  transform: translateX(3px);
}
.turnos-info { padding-top: 8px; }
.turnos-info h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.benefits-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.benefits-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.benefit-icon {
  color: var(--teal);
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.benefits-list strong { display: block; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.benefits-list p { font-size: .88rem; color: var(--mid-gray); margin: 0; }
.contact-box {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--teal);
}
.contact-box h4 {
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--charcoal);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: .9rem;
  color: var(--mid-gray);
  transition: color var(--transition);
  border-bottom: 1px solid var(--light-gray);
}
.contact-row:last-child { border-bottom: none; }
.contact-row:hover { color: var(--teal); }
.contact-icon { font-size: 1.1rem; }

/* =========== TESTIMONIOS =========== */
.testimonios {
  padding: 100px 0;
  background: var(--charcoal);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: var(--transition);
}
.testi-card:hover {
  background: rgba(59,191,191,.1);
  border-color: rgba(59,191,191,.3);
  transform: translateY(-4px);
}
.testi-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}
.testi-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.testi-card p {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author {
  font-size: .8rem;
  color: var(--teal-light);
  font-weight: 500;
  letter-spacing: .06em;
}

/* =========== FOOTER =========== */
.footer {
  background: #111515;
  padding: 72px 0 0;
}
.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 56px;
}
.footer-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}
.footer-links h4,
.footer-contact h4 {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 0; }
.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  padding: 8px 0;
  transition: color var(--transition);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-links a:hover { color: var(--teal-light); }
.footer-contact { display: flex; flex-direction: column; }
.footer-contact > a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition);
}
.footer-contact > a:hover { color: var(--teal-light); }
.footer-horarios-mini { margin-top: 16px; }
.footer-horarios-mini p {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  line-height: 1.9;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

/* =========== WA FLOAT =========== */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: var(--transition);
  animation: floatPulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,.5);
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,.7); }
}

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
  .nosotros-grid { gap: 48px; }
  .clases-grid { grid-template-columns: 1fr 1fr; }
  .clases-grid .clase-card:last-child { grid-column: span 2; }
  .horarios-grid { gap: 48px; }
  .turnos-wrapper { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 32px;
    gap: 28px;
    transition: right var(--transition);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--warm-white) !important; font-size: 1.1rem; }
  .nosotros-grid,
  .horarios-grid { grid-template-columns: 1fr; }
  .nosotros-img-wrap { height: 320px; }
  .clases-grid { grid-template-columns: 1fr; }
  .clases-grid .clase-card:last-child { grid-column: span 1; }
  .galeria-grid { grid-template-columns: 1fr 1fr; }
  .gal-item:nth-child(1),
  .gal-item:nth-child(5) { grid-column: span 2; height: 220px; }
  .testi-grid { grid-template-columns: 1fr; }
  .turnos-form-card { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .trust-container { gap: 20px; }
  .trust-divider { display: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .wa-float { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .section-container { padding: 0 16px; }
  .nosotros, .clases, .galeria, .horarios, .turnos, .testimonios { padding: 72px 0; }
  .section-header { margin-bottom: 40px; }
}
