/* ================================================
   VARIABLES & RESET
================================================ */
:root {
  --red:           #E31B23;
  --red-dark:      #B71C1C;
  --red-darker:    #8B0000;
  --red-tint:      rgba(227, 27, 35, 0.10);
  --red-tint-lg:   rgba(227, 27, 35, 0.18);
  --white:         #FFFFFF;
  --off-white:     #F8F8F8;
  --text-1:        #1A1A1A;
  --text-2:        #555555;
  --text-3:        #888888;
  --border:        rgba(0, 0, 0, 0.08);
  --radius-xs:     6px;
  --radius-sm:     10px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     36px;
  --shadow-sm:     0 2px 12px rgba(0,0,0,.07);
  --shadow-md:     0 8px 32px rgba(0,0,0,.11);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.14);
  --shadow-red:    0 8px 32px rgba(227,27,35,.30);
  --shadow-red-lg: 0 16px 48px rgba(227,27,35,.40);
  --trans:         all .3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-1);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ================================================
   LAYOUT UTILITIES
================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.section-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-tint);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-header { text-align: center; margin-bottom: 60px; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ================================================
   SCROLL ANIMATIONS
================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s ease, transform .75s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity .8s ease;
}
.fade-in.visible { opacity: 1; }

.slide-right {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .75s ease, transform .75s ease;
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

/* ================================================
   BUTTONS
================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-red { background: var(--red); color: var(--white); box-shadow: var(--shadow-red); }
.btn-red:hover { background: var(--red-dark); box-shadow: var(--shadow-red-lg); }

.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: #f5f5f5; box-shadow: var(--shadow-md); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.65);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-green { background: #25d366; color: var(--white); box-shadow: 0 8px 30px rgba(37,211,102,.30); }
.btn-green:hover { background: #1dab55; box-shadow: 0 12px 40px rgba(37,211,102,.40); }

/* ================================================
   NAVBAR
================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 4px 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,.09);
  border-radius: 0;
  transition: top .4s ease, left .4s ease, right .4s ease,
              padding .4s ease, border-radius .4s ease,
              box-shadow .4s ease, background .4s ease;
}

.navbar.scrolled {
  top: 12px;
  left: 40px;
  right: 40px;
  padding: 2px 16px;
  border-radius: 100px;
  box-shadow: 0 8px 40px rgba(0,0,0,.16);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo image wrapper */
.nav-logo { display: flex; align-items: center; }

.nav-logo-img-wrap {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 82px;
  width: auto;
  display: block;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color .25s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width .3s ease;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: 'Poppins', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 100px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--trans);
  box-shadow: var(--shadow-red);
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: var(--shadow-red-lg); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-1);
  transition: color .2s ease;
}
.mobile-nav a:hover { color: var(--red); }

.mobile-nav-close {
  position: absolute;
  top: 22px; right: 24px;
  background: none; border: none;
  font-size: 1.4rem;
  color: var(--text-2);
  cursor: pointer;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background .2s ease;
}
.mobile-nav-close:hover { background: var(--off-white); }

/* ================================================
   HERO SECTION
================================================ */
#inicio {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--red) 0%, var(--red-dark) 55%, var(--red-darker) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-dots {
  position: absolute; inset: 0;
  opacity: .045;
  background-image: radial-gradient(circle at 1.5px 1.5px, white 1.5px, transparent 0);
  background-size: 38px 38px;
  pointer-events: none;
}

.hero-paw-watermark {
  position: absolute;
  right: -60px; bottom: -60px;
  width: 480px; height: 480px;
  opacity: .13;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-blob-1 {
  top: -15%; right: -8%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(255,255,255,.09) 0%, transparent 70%);
  animation: blob-drift 10s ease-in-out infinite;
}
.hero-blob-2 {
  bottom: -20%; left: -10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,0,0,.18) 0%, transparent 70%);
  animation: blob-drift 13s ease-in-out infinite reverse;
}
@keyframes blob-drift {
  0%,100% { transform: translateY(0px) scale(1); }
  50%     { transform: translateY(-28px) scale(1.03); }
}

