@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600;700;800&family=Varela+Round&display=swap');

:root {
  --bg: #FBF8F6;
  --bg-soft: #F5F0EC;
  --bg-card: #FFFFFF;
  --border: #E5E7EB;
  --border-hover: #D1D5DB;
  --text: #1F2937;
  --text-2: #4B5563;
  --text-3: #9CA3AF;
  --accent: #10B981;
  --accent-light: #34D399;
  --accent-dark: #059669;
  --accent-bg: #ECFDF5;
  --accent-border: #A7F3D0;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 32px rgba(16,185,129,0.25);
  --radius: 16px;
  --radius-lg: 24px;
}

* { font-family: 'Nunito Sans', sans-serif; box-sizing: border-box; }
h1, h2, h3, h4, h5, h6, .heading-font { font-family: 'Varela Round', sans-serif; }

body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  margin: 0;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(251,248,246,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  padding: 12px 32px;
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
  font-family: 'Varela Round', sans-serif;
  font-weight: 700; font-size: 22px;
}
.nav-logo img { height: 36px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  text-decoration: none; color: var(--text-2);
  font-size: 15px; font-weight: 600;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

/* ─── CTA BUTTON ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: #FFFFFF;
  font-weight: 700; font-size: 15px;
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
  border: none; cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(16,185,129,0.35);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600; font-size: 15px;
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 64px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #F0F7F4 0%, #FBF8F6 40%, #F0FDF4 100%);
}
.hero-content { max-width: 600px; position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--accent); }
.hero p {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-visual {
  position: absolute;
  right: -40px; top: 50%; transform: translateY(-50%);
  width: 55%; max-width: 700px;
  z-index: 1;
}
.hero-blob {
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 60% 40%, rgba(16,185,129,0.08) 0%, rgba(52,211,153,0.04) 50%, transparent 70%);
  border-radius: 50%;
  aspect-ratio: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 13px; font-weight: 700;
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid var(--accent-border);
  margin-bottom: 24px;
}

/* ─── SECTION ─── */
.section {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  color: var(--accent);
  font-weight: 700; font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Varela Round', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 560px;
}
.section-center { text-align: center; }
.section-center .section-subtitle { margin: 0 auto; }

/* ─── SERVICE CARDS ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 0;
  align-items: stretch;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.4s ease, border-color 0.4s ease, background 0.3s ease, transform 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  height: 100%;
  padding: 20px 18px 18px;
  text-decoration: none;
  color: inherit;
  pointer-events: auto;
  z-index: 1;
}
.service-card > * { pointer-events: none; }
.service-card:hover {
  background: rgba(255, 255, 255, 1);
  border-color: var(--accent-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card .service-icon {
  transition: transform 0.4s cubic-bezier(.2,.9,.3,1.4), background 0.3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-6deg);
  background: var(--accent-bg);
}
.service-card p { flex-grow: 1; }
.service-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 13px; font-weight: 700;
  transition: all 0.25s ease;
}
.service-card:hover .service-cta {
  background: var(--accent); color: white;
  transform: translateX(2px);
}
.service-cta .arrow { transition: transform 0.25s ease; display: inline-block; }
.service-card:hover .service-cta .arrow { transform: translateX(4px); }
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.service-icon svg { width: 24px; height: 24px; color: var(--accent); }
.service-card h3 {
  font-family: 'Varela Round', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25;
}
.service-card p {
  font-size: 13px; color: var(--text-2);
  line-height: 1.55;
}

/* ─── SERVICE 3D TILT ─── */
.serv-3d {
  will-change: transform;
}
.serv-3d:hover {
  box-shadow: 0 24px 70px rgba(16,185,129,0.18), 0 0 0 1px var(--accent-border) !important;
}

/* Decorative blobs floating animation */
.serv-deco-1 { animation: floatBlob 8s ease-in-out infinite; }
.serv-deco-2 { animation: floatBlob 10s ease-in-out infinite reverse; }
.serv-deco-3 { animation: floatBlob 6s ease-in-out infinite 2s; }
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -20px) scale(1.05); }
  66% { transform: translate(-10px, 10px) scale(0.95); }
}

