/* ============================================================
   ESPACIO EDUPLUS — Hoja de estilos principal
   Paleta extraída directamente del manual de marca:
   Turquesa #67C2C5 · Rosa #EE7598 · Verde lima #D7DC49 · Tinta #242422
   ============================================================ */

/* ---------- Tipografías de marca ---------- */
@font-face {
  font-family: "Fredoka One";
  src: url("../fonts/FredokaOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Colores de marca */
  --c-teal: #67c2c5;
  --c-teal-dark: #3f9ea1;
  --c-teal-light: #eaf7f7;
  --c-pink: #ee7598;
  --c-pink-dark: #d9527a;
  --c-pink-light: #fdeef2;
  --c-lime: #d7dc49;
  --c-lime-dark: #b9be2e;
  --c-lime-light: #f8f9e6;
  --c-ink: #242422;
  --c-ink-soft: #55564f;
  --c-white: #ffffff;
  --c-bg: #fffdf9;

  /* Tipografías */
  --font-display: "Fredoka One", "Baloo 2", system-ui, sans-serif;
  --font-body: "Raleway", "Myriad Pro", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Ritmo / bordes */
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 12px 30px -12px rgba(36, 36, 34, 0.18);
  --shadow-hover: 0 18px 40px -14px rgba(36, 36, 34, 0.28);
  --container: 1180px;
}

/* ---------- Reset básico ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
section { position: relative; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; font-weight: 400; }
h2.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  text-align: center;
  margin-bottom: 12px;
}
p.section-kicker {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--c-pink-dark);
  margin-bottom: 10px;
}
p.section-lead {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  color: var(--c-ink-soft);
  font-size: 1.05rem;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-pink);
  color: var(--c-white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--c-pink-dark); transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.btn-secondary {
  background: var(--c-white);
  color: var(--c-ink);
  border: 2px solid var(--c-ink);
}
.btn-secondary:hover { background: var(--c-ink); color: var(--c-white); transform: translateY(-3px); }
.btn-outline-light {
  background: transparent;
  color: var(--c-white);
  border: 2px solid rgba(255,255,255,0.85);
}
.btn-outline-light:hover { background: var(--c-white); color: var(--c-teal-dark); }
.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--c-teal);
  box-shadow: 0 2px 18px rgba(36,36,34,0.15);
  transition: padding 0.25s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  transition: padding 0.25s ease;
}
.site-header.is-scrolled .container { padding-top: 8px; padding-bottom: 8px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 72px; width: auto; transition: height 0.25s ease; }
.site-header.is-scrolled .brand img { height: 58px; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  transition: background 0.2s ease, color 0.2s ease;
}
.main-nav a:hover { background: rgba(255, 255, 255, 0.16); color: var(--c-white); }
.main-nav a.active { background: var(--c-white); color: var(--c-teal-dark); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 12px 24px; font-size: 0.9rem; }
.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--c-white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s ease;
}
/* El menú desplegable móvil tiene fondo blanco, así que el icono
   pasa a oscuro mientras está abierto para seguir viéndose bien */
.nav-toggle.is-open span { background: var(--c-ink); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 168px 0 0;
  background: linear-gradient(180deg, #f2fbfb 0%, #fdf6f8 100%);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 90px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-lime-light);
  border: 1.5px solid var(--c-lime-dark);
  color: #6b6f16;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--c-teal-dark); }
.hero p.hero-desc {
  font-size: 1.12rem;
  color: var(--c-ink-soft);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; }
.hero-trust div { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.92rem; }
.hero-trust svg { flex-shrink: 0; }

.hero-media { position: relative; }
.hero-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 5 / 4;
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
}
.hero-badge .dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-pink-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--c-pink-dark); }
.hero-badge span { font-size: 0.8rem; color: var(--c-ink-soft); }

.hero-wave { position: relative; width: 100%; line-height: 0; z-index: 1; }
.hero-wave img { width: 100%; height: auto; display: block; }

/* ============================================================
   FRANJA DE VALORES
   ============================================================ */
.values-strip {
  background: var(--c-white);
  padding: 46px 0;
  border-bottom: 1px solid rgba(36,36,34,0.06);
}
.values-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-item { display: flex; align-items: flex-start; gap: 14px; }
.value-item .icon-wrap {
  width: 66px; height: 66px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}