.hero-paw-accent {
  position: absolute;
  opacity: .18;
  pointer-events: none;
}

/* Two-column hero grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: hero-fadeup .8s ease both;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.4); opacity: .7; }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.13;
  margin-bottom: 22px;
  animation: hero-fadeup .8s .15s ease both;
}
.hero-title em {
  font-style: normal;
  position: relative;
  display: inline;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 6px;
  height: 4px;
  background: rgba(255,255,255,.35);
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 44px;
  animation: hero-fadeup .8s .30s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: hero-fadeup .8s .45s ease both;
}

.hero-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.18);
  margin: 44px 0 36px;
  animation: hero-fadeup .8s .6s ease both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: hero-fadeup .8s .75s ease both;
}

.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
}

/* Hero right image column */
.hero-img-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 40px;
  animation: hero-fadeup .9s .2s ease both;
}

.hero-img-frame {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.40);
  border: 3px solid rgba(255,255,255,.15);
  transition: transform .4s ease;
}
.hero-img-frame:hover { transform: translateY(-6px); }
.hero-img-frame img { width: 100%; display: block; }

@keyframes hero-fadeup {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================
   SERVICES SECTION
================================================ */
#servicios { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  opacity: 0;
  transform: translateY(28px);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  text-align: center;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(227,27,35,.12);
}
.service-card:hover::before { transform: scaleX(1); }

.services-grid.in-view .service-card {
  animation: card-in .65s cubic-bezier(.2,0,0,1) both;
}
.services-grid.in-view .service-card:nth-child(1) { animation-delay: .00s; }
.services-grid.in-view .service-card:nth-child(2) { animation-delay: .08s; }
.services-grid.in-view .service-card:nth-child(3) { animation-delay: .16s; }
.services-grid.in-view .service-card:nth-child(4) { animation-delay: .24s; }
.services-grid.in-view .service-card:nth-child(5) { animation-delay: .32s; }
.services-grid.in-view .service-card:nth-child(6) { animation-delay: .40s; }
.services-grid.in-view .service-card:nth-child(7) { animation-delay: .48s; }
.services-grid.in-view .service-card:nth-child(8) { animation-delay: .56s; }

@keyframes card-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.svc-icon {
  width: 68px; height: 68px;
  background: var(--red-tint);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: background .32s ease;
}
.svc-icon i { font-size: 1.65rem; color: var(--red); transition: color .32s ease; }
.service-card:hover .svc-icon { background: var(--red); }
.service-card:hover .svc-icon i { color: var(--white); }

.svc-name { font-size: .95rem; font-weight: 700; color: var(--text-1); margin-bottom: 8px; }
.svc-desc { font-size: .82rem; color: var(--text-2); line-height: 1.6; }

/* Home-visit banner */
.home-visit-banner {
  margin-top: 44px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-darker) 100%);
  border-radius: var(--radius-lg);
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.home-visit-banner::before,
.home-visit-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.home-visit-banner::before {
  width: 220px; height: 220px;
  background: rgba(255,255,255,.05);
  top: -70px; right: -50px;
}
.home-visit-banner::after {
  width: 160px; height: 160px;
  background: rgba(255,255,255,.04);
  bottom: -60px; right: 120px;
}
.banner-copy { position: relative; z-index: 1; }
.banner-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 5px;
}
.banner-sub { font-size: .9rem; color: rgba(255,255,255,.8); max-width: 500px; }