/* Huellitas pulsando */
.paw-trail { animation: pawPulse 4s ease-in-out infinite; }
.paw-1 { animation-delay: 0s; }
.paw-2 { animation-delay: 0.8s; }
.paw-3 { animation-delay: 1.6s; }
.paw-4 { animation-delay: 2.4s; }
@keyframes pawPulse {
  0%, 100% { opacity: 0.08; transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { opacity: 0.22; transform: translateY(-8px) rotate(var(--r, 0deg)); }
}
.serv-dog { animation: dogBounce 5s ease-in-out infinite; }
@keyframes dogBounce {
  0%, 100% { transform: translateY(0) rotate(-3deg); opacity: 0.10; }
  50% { transform: translateY(-12px) rotate(3deg); opacity: 0.18; }
}

/* ─── STATS BAR ─── */
.stats-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
  padding: 48px 32px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Varela Round', sans-serif;
  font-size: 36px; font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 13px; color: var(--text-3);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; margin-top: 4px;
}

/* ─── PRICING TABLE ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.35s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
  position: relative;
}
.price-card.featured::after {
  content: 'Popular';
  position: absolute; top: -12px; right: 24px;
  background: var(--accent); color: white;
  font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 99px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.price-card h3 {
  font-family: 'Varela Round', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.price-amount {
  font-family: 'Varela Round', sans-serif;
  font-size: 40px; font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.price-card .price-sub {
  font-size: 13px; color: var(--text-3);
  margin-bottom: 24px;
}
.price-features { list-style: none; padding: 0; margin: 0 0 28px; }
.price-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-2);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.price-features li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { color: #FBBF24; font-size: 18px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 15px; color: var(--text-2);
  line-height: 1.7; margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-bg);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--accent); font-size: 18px;
}
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--text); }
.testimonial-pet { font-size: 12px; color: var(--text-3); }

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  margin: 0 32px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-bg); border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--accent); }

/* ─── FOOTER (dark, estilo Eficia) ─── */
.footer {
  background: #1A3028;
  color: #C8D4CC;
  padding: 64px 0 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: none;
  box-sizing: border-box;
  font-family: 'Nunito Sans', sans-serif;
}
.footer a {
  color: #C8D4CC;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer a:hover { color: #6EE7B7; }
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
}
.footer-brand {
  font-size: 14px;
  line-height: 1.7;
  color: #E8F0EC;
  max-width: 320px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: #FFFFFF;
  padding: 4px;
}
.footer-logo span {
  font-family: 'Varela Round', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
}
.footer-brand p { margin: 0; color: #C8D4CC; }
.footer h4 {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 18px;
  font-family: 'Varela Round', sans-serif;
  letter-spacing: 0.02em;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; font-size: 14px; }
.footer ul li a,
.footer ul li span { font-size: 14px; color: #C8D4CC; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 48px;
  width: 100%;
  box-sizing: border-box;
}
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #6B7280;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Varela Round', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--text-2);
  text-decoration: none; transition: color 0.3s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--accent); }
.hamburger { display: none; background: none; border: none; cursor: pointer; }

/* ─── WHATSAPP FAB ─── */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.3s ease;
  text-decoration: none;
}
.wa-fab:hover { transform: scale(1.1); }
.wa-fab svg { width: 28px; height: 28px; fill: white; }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 1; transform: translateY(0);
}
.js-anim .fade-up:not(.is-hero-child) { opacity: 0; transform: translateY(40px); will-change: transform, opacity; }
.js-anim .split-chars { opacity: 1; }
.js-anim .split-chars .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(-90deg);
  transform-origin: 50% 100%;
  will-change: transform, opacity;
}
.js-anim .split-chars .char.space { width: 0.28em; }
.js-anim .serv-3d { opacity: 0; }
.js-anim .serv-3d .service-icon,
.js-anim .serv-3d h3,
.js-anim .serv-3d p,
.js-anim .serv-3d .service-cta { opacity: 0; }