.value-item:nth-child(1) .icon-wrap { background: var(--c-teal-light); color: var(--c-teal-dark); }
.value-item:nth-child(2) .icon-wrap { background: var(--c-pink-light); color: var(--c-pink-dark); }
.value-item:nth-child(3) .icon-wrap { background: var(--c-lime-light); color: #7a7f1a; }
.value-item:nth-child(4) .icon-wrap { background: var(--c-teal-light); color: var(--c-teal-dark); }
.value-item h4 { font-family: var(--font-body); font-weight: 800; font-size: 0.98rem; margin-bottom: 2px; }
.value-item p { font-size: 0.85rem; color: var(--c-ink-soft); }

/* ============================================================
   SERVICIOS
   ============================================================ */
.services {
  padding: 100px 0 60px;
  background: var(--c-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 26px;
}
.service-card {
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(36,36,34,0.06);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-card .service-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 1.7rem;
}
.service-card:nth-child(4n+1) .service-icon { background: var(--c-pink-light); color: var(--c-pink-dark); }
.service-card:nth-child(4n+2) .service-icon { background: var(--c-lime-light); color: #7a7f1a; }
.service-card:nth-child(4n+3) .service-icon { background: var(--c-teal-light); color: var(--c-teal-dark); }
.service-card:nth-child(4n+4) .service-icon { background: var(--c-pink-light); color: var(--c-pink-dark); }
.service-card h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.08rem; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: var(--c-ink-soft); margin-bottom: 12px; line-height: 1.65; }
.service-card p:last-child { margin-bottom: 0; }
.service-card p strong { color: var(--c-ink); }

/* ============================================================
   NUESTRO EQUIPO
   ============================================================ */
.team {
  padding: 100px 0;
  background: var(--c-teal-light);
  position: relative;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.team-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.team-photo {
  aspect-ratio: 4 / 3.6;
  background: linear-gradient(160deg, var(--c-teal) 0%, var(--c-teal-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-card:nth-child(2) .team-photo { background: linear-gradient(160deg, var(--c-pink) 0%, var(--c-pink-dark) 100%); }
.team-card:nth-child(3) .team-photo { background: linear-gradient(160deg, var(--c-lime) 0%, var(--c-lime-dark) 100%); }
.team-photo svg { width: 46%; opacity: 0.95; }
.team-info { padding: 22px 24px 28px; }
.team-info h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.12rem; margin-bottom: 4px; }
.team-role { color: var(--c-pink-dark); font-weight: 700; font-size: 0.85rem; margin-bottom: 10px; display: block; }
.team-info p.bio { font-size: 0.9rem; color: var(--c-ink-soft); }
.team-note {
  margin-top: 40px;
  text-align: center;
  background: var(--c-white);
  border: 2px dashed var(--c-teal);
  border-radius: var(--radius-md);
  padding: 20px;
  font-size: 0.92rem;
  color: var(--c-ink-soft);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   RESERVA / CITA ONLINE
   ============================================================ */
.booking {
  padding: 100px 0;
  background: var(--c-white);
}
.booking-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: stretch;
  background: var(--c-ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.booking-info {
  padding: 52px 44px;
  color: var(--c-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.booking-info p.section-kicker { text-align: left; color: var(--c-lime); }
.booking-info h2 { color: var(--c-white); font-size: clamp(1.7rem, 2.6vw, 2.2rem); text-align: left; margin-bottom: 18px; }
.booking-info p.desc { color: rgba(255,255,255,0.78); margin-bottom: 28px; }
.booking-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.booking-steps li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.92rem; color: rgba(255,255,255,0.9); }
.booking-steps .step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--c-teal);
  color: var(--c-ink);
  font-family: var(--font-display);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
}
.booking-alt { display: flex; gap: 14px; flex-wrap: wrap; }
.booking-alt a { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.88rem; color: var(--c-white); border-bottom: 2px solid var(--c-teal); padding-bottom: 2px; }

.booking-calendar { background: var(--c-white); padding: 12px; min-height: 480px; display: flex; flex-direction: column; }
.booking-tabs { display: flex; flex-wrap: wrap; gap: 8px; padding: 6px 6px 12px; }
.booking-tab {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--c-ink-soft);
  background: #f2f2ee;
  border: 1.5px solid transparent;
  border-radius: 100px;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.booking-tab:hover { background: var(--c-teal-light); color: var(--c-teal-dark); }
.booking-tab.is-active { background: var(--c-teal); color: var(--c-white); }

/* Color por profesional: Esther = azul turquesa, Patricia = rosa, Alicia = verde lima */
.booking-tab-teal:hover { background: var(--c-teal-light); color: var(--c-teal-dark); }
.booking-tab-teal.is-active { background: var(--c-teal); color: var(--c-white); }
.booking-tab-pink:hover { background: var(--c-pink-light); color: var(--c-pink-dark); }
.booking-tab-pink.is-active { background: var(--c-pink); color: var(--c-white); }
.booking-tab-lime:hover { background: var(--c-lime-light); color: var(--c-lime-dark); }
.booking-tab-lime.is-active { background: var(--c-lime); color: var(--c-ink); }
.booking-calendar-panel { flex: 1; min-height: 480px; }
.calendly-inline-widget { min-width: 280px; height: 100%; min-height: 480px; border-radius: var(--radius-md); overflow: hidden; }
.booking-placeholder {
  height: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 40px;
  color: var(--c-ink-soft);
  background: repeating-linear-gradient(135deg, #fafafa, #fafafa 12px, #f2f2f2 12px, #f2f2f2 24px);
  border-radius: var(--radius-md);
}
.booking-placeholder svg { color: var(--c-teal-dark); }
.booking-placeholder code {
  background: var(--c-ink);
  color: var(--c-lime);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.82rem;
}

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonials { padding: 90px 0; background: var(--c-pink-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
}
.testimonial-card .stars { color: var(--c-lime-dark); margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p.quote { font-size: 0.95rem; color: var(--c-ink); margin-bottom: 18px; font-style: italic; }
.testimonial-card .author { display: flex; align-items: center; gap: 10px; }
.testimonial-card .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--c-teal); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.9rem;
}
.testimonial-card .author strong { font-size: 0.88rem; display: block; }
.testimonial-card .author span { font-size: 0.78rem; color: var(--c-ink-soft); }

/* ============================================================
   CONTACTO
   ============================================================ */
.contact { padding: 100px 0; background: var(--c-white); }
.contact-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
}
.contact-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .icon-wrap {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--c-teal-light); color: var(--c-teal-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-list strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.contact-list span, .contact-list a.link { font-size: 0.9rem; color: var(--c-ink-soft); }
.contact-list a.link:hover { color: var(--c-teal-dark); }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--c-ink);
  color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-row a:hover { background: var(--c-pink); transform: translateY(-3px); }

.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid rgba(36,36,34,0.08);
  aspect-ratio: 16/9;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.contact-form {
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.contact-form h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.2rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 700; }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(36,36,34,0.15);
  font-family: var(--font-body);
  font-size: 0.94rem;
  background: var(--c-white);
  transition: border-color 0.2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--c-teal);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.78rem; color: var(--c-ink-soft); margin-top: 12px; }
.form-feedback { display: none; margin-top: 14px; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 700; }
.form-feedback.show { display: block; }
.form-feedback.ok { background: var(--c-lime-light); color: #5c6017; }
.form-feedback.err { background: #fdeaea; color: #a3312f; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  padding: 80px 0;
  background: linear-gradient(120deg, var(--c-teal-dark), var(--c-teal));
  text-align: center;
  color: var(--c-white);
}
.cta-final h2 { color: var(--c-white); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px; }
.cta-final p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 32px; }
.cta-final .btn-group { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--c-ink); color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; max-width: 260px; margin-bottom: 18px; }
.footer-brand .social-row a { background: rgba(255,255,255,0.08); }
.footer-brand .social-row a:hover { background: var(--c-pink); }
.footer-col h4 { color: var(--c-white); font-family: var(--font-body); font-weight: 800; font-size: 0.95rem; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col span { font-size: 0.88rem; }
.footer-col a:hover { color: var(--c-teal); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-size: 0.8rem; flex-wrap: wrap; gap: 10px;
}
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(37,211,102,0.45);
  z-index: 900;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ============================================================
   ANIMACIONES SCROLL-REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 1240px) {
  .header-phone { display: flex; }
}

@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-strip .container { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .booking-wrap { grid-template-columns: 1fr; }
  .booking-info { padding: 40px 32px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .main-nav, .header-cta .btn-secondary, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn-primary { padding: 10px 18px; font-size: 0.82rem; }

  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: min(78vw, 320px);
    height: 100vh;
    background: var(--c-white);
    padding: 100px 30px 40px;
    gap: 4px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    z-index: 1050;
    align-items: flex-start;
  }
  .main-nav.is-open a { width: 100%; padding: 14px 16px; font-size: 1rem; }

  .nav-scrim { display: none; position: fixed; inset: 0; background: rgba(36,36,34,0.4); z-index: 1040; }
  .nav-scrim.is-open { display: block; }

  .hero { padding-top: 110px; }
  .services-grid, .team-grid { grid-template-columns: 1fr; }
  .values-strip .container { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions .btn { width: 100%; }
  .cta-final .btn-group .btn { width: 100%; max-width: 320px; }
  .contact-form { padding: 28px 22px; }
}