/* ================================================
   WHY CHOOSE US
================================================ */
#elegir {
  background: linear-gradient(145deg, var(--red) 0%, var(--red-darker) 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
#elegir::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,.05) 1.5px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.elegir-header .section-tag  { background: rgba(255,255,255,.15); color: var(--white); }
.elegir-header .section-title { color: var(--white); }
.elegir-header .section-sub   { color: rgba(255,255,255,.72); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: background .3s ease, transform .3s ease;
}
.stat-card:hover { background: rgba(255,255,255,.16); transform: translateY(-5px); }

.stat-icon-wrap {
  width: 58px; height: 58px;
  background: rgba(255,255,255,.14);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.stat-icon-wrap i { font-size: 1.4rem; color: var(--white); }

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number .suffix { font-size: 1.6rem; }

.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  margin-bottom: 6px;
}
.stat-desc { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.5; }

/* ================================================
   ABOUT SECTION
================================================ */
#nosotros { background: var(--off-white); }

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

.about-img-wrap { position: relative; }

/* Carrusel banner */
.about-carousel {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 48px;
}

.about-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f8f8f8;
  opacity: 0;
  transition: opacity .7s ease;
  display: block;
}
.about-slide.active { opacity: 1; }

.about-arr {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.88);
  color: var(--text-1);
  font-size: .95rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  transition: background .25s ease, color .25s ease, transform .25s ease;
  box-shadow: var(--shadow-sm);
}
.about-arr:hover { background: var(--red); color: var(--white); transform: translateY(-50%) scale(1.08); }
.about-arr-prev { left: 14px; }
.about-arr-next { right: 14px; }

.about-dots {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
}
.about-dot {
  width: 9px; height: 9px;
  border-radius: 100px;
  border: none;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  padding: 0;
  transition: all .35s ease;
}
.about-dot.active { background: var(--white); width: 24px; }



.about-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.about-p { font-size: .95rem; color: var(--text-2); line-height: 1.8; margin-bottom: 18px; }

.about-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 24px 0 36px; }
.about-features li { display: flex; align-items: center; gap: 12px; font-size: .93rem; color: var(--text-1); font-weight: 500; }
.about-features li .chk {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--red-tint);
  color: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem;
}

/* ================================================
   UBICACIÓN & HORARIOS
================================================ */
#ubicacion { background: var(--white); }

.ubicacion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 52px;
}

.ubicacion-mapa-col {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
  height: 480px;
}
.ubicacion-mapa-col iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.mapa-facade {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #f0f0f0 0%, #e4e4e4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mapa-facade-inner {
  text-align: center;
  padding: 32px;
}
.mapa-facade-icon {
  width: 64px; height: 64px;
  background: var(--red-tint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.mapa-facade-icon i { font-size: 1.6rem; color: var(--red); }
.mapa-facade-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 6px;
}
.mapa-facade-addr {
  font-size: .88rem;
  color: var(--text-2);
  margin-bottom: 22px;
  line-height: 1.5;
}
.mapa-facade-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
  box-shadow: var(--shadow-red);
}
.mapa-facade-btn:hover { background: var(--red-dark); transform: translateY(-2px); }

.ubicacion-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.info-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(227,27,35,.18);
}

.info-card-icon {
  width: 50px; height: 50px;
  flex-shrink: 0;
  background: var(--red-tint);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s ease;
}
.info-card-icon i { font-size: 1.2rem; color: var(--red); transition: color .3s ease; }
.info-card:hover .info-card-icon { background: var(--red); }
.info-card:hover .info-card-icon i { color: var(--white); }

.info-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-3);
  margin-bottom: 6px;
}
.info-card-val {
  font-size: .95rem;
  color: var(--text-1);
  font-weight: 500;
  line-height: 1.55;
}
.info-card-val a { color: var(--red); }
.info-card-val a:hover { opacity: .75; }

.horario-rows { display: flex; flex-direction: column; gap: 8px; }
.horario-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.horario-dia { font-size: .9rem; color: var(--text-1); font-weight: 500; }
.horario-hora {
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--red);
  background: var(--red-tint);
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.horario-hora.cerrado { color: var(--text-3); background: rgba(0,0,0,.05); }

.footer-ubicacion-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  background: var(--red);
  padding: 10px 20px;
  border-radius: 100px;
  transition: background .25s ease, transform .25s ease;
}
.footer-ubicacion-btn:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ================================================
   CONTACT SECTION