/* ─── HERO LINE REVEAL ─── */
.hero-line { display: block; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.hero-line-inner { display: block; }

/* ─── SHIMMER TEXT ─── */
.text-shimmer {
  background: linear-gradient(135deg, #10B981 0%, #6EE7B7 40%, #10B981 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  from { background-position: 0% center; }
  to { background-position: 200% center; }
}

/* ─── PRELOADER ─── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), visibility 0.7s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
  display: flex; align-items: center; gap: 16px;
  font-family: 'Varela Round', sans-serif;
  font-weight: 700; font-size: 32px; color: var(--text);
}
.preloader-logo img { height: 48px; width: auto; }
.preloader-bar {
  width: 180px; height: 2px; background: rgba(0,0,0,0.08);
  border-radius: 2px; overflow: hidden;
}
.preloader-fill {
  height: 100%; width: 0%; background: var(--accent);
  border-radius: 2px; transition: width 0.2s;
}

/* ─── SMOOTH SCROLLBAR ─── */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* ─── OPINIONES — grid con video Pixar de fondo ─── */
.reviews-section {
  background: var(--bg-soft);
  isolation: isolate;
  border-top: 1px solid var(--border);
  box-shadow: inset 0 8px 16px -8px rgba(0,0,0,0.04);
}
.reviews-section .reviews-fade-top {
  background: linear-gradient(180deg, var(--bg-soft) 0%, rgba(245,240,236,0) 100%) !important;
}
.reviews-section .reviews-fade-bottom {
  background: linear-gradient(0deg, var(--bg-soft) 0%, rgba(245,240,236,0) 100%) !important;
}
.reviews-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.reviews-bg-fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(16,185,129,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 75%, rgba(16,185,129,0.12) 0%, transparent 55%),
    linear-gradient(180deg, #F0FAF5 0%, #E8F5EE 100%);
  z-index: 0;
}
.reviews-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 1;
}
.reviews-bg-overlay {
  position: absolute; inset: 0;
  background: rgba(20, 40, 30, 0.05);
  z-index: 2;
}
#contacto .reviews-bg-video {
  opacity: 1;
}
#contacto .reviews-bg-overlay {
  background: rgba(0, 0, 0, 0);
}
.reviews-fade-top,
.reviews-fade-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 100px;
  z-index: 3;
  pointer-events: none;
}
.reviews-fade-top {
  top: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(251,248,246,0) 100%);
}
.reviews-fade-bottom {
  bottom: 0;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(251,248,246,0) 100%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Marquee carrusel infinito */
.marquee-wrap {
  margin-top: 52px;
  overflow: hidden;
  width: 100%;
  position: relative;
  outline: none;
}
.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite !important;
  will-change: transform;
}
.marquee-track > .review-card {
  width: 400px;
  flex-shrink: 0;
}
.marquee-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@keyframes marqueeScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-50% - 12px), 0, 0); }
}

.review-card {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(20, 60, 40, 0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(16,185,129,0.18);
}
.review-card .testimonial-stars {
  color: #FBBF24;
  font-size: 18px;
  margin-bottom: 12px;
}
.review-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.review-card .review-author {
  font-size: 13px;
  color: var(--text-3);
}
.review-card .review-author strong {
  color: var(--text);
  font-weight: 700;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .navbar { padding: 12px 16px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero {
    padding: 100px 24px 60px;
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: 36px; }
  .hero p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-visual { display: none; }
  .hero .flex { justify-content: center; }
  .section { padding: 64px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 36px; }
  .review-card { padding: 24px 22px 22px; }
  .marquee-wrap { margin-top: 36px; }
  .marquee-track { animation-duration: 40s; gap: 16px; }
  .marquee-track > .review-card { width: 280px; }
  @keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 8px)); }
  }
  .contact-grid { grid-template-columns: 1fr; }
  #nosotros > div { grid-template-columns: 1fr !important; }
  #sucursales .section > div:last-child { grid-template-columns: 1fr !important; }
  .stats-bar { gap: 24px; padding: 32px 20px; }
  .stat-number { font-size: 28px; }
  .cta-section { margin: 0 16px; padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-inner { padding: 0 24px 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; justify-content: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
@media (max-width: 380px) {
  .hero h1 { font-size: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════ */
/* HORARIOS — sección rica con video + live status */
/* ═══════════════════════════════════════ */
.section-horarios { position: relative; }
.section-horarios::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 15% 30%, rgba(16,185,129,0.06), transparent 70%),
    radial-gradient(50% 40% at 90% 80%, rgba(16,185,129,0.05), transparent 70%);
  pointer-events: none; z-index: 0;
}
.section-horarios > * { position: relative; z-index: 1; }

.horarios-grid {
  display: grid;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin: 56px auto 0;
}

/* Columna video (wrap + label) */
.horarios-video-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  width: 100%;
}

/* Caja del video */
.horarios-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(16,185,129,0.22), 0 4px 14px rgba(16,185,129,0.10);
  border: 1px solid var(--accent-border);
  background: var(--accent-bg);
  transition: box-shadow 0.5s ease, border-color 0.5s ease;
}
.horarios-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}
.horarios-video-placeholder {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 24px;
  text-align: center;
  opacity: 1;
  transition: opacity 0.5s ease, background 0.6s ease;
  z-index: 1;
}
/* Gradients temáticos por slot */
.horarios-video-wrap[data-slot="manana"]  .horarios-video-placeholder {
  background: linear-gradient(160deg, #FEF3C7 0%, #FDE68A 50%, #FBF8F6 100%);
}
.horarios-video-wrap[data-slot="tarde"]   .horarios-video-placeholder {
  background: linear-gradient(160deg, #FFFBEB 0%, #FEF3C7 60%, #FFFFFF 100%);
}
.horarios-video-wrap[data-slot="noche"]   .horarios-video-placeholder {
  background: linear-gradient(160deg, #FCE7F3 0%, #DDD6FE 55%, #E0E7FF 100%);
}
.horarios-video-wrap[data-slot="cerrado"] .horarios-video-placeholder {
  background: linear-gradient(160deg, #E5E7EB 0%, #CBD5E1 55%, #94A3B8 100%);
}
.horarios-video-icon {
  font-size: 84px;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
  animation: horIconFloat 4s ease-in-out infinite;
}
@keyframes horIconFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.horarios-video-text {
  font-family: 'Varela Round', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--text);
  margin-top: 6px;
}
.horarios-video-sub {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* Label dinámico bajo el video */
.horarios-video-label {
  text-align: center;
  font-family: 'Varela Round', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  padding: 12px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(16,185,129,0.10);
  align-self: center;
  transition: all 0.4s ease;
}
.horarios-video-wrap[data-slot="manana"]  + .horarios-video-label { color: #B45309; border-color: #FCD34D; background: #FFFBEB; }
.horarios-video-wrap[data-slot="tarde"]   + .horarios-video-label { color: #047857; border-color: var(--accent-border); background: var(--accent-bg); }
.horarios-video-wrap[data-slot="noche"]   + .horarios-video-label { color: #6D28D9; border-color: #DDD6FE; background: #F5F3FF; }
.horarios-video-wrap[data-slot="cerrado"] + .horarios-video-label { color: #475569; border-color: #CBD5E1; background: #F1F5F9; }

/* Columna info */
.horarios-info { display: flex; flex-direction: column; gap: 24px; }

/* Live status */
.live-status {
  border-radius: var(--radius);
  padding: 22px 26px;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  transition: all 0.4s ease;
}
.live-status[data-state="open"] {
  background: var(--accent-bg);
  border-color: var(--accent-border);
  box-shadow: 0 8px 28px rgba(16,185,129,0.14);
}
.live-status[data-state="closed"] {
  background: #FEF2F2;
  border-color: #FECACA;
  box-shadow: 0 8px 28px rgba(220,38,38,0.10);
}
.live-status-row {
  display: flex; align-items: center; gap: 12px;
}
.live-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--text-3);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
}
.live-status[data-state="open"] .live-dot {
  background: #10B981;
  animation: livePulse 1.6s ease-in-out infinite;
}
.live-status[data-state="closed"] .live-dot {
  background: #DC2626;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.55); }
  50%      { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
}
.live-status-title {
  font-family: 'Varela Round', sans-serif;
  font-size: 28px; font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--text);
}
.live-status[data-state="open"] .live-status-title { color: #047857; }
.live-status[data-state="closed"] .live-status-title { color: #B91C1C; }
.live-status-sub {
  margin-top: 6px;
  font-size: 14px;
  color: var(--text-2);
  padding-left: 24px;
}
.live-status-bot {
  display: inline-flex;
  align-items: center; gap: 8px;
  margin-top: 14px; margin-left: 24px;
  padding: 8px 14px;
  background: #FFFFFF;
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px; color: var(--text);
  transition: all 0.25s ease;
}
.live-status-bot:hover {
  background: var(--accent-bg);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16,185,129,0.18);
}
.live-status-bot strong { color: var(--accent); }
.live-status-bot-icon { font-size: 16px; }

/* Tabla horarios */
.horarios-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.horarios-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease, padding 0.25s ease;
  text-decoration: none;
}
.horarios-row:last-child { border-bottom: none; }
.horarios-row:hover { background: var(--accent-bg); }
.horarios-day {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; color: var(--text);
}
.horarios-emoji { font-size: 18px; }
.horarios-time { font-weight: 700; color: var(--accent); }
.horarios-time-off { color: var(--text-3); font-weight: 600; }
.horarios-row-bot {
  background: var(--accent-bg);
}
.horarios-row-bot:hover {
  background: #D1FAE5;
  padding-left: 28px;
}
.horarios-time-bot { color: var(--accent); }

/* Mobile */
@media (max-width: 900px) {
  .horarios-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }
  .horarios-video-col {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
  .horarios-video-wrap {
    max-width: 360px;
    margin: 0 auto;
    aspect-ratio: 4/5;
    min-height: 320px;
  }
  .horarios-video-icon { font-size: 68px; }
  .live-status-title { font-size: 23px; }
}

/* ═══════════════════════════════════════════════════════════════
   EQUIPO — sección con cards de profesionales
   ═══════════════════════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(16,185,129,.12), 0 6px 16px rgba(16,24,20,.06);
  border-color: var(--accent-border);
}

/* ─────────────────────────────────────
   SUCURSALES — fotos como fondo de la sección
   Las cards quedan limpias encima en glass blanco
   ───────────────────────────────────── */
.sucursal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(15,42,35,.22), 0 12px 26px rgba(15,42,35,.12);
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.85); }
}
/* Mobile: marco más chico + fotos apiladas vertical separadas por divider */
@media (max-width: 768px) {
  #sucursales .suc-bg-frame {
    inset: 12px !important;
    border-radius: 14px !important;
  }
  #sucursales .suc-bg-photos {
    grid-template-columns: 1fr !important;
    grid-template-rows: 1fr 1fr !important;
  }
  #sucursales .suc-bg-photos > div:first-child {
    border-right: none !important;
    border-bottom: 2px solid #1A3028;
  }
}
.team-photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  position: relative;
}
/* Placeholder hasta que tengas fotos reales */
.team-photo.ph {
  background:
    repeating-linear-gradient(45deg, rgba(16,185,129,.08) 0 10px, rgba(16,185,129,.12) 10px 20px),
    var(--accent-bg);
  display: grid;
  place-items: center;
}
.team-photo.ph::before {
  content: attr(data-emoji);
  font-size: 72px;
  filter: drop-shadow(0 4px 12px rgba(16,185,129,.2));
}
.team-info { padding: 22px 20px; text-align: left; }
.team-info h4 {
  font-family: 'Varela Round', sans-serif;
  font-size: 18px;
  color: var(--text);
  margin: 0 0 4px 0;
}
.team-role {
  font-size: 13px;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 10px;
}
.team-bio {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   PELUQUERÍA — Antes/Después con slider
   ═══════════════════════════════════════════════════════════════ */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.ba-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, border-color .3s;
}
.ba-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-border);
}
.ba-compare {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
}
.ba-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
/* Placeholders — borrarlos cuando haya fotos reales */
.ba-img.ph-before {
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,.2) 0 14px, rgba(0,0,0,.12) 14px 28px),
    linear-gradient(135deg, #78716C, #57534E);
  display: grid; place-items: center;
  font-family: 'Varela Round', sans-serif;
  font-size: 28px; color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.ba-img.ph-before::before { content: "ANTES"; }
.ba-img.ph-after {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.12) 0 14px, rgba(255,255,255,.22) 14px 28px),
    linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: grid; place-items: center;
  font-family: 'Varela Round', sans-serif;
  font-size: 28px; color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
  clip-path: inset(0 0 0 50%);
}
.ba-img.ph-after::before { content: "DESPUÉS"; }
.ba-img.ba-after { clip-path: inset(0 0 0 50%); }