================================================ */
#contacto { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-headline { font-size: 1.65rem; font-weight: 800; color: var(--text-1); margin-bottom: 12px; line-height: 1.25; }
.contact-desc { font-size: .95rem; color: var(--text-2); line-height: 1.75; margin-bottom: 36px; }

.contact-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }

.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--red-tint);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
}
.contact-item-icon i { color: var(--red); font-size: 1rem; }
.contact-item-lbl {
  font-family: 'Poppins', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-3);
  margin-bottom: 3px;
}
.contact-item-val { font-size: .93rem; color: var(--text-1); font-weight: 500; line-height: 1.5; }

.map-embed {
  margin-top: 32px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border);
}
.map-embed iframe {
  width: 100%;
  height: 220px;
  display: block;
  border: none;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.form-title  { font-size: 1.35rem; font-weight: 800; margin-bottom: 6px; }
.form-sub    { font-size: .875rem; color: var(--text-2); margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 7px;
  letter-spacing: .3px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-xs);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text-1);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-tint);
}
.form-group textarea { height: 110px; resize: none; }

.motivo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.motivo-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-2);
  cursor: pointer;
  transition: all .2s ease;
  line-height: 1;
}
.motivo-chip:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-tint);
}
.motivo-chip.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

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

.pet-extra {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .45s ease, opacity .35s ease;
}
.pet-extra.visible {
  max-height: 400px;
  opacity: 1;
}

.form-btn {
  width: 100%;
  padding: 15px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xs);
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.form-btn:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-red); }

/* ================================================
   FOOTER
================================================ */
footer {
  background: #100808;
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
  margin-bottom: 52px;
}

.footer-logo-wrap {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
}
.footer-logo-wrap img { height: 60px; width: auto; display: block; }

.footer-tagline {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin-bottom: 22px;
}

.socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-xs);
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  transition: var(--trans);
}
.social-btn:hover { background: var(--red); color: var(--white); transform: translateY(-3px); }

.footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.45); transition: color .2s ease; }
.footer-links a:hover { color: var(--red); }

.footer-contact-row { display: flex; gap: 9px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact-row i { color: var(--red); font-size: .875rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-row span { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.5; }

.footer-divider { height: 1px; background: rgba(255,255,255,.07); margin-bottom: 28px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.3); }
.footer-copy span { color: var(--red); }

.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.3); transition: color .2s ease; }
.footer-legal a:hover { color: var(--red); }

/* ================================================
   CHAT FLOTANTE
================================================ */
.chat-widget {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.chat-toggle {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(227,27,35,.45);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: chat-pulse 2.5s ease-in-out infinite;
}
.chat-toggle:hover { transform: scale(1.1); animation: none; }
@keyframes chat-pulse {
  0%   { transform: scale(1);   opacity: .7; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

.chat-icon-close { display: none; }
.chat-widget.open .chat-icon-open  { display: none; }
.chat-widget.open .chat-icon-close { display: block; }
.chat-widget.open .chat-toggle { animation: none; }

.chat-window {
  width: 360px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  overflow: hidden;
  display: none;
  flex-direction: column;
  transform: translateY(16px) scale(.97);
  opacity: 0;
  transition: transform .35s cubic-bezier(.2,0,0,1), opacity .3s ease;
}
.chat-widget.open .chat-window {
  display: flex;
  transform: translateY(0) scale(1);
  opacity: 1;
}

.chat-header {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.chat-header-info { flex: 1; }
.chat-header-name {
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.chat-header-clinic { font-size: .72rem; color: rgba(255,255,255,.75); }

.chat-close {
  background: rgba(255,255,255,.15);
  border: none;
  color: var(--white);
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: background .2s ease;
  flex-shrink: 0;
}
.chat-close:hover { background: rgba(255,255,255,.3); }

.chat-messages {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 280px;
  overflow-y: auto;
  background: #f9f9f9;
}

.chat-msg {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  animation: msg-in .3s ease;
}
@keyframes msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chat-msg-bubble {
  font-size: .82rem;
  line-height: 1.55;
  padding: 10px 13px;
  border-radius: 16px;
  max-width: 85%;
  white-space: pre-line;
}

.chat-msg.bot .chat-msg-bubble {
  background: var(--white);
  color: var(--text-1);
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.chat-msg.bot .chat-msg-icon {
  width: 28px; height: 28px;
  background: var(--red-tint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.chat-msg.user {
  flex-direction: row-reverse;
}
.chat-msg.user .chat-msg-bubble {
  background: var(--red);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.chat-quick-replies {
  padding: 12px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.chat-qr-btn {
  font-family: 'Poppins', sans-serif;
  font-size: .74rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-2);
  cursor: pointer;
  transition: all .2s ease;
  line-height: 1;
}
.chat-qr-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-tint);
}
.chat-qr-back {
  width: 100%;
  text-align: center;
  color: var(--text-3);
  border-color: transparent;
  font-size: .72rem;
}
.chat-qr-back:hover { color: var(--red); background: transparent; border-color: transparent; }

@media (max-width: 480px) {
  .chat-widget { right: 12px; bottom: 100px; }
  .chat-window { width: calc(100vw - 24px); }
  .wa-float { right: 12px; bottom: 28px; }
}

/* ================================================
   MODALS
================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  max-width: 540px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.2,0,0,1);
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--off-white);
  color: var(--text-2);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.modal-close:hover { background: var(--red); color: var(--white); }

.modal-icon {
  width: 56px; height: 56px;
  background: var(--red-tint);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.modal-icon i { font-size: 1.5rem; color: var(--red); }

.modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 20px;
}

.modal-body p {
  font-size: .92rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 14px;
}
.modal-body h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin: 20px 0 6px;
}

/* ================================================
   FLOATING WHATSAPP
================================================ */
.wa-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 997;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  cursor: pointer;
  animation: wa-pulse 2.5s ease-in-out infinite;
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.12); animation: none; }
.wa-float i { font-size: 1.8rem; color: var(--white); }

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--text-1);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--text-1);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .7; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hero-grid        { grid-template-columns: 1fr; }
  .hero-img-col     { display: none; }
  .hero-content     { padding-bottom: 80px; }
  .about-bottom     { grid-template-columns: 1fr; gap: 28px; }
  .about-carousel   { height: 400px; }
  .contact-grid     { grid-template-columns: 1fr; gap: 48px; }
  .ubicacion-grid     { grid-template-columns: 1fr; gap: 36px; }
  .ubicacion-mapa-col { height: 300px; }
}

@media (max-width: 768px) {
  .section            { padding: 72px 0; }
  .nav-links, .nav-cta{ display: none; }
  .hamburger          { display: flex; }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .hero-stats         { gap: 28px; }
  .home-visit-banner  { flex-direction: column; text-align: center; }
  .footer-grid        { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .contact-form       { padding: 32px 24px; }
  .form-row           { grid-template-columns: 1fr; }
  .about-carousel     { height: 260px; border-radius: var(--radius-lg); margin-bottom: 32px; }
  .hero-content       { padding-top: 120px; }
}

@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr; }
  .hero-btns     { flex-direction: column; }
  .hero-btns .btn{ justify-content: center; }
}

/* ================================================
   PERFORMANCE EN MÓVIL
================================================ */
@media (max-width: 768px) {
  /* Animaciones más rápidas y ligeras */
  .fade-up {
    transform: translateY(16px);
    transition: opacity .45s ease, transform .45s ease;
  }
  .fade-in {
    transition: opacity .45s ease;
  }
  .slide-right {
    transform: translateX(-20px);
    transition: opacity .45s ease, transform .45s ease;
  }

  /* Desactiva efectos costosos en móvil */
  .navbar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .hero-blob-1,
  .hero-blob-2 {
    display: none;
  }
  .hero-dots {
    display: none;
  }
  .stat-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