.ba-label {
  position: absolute;
  top: 14px;
  z-index: 2;
  background: rgba(255,255,255,.95);
  color: var(--text);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  text-shadow: none;
}
.ba-label-before { left: 14px; }
.ba-label-after { right: 14px; }
.ba-divider {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 3px;
  background: white;
  box-shadow: 0 0 14px rgba(0,0,0,.3);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
}
.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  display: grid; place-items: center;
  color: var(--accent-dark);
  font-size: 18px;
  pointer-events: none;
  z-index: 3;
}
.ba-info {
  padding: 16px 20px;
  text-align: left;
}
.ba-info strong {
  font-family: 'Varela Round', sans-serif;
  font-size: 16px;
  display: block;
  margin-bottom: 2px;
  color: var(--text);
}
.ba-info span {
  font-size: 13px;
  color: var(--text-3);
}

@media (max-width: 900px) {
  .ba-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIOS — Cards auténticas con avatar + footer (mantienen marquee)
   ═══════════════════════════════════════════════════════════════ */
.review-card .testi-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.review-card .testi-photo {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Varela Round', sans-serif;
  font-size: 18px; font-weight: 700;
  color: white;
  letter-spacing: .02em;
  flex-shrink: 0;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--accent-border);
  background-size: cover; background-position: center;
}
.review-card .testi-photo.ph-1 { background: linear-gradient(135deg, #F4A06A, #E85D5D); }
.review-card .testi-photo.ph-2 { background: linear-gradient(135deg, #10B981, #059669); }
.review-card .testi-photo.ph-3 { background: linear-gradient(135deg, #E8C065, #C49A3A); }
.review-card .testi-photo.ph-4 { background: linear-gradient(135deg, #8B4A2B, #5C3A1E); }
.review-card .testi-photo.ph-5 { background: linear-gradient(135deg, #E85D5D, #C94545); }
.review-card .testi-photo.ph-6 { background: linear-gradient(135deg, #9DCDE8, #5A9BC2); }
.review-card .testi-meta strong {
  display: block;
  font-family: 'Varela Round', sans-serif;
  font-size: 16px; color: var(--text);
  font-weight: 700;
  line-height: 1.2;
}
.review-card .testi-pet {
  font-size: 12px; color: var(--text-3);
  display: flex; align-items: center; gap: 4px;
  margin-top: 3px;
  font-weight: 600;
}
.review-card .testi-stars {
  color: #FBBF24; font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.review-card .testi-quote {
  font-size: 14.5px; line-height: 1.6;
  color: var(--text);
  position: relative;
  padding-left: 18px;
  font-style: normal;
  margin: 0 0 14px 0;
  font-weight: 500;
}
.review-card .testi-quote::before {
  content: '"';
  position: absolute; left: -4px; top: -16px;
  font-family: 'Varela Round', sans-serif;
  font-size: 50px; color: var(--accent);
  opacity: .35; line-height: 1;
}
.review-card .testi-footer {
  margin-top: auto; padding-top: 12px;
  border-top: 1px dashed var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.review-card .testi-source {
  display: flex; align-items: center; gap: 4px;
  font-weight: 800;
}
.review-card .testi-source.g { color: #4285F4; }   /* Google azul */
.review-card .testi-source.w { color: #25D366; }   /* WhatsApp verde */
/* Aseguro flex column para que el footer quede al fondo */
.review-card { display: flex; flex-direction: column; }


