/* ==========================================================================
   CLÍNICA VETERINARIA PET ZOO - SISTEMA DE ESTILOS & IDENTIDAD DE MARCA
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & DESIGN TOKENS (IDENTIDAD BASADA EN EL LOGO OFICIAL)
   -------------------------------------------------------------------------- */
:root {
  /* Paleta Principal Neutros */
  --bg-cream: #FAF7F5;
  --bg-cream-alt: #F5EDF8;
  --bg-white: #FFFFFF;
  
  /* Morado / Púrpura (#7B4E8E - Identidad oficial 'pet' y siluetas) */
  --color-purple: #7B4E8E;
  --color-purple-hover: #693E7C;
  --color-purple-dark: #5C2D6D;
  --color-purple-deep: #3A174A;
  --color-purple-light: #F6EEF9;
  --color-purple-tint: rgba(123, 78, 142, 0.08);

  /* Púrpura Vibrante (#8E4585 - Acentos y contrastes enriquecidos) */
  --color-purple-vibrant: #8E4585;
  --color-purple-vibrant-light: #FDF2FA;

  /* Naranja Intenso (#F28C28 / #E87722 - Identidad oficial 'Zoo' y óvalos) */
  --color-orange: #F28C28;
  --color-orange-hover: #DF7A17;
  --color-orange-dark: #E87722;
  --color-orange-deep: #C45D0B;
  --color-orange-light: #FFF5EC;
  --color-orange-tint: rgba(242, 140, 40, 0.12);

  /* Mapeo Semántico Unificado */
  --color-teal: var(--color-purple);
  --color-teal-dark: var(--color-purple-dark);
  --color-teal-deep: var(--color-purple-deep);
  --color-teal-light: var(--color-purple-light);
  --color-teal-tint: var(--color-purple-tint);

  --color-olive: var(--color-purple-vibrant);
  --color-olive-dark: var(--color-purple-hover);
  --color-olive-light: var(--color-purple-vibrant-light);
  --color-olive-tint: rgba(142, 69, 133, 0.12);

  --color-yellow: var(--color-orange);
  --color-yellow-light: var(--color-orange-light);
  --color-yellow-hover: var(--color-orange-hover);

  /* Alertas / Urgencias */
  --color-emergency: #E85D04;
  --color-emergency-light: #FFF0E6;

  /* Textos y Tipografía */
  --text-main: #1F1528;
  --text-muted: #544961;
  --text-light: #857593;
  --text-white: #FFFFFF;

  --border-light: rgba(123, 78, 142, 0.10);
  --border-card: rgba(123, 78, 142, 0.14);

  /* Tipografías */
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Bordes & Sombras */
  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(31, 21, 40, 0.04);
  --shadow-md: 0 12px 30px rgba(31, 21, 40, 0.07);
  --shadow-lg: 0 20px 45px rgba(31, 21, 40, 0.10);
  --shadow-teal: 0 14px 32px rgba(123, 78, 142, 0.28);
  --shadow-yellow: 0 10px 24px rgba(242, 140, 40, 0.32);

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --container-max: 1240px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & HEADINGS
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 400;
}

.highlight-teal {
  color: var(--color-teal);
  position: relative;
}

.highlight-yellow {
  color: var(--color-yellow);
}

.text-accent-underline {
  background: linear-gradient(120deg, transparent 0%, rgba(243, 212, 0, 0.4) 100%);
  border-radius: 4px;
  padding-inline: 4px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-header.text-left {
  text-align: left;
  margin-inline: 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--color-teal-light);
  color: var(--color-teal-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-badge.badge-white {
  background: rgba(255, 255, 255, 0.15);
  color: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.section-header h2 {
  margin-bottom: 0.8rem;
}

.section-header p {
  font-size: 1.15rem;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & CTAs
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
  user-select: none;
}

.btn-primary {
  background-color: var(--color-teal);
  color: var(--bg-white);
  box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
  background-color: var(--color-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(8, 127, 120, 0.32);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  background-color: #20BA59;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.38);
}

.btn-yellow {
  background-color: var(--color-yellow);
  color: var(--text-main);
  box-shadow: var(--shadow-yellow);
  font-weight: 800;
}

.btn-yellow:hover {
  background-color: var(--color-yellow-hover);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--bg-white);
  color: var(--color-teal-dark);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: var(--bg-cream);
  transform: translateY(-2px);
}

.btn-emergency {
  background-color: var(--color-yellow);
  color: var(--color-teal-deep);
  font-weight: 800;
  box-shadow: var(--shadow-yellow);
}

.btn-emergency:hover {
  background-color: #FFFFFF;
  color: var(--color-teal-dark);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 1.15rem 2.4rem;
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   5. HEADER & NAVBAR
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background-color: rgba(250, 248, 243, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(23, 51, 58, 0.06);
  border-bottom: 1px solid rgba(23, 51, 58, 0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-weight: 800;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  background: #FFFFFF;
  padding: 2px;
  box-shadow: 0 2px 8px rgba(45, 74, 34, 0.12);
  border: 1.5px solid rgba(107, 142, 35, 0.25);
}

.brand-logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-logo-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-teal);
  letter-spacing: -0.02em;
}

.brand-logo-subtitle {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-olive);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-brand .brand-logo-img {
  border-color: rgba(184, 134, 11, 0.4);
}

.footer-brand .brand-logo-title {
  color: #FFFFFF;
}

.footer-brand .brand-logo-subtitle {
  color: #E2C562;
}

.brand-logo svg {
  width: 38px;
  height: 38px;
  color: var(--color-teal);
  flex-shrink: 0;
}

.brand-logo span {
  color: var(--color-teal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-teal);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--color-teal);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.emergency-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background-color: var(--color-emergency-light);
  color: var(--color-emergency);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(230, 57, 70, 0.2);
  transition: all var(--transition-fast);
}

.emergency-pill:hover {
  background-color: var(--color-emergency);
  color: #FFFFFF;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-emergency);
  display: inline-block;
  animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.emergency-pill:hover .pulse-dot {
  background-color: #FFFFFF;
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 1; box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 7px rgba(230, 57, 70, 0); }
  100% { transform: scale(0.9); opacity: 1; box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-btn span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 360px;
  height: 100vh;
  background-color: var(--bg-cream);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-normal);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(23, 51, 58, 0.4);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav-links .nav-link {
  font-size: 1.25rem;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   6. SECTION 2: HERO PRINCIPAL
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 6.5rem;
  padding-bottom: 3.5rem;
  background-color: var(--bg-cream);
  overflow: hidden;
}

.hero-background-composition {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-img-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  z-index: 1;
}

.hero-dog-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 40%;
}

/* Soft gradient overlay to merge cream background flawlessly */
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #FAF7F5 38%, rgba(250, 247, 245, 0.85) 52%, rgba(250, 247, 245, 0) 78%);
  z-index: 2;
}

.hero-shape-paw {
  position: absolute;
  top: 15%;
  left: 3%;
  width: 120px;
  height: 120px;
  opacity: 0.05;
  color: var(--color-teal);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 580px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-teal);
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.4rem;
  animation: fadeInUp 0.8s 0.15s ease backwards;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 2.6rem;
  line-height: 1.55;
  max-width: 520px;
  animation: fadeInUp 0.8s 0.25s ease backwards;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 2.8rem;
  animation: fadeInUp 0.8s 0.35s ease backwards;
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-main);
  transition: all var(--transition-fast);
  padding: 0.4rem 0;
}

.hero-text-link .link-arrow {
  transition: transform var(--transition-fast);
  font-size: 1.1rem;
  line-height: 1;
}

.hero-text-link:hover {
  color: var(--color-teal);
}

.hero-text-link:hover .link-arrow {
  transform: translateX(4px);
}

.hero-trust-line {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  animation: fadeInUp 0.8s 0.45s ease backwards;
}

/* --------------------------------------------------------------------------
   7. SECTION 3: BARRA DE CONFIANZA (STATS)
   -------------------------------------------------------------------------- */
.trust-bar-section {
  background-color: var(--color-teal-dark);
  color: var(--bg-white);
  padding: 2.75rem 0;
  position: relative;
  z-index: 10;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.stat-icon {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
  color: var(--color-yellow);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 800;
  color: var(--bg-white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-number .stat-accent {
  color: var(--color-yellow);
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

/* --------------------------------------------------------------------------
   8. SECTION 4: SERVICIOS (EDITORIAL, FOTOGRÁFICO & HUMANO)
   -------------------------------------------------------------------------- */
.services-section {
  padding: 8rem 0 6rem;
  background-color: var(--bg-cream);
}

.services-editorial-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Columna Izquierda: Fotografía Gran Formato Protagonista */
.services-photo-column {
  position: relative;
  width: 100%;
}

.services-main-photo-wrapper {
  width: 100%;
  height: 580px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(23, 51, 58, 0.08);
}

.services-main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-main-photo-wrapper:hover .services-main-photo {
  transform: scale(1.03);
}

/* Columna Derecha: Tipografía Editorial y 3 Grupos */
.services-content-column {
  display: flex;
  flex-direction: column;
}

.services-main-heading {
  font-size: clamp(2.3rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-main);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.services-subcopy {
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2.8rem;
}

/* 3 Grupos de Servicios */
.services-groups-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.8rem;
}

.services-group-block {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(23, 51, 58, 0.08);
}

.services-group-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.services-group-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.services-group-tags {
  font-size: 0.92rem;
  color: var(--color-teal);
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.services-group-quote {
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0;
  font-style: normal;
}

/* Único CTA al final */
.services-action-footer {
  padding-top: 0.5rem;
}

.services-single-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-teal);
  transition: all var(--transition-fast);
  padding: 0.4rem 0;
}

.services-single-cta .link-arrow {
  transition: transform var(--transition-fast);
  font-size: 1.15rem;
  line-height: 1;
}

.services-single-cta:hover {
  color: var(--color-teal-dark);
}

.services-single-cta:hover .link-arrow {
  transform: translateX(5px);
}

/* --------------------------------------------------------------------------
   BLOQUE INDEPENDIENTE DE EMERGENCIA (CLEAN DEEP TEAL)
   -------------------------------------------------------------------------- */
.services-emergency-strip {
  margin-top: 5rem;
  background-color: var(--color-teal-dark);
  border-radius: 20px;
  padding: 2.2rem 2.8rem;
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 12px 30px rgba(7, 91, 87, 0.15);
}

.services-emergency-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.coral-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #E63946;
  flex-shrink: 0;
}

.services-emergency-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bg-white);
  margin-bottom: 0.2rem;
}

.services-emergency-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.services-emergency-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-white);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.services-emergency-link:hover {
  border-color: #FFFFFF;
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   9. SECTION 5: SECCIÓN EMOCIONAL (COLLAGE)
   -------------------------------------------------------------------------- */
.emotional-section {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-cream-alt) 100%);
  position: relative;
  overflow: hidden;
}

.emotional-bg-paw {
  position: absolute;
  right: -5%;
  top: 10%;
  width: 450px;
  height: 450px;
  opacity: 0.04;
  color: var(--color-teal);
  pointer-events: none;
}

.emotional-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.emotional-collage-wrapper {
  position: relative;
  min-height: 480px;
}

.emotional-main-photo-card {
  width: 82%;
  height: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.emotional-main-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.emotional-floating-card-1 {
  position: absolute;
  top: -20px;
  right: 0;
  width: 170px;
  height: 170px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bg-white);
  transform: rotate(6deg);
  transition: transform 0.4s ease;
}

.emotional-floating-card-2 {
  position: absolute;
  bottom: -20px;
  right: 40px;
  width: 190px;
  height: 190px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bg-white);
  transform: rotate(-5deg);
  transition: transform 0.4s ease;
}

.emotional-collage-wrapper:hover .emotional-floating-card-1 {
  transform: rotate(3deg) scale(1.05);
}

.emotional-collage-wrapper:hover .emotional-floating-card-2 {
  transform: rotate(-2deg) scale(1.05);
}

.emotional-floating-card-1 img,
.emotional-floating-card-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.emotional-content h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.emotional-content p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.emotional-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.emotional-feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  font-size: 1.05rem;
}

.emotional-feature-item svg {
  color: var(--color-teal);
  background: var(--color-teal-light);
  padding: 6px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

/* --------------------------------------------------------------------------
   10. SECTION 6: EQUIPO VETERINARIO
   -------------------------------------------------------------------------- */
.team-section {
  padding: 6.5rem 0;
  background-color: var(--bg-cream-alt);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.team-photo-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.team-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo-wrapper img {
  transform: scale(1.06);
}

.team-exp-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(23, 51, 58, 0.85);
  color: var(--bg-white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
}

.team-info {
  padding: 1.4rem;
  text-align: center;
}

.team-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-specialty {
  color: var(--color-teal);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.team-cta-wrapper {
  text-align: center;
  margin-top: 3rem;
}

/* --------------------------------------------------------------------------
   12. SECTION 8: INSTALACIONES
   -------------------------------------------------------------------------- */
.facilities-section {
  padding: 7rem 0;
  background-color: var(--bg-cream);
}

.facilities-collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 240px 240px;
  gap: 1.25rem;
}

.facility-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.facility-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.facility-item:hover img {
  transform: scale(1.06);
}

.facility-item-1 {
  grid-column: span 7;
  grid-row: span 1;
}

.facility-item-2 {
  grid-column: span 5;
  grid-row: span 2;
}

.facility-item-3 {
  grid-column: span 3;
  grid-row: span 1;
}

.facility-item-4 {
  grid-column: span 4;
  grid-row: span 1;
}

.facility-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(23, 51, 58, 0.82);
  color: var(--bg-white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.facility-item:hover .facility-tag {
  background: var(--color-teal);
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   13. SECTION 9: TESTIMONIOS
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: 6.5rem 0;
  background-color: var(--bg-cream-alt);
}

.testimonials-wrapper {
  position: relative;
  max-width: 1050px;
  margin-inline: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-teal);
}

.testimonial-stars {
  color: var(--color-yellow);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1.02rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.author-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-yellow);
}

.author-info h5 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.author-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.testimonials-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.google-rating-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-white);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------------------
   14. SECTION 10: GALERÍA DE MASCOTAS
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: 7rem 0;
  background-color: var(--bg-cream);
}

.pets-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 240px 240px;
  gap: 1.25rem;
}

.pet-mosaic-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.pet-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pet-mosaic-item:hover img {
  transform: scale(1.08);
}

.pet-mosaic-item-1 {
  grid-column: span 4;
  grid-row: span 2;
}

.pet-mosaic-item-2 {
  grid-column: span 4;
  grid-row: span 1;
}

.pet-mosaic-item-3 {
  grid-column: span 4;
  grid-row: span 1;
}

.pet-mosaic-item-4 {
  grid-column: span 3;
  grid-row: span 1;
}

.pet-mosaic-item-5 {
  grid-column: span 5;
  grid-row: span 1;
}

.pet-name-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-main);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  backdrop-filter: blur(6px);
  transform: translateY(6px);
  opacity: 0.9;
  transition: all var(--transition-fast);
}

.pet-mosaic-item:hover .pet-name-badge {
  transform: translateY(0);
  background: var(--color-yellow);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   15. SECTION 11: CTA DE EMERGENCIAS 24/7
   -------------------------------------------------------------------------- */
.emergency-cta-section {
  padding: 4.5rem 0;
  background-color: var(--bg-cream);
}

.emergency-cta-banner {
  background: linear-gradient(135deg, var(--color-teal-dark) 0%, var(--color-teal-deep) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 3.5rem;
  position: relative;
  overflow: hidden;
  color: var(--bg-white);
  box-shadow: var(--shadow-teal);
}

.emergency-corner-shape {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: var(--color-yellow);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.emergency-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.emergency-cta-text h2 {
  color: var(--bg-white);
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  margin-bottom: 0.8rem;
}

.emergency-cta-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.emergency-btn-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.emergency-phone-display {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-yellow);
  margin-top: 1.2rem;
}

.emergency-peeking-pet {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.emergency-peeking-pet img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--color-yellow);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* --------------------------------------------------------------------------
   16. SECTION 12: UBICACIÓN Y CONTACTO (EDITORIAL & LIMPIO)
   -------------------------------------------------------------------------- */
.location-section {
  padding: 8rem 0 7rem;
  background-color: var(--bg-cream-alt);
}

.location-subcopy {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.location-editorial-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
}

.location-visual-column {
  position: relative;
  width: 100%;
}

.location-map-frame {
  width: 100%;
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(23, 51, 58, 0.08);
  border: 1px solid rgba(23, 51, 58, 0.06);
}

.location-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location-details-column {
  display: flex;
  flex-direction: column;
}

.location-info-row {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(23, 51, 58, 0.1);
}

.location-info-row:last-of-type {
  border-bottom: none;
  margin-bottom: 1.5rem;
  padding-bottom: 0;
}

.location-info-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-teal);
  margin-bottom: 0.5rem;
}

.location-info-title {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}

.location-info-desc {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

.location-actions-row {
  padding-top: 0.5rem;
}

.location-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--color-teal);
  transition: all var(--transition-fast);
  padding: 0.3rem 0;
}

.location-map-btn .link-arrow {
  transition: transform var(--transition-fast);
  font-size: 1.15rem;
  line-height: 1;
}

.location-map-btn:hover {
  color: var(--color-teal-dark);
}

.location-map-btn:hover .link-arrow {
  transform: translateX(5px);
}

/* --------------------------------------------------------------------------
   17. SECTION 13: CTA FINAL EMOCIONAL
   -------------------------------------------------------------------------- */
.final-cta-section {
  padding: 5rem 0 6rem;
  background-color: var(--bg-cream);
}

.final-cta-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.final-cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(36, 20, 46, 0.95) 0%, rgba(92, 45, 109, 0.84) 55%, rgba(123, 78, 142, 0.5) 100%);
  z-index: 2;
}

.final-cta-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
  padding: 4rem;
  color: var(--bg-white);
}

.final-cta-content h2 {
  color: var(--bg-white);
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.final-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

/* --------------------------------------------------------------------------
   18. SECTION 14: FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #23122C;
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 0 2rem;
  font-size: 0.95rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-logo {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--color-teal);
  transform: translateY(-2px);
}

.footer-col h5 {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-yellow);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   19. SECTION 15: BOTÓN FLOTANTE WHATSAPP (ESTILO REFERENCIA)
   -------------------------------------------------------------------------- */
.floating-whatsapp-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.floating-whatsapp-container:hover {
  transform: translateY(-3px);
}

.floating-whatsapp-pill {
  background-color: #FFFFFF;
  color: #17333A;
  padding: 0.8rem 1.45rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.live-dot-green {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #25D366;
  flex-shrink: 0;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

.floating-whatsapp-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  flex-shrink: 0;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.floating-whatsapp-container:hover .floating-whatsapp-circle {
  background-color: #20BA59;
  transform: scale(1.05);
}

.whatsapp-icon-svg {
  width: 34px;
  height: 34px;
  display: block;
}

/* --------------------------------------------------------------------------
   20. MODAL INTERACTIVO DE AGENDAMIENTO (ESPACIOSO & CONFEDENCIA)
   -------------------------------------------------------------------------- */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 51, 58, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.booking-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  background: var(--bg-white);
  border-radius: 28px;
  width: 100%;
  max-width: 640px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  transition: all var(--transition-normal);
}

.booking-modal-overlay.active .booking-modal {
  transform: translateY(0) scale(1);
}

.booking-modal-header {
  background: var(--color-teal);
  color: #FFFFFF;
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-shrink: 0;
}

.booking-modal-header h3 {
  color: #FFFFFF;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.modal-header-sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  margin: 0;
}

.modal-close-btn {
  color: #FFFFFF;
  font-size: 2rem;
  line-height: 1;
  opacity: 0.8;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity var(--transition-fast);
}

.modal-close-btn:hover {
  opacity: 1;
}

.booking-modal-body {
  padding: 2.2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-section-group {
  margin-bottom: 1.6rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(23, 51, 58, 0.08);
}

.modal-section-group:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 1rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.3rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.field-trust-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.35rem;
  line-height: 1.35;
}

.pet-type-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.pet-type-btn {
  background: #FAF8F3;
  border: 1.5px solid rgba(23, 51, 58, 0.12);
  border-radius: 12px;
  padding: 0.85rem 0.6rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--text-main);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pet-type-btn.active, 
.pet-type-btn:hover {
  border-color: var(--color-teal);
  background-color: var(--color-purple-light);
  color: var(--color-teal-dark);
}

.form-control {
  width: 100%;
  padding: 0.92rem 1.15rem;
  border-radius: 12px;
  border: 1.5px solid rgba(23, 51, 58, 0.14);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-main);
  background: #FAF8F3;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-teal);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(123, 78, 142, 0.18);
}

.btn-submit-booking {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1.1rem 1.6rem;
  font-size: 1.1rem;
  font-weight: 800;
  justify-content: center;
  border-radius: 14px;
}

.modal-privacy-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   21. PÁGINA INDEPENDIENTE DE AGENDAMIENTO (agendar.html)
   -------------------------------------------------------------------------- */
.booking-page-body {
  background-color: var(--bg-cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.booking-page-header {
  background: var(--bg-white);
  border-bottom: 1px solid rgba(23, 51, 58, 0.08);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.booking-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.booking-back-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform var(--transition-fast);
}

.booking-back-link:hover {
  transform: translateX(-3px);
  color: var(--color-teal-dark);
}

.booking-page-main {
  flex: 1;
  padding: 3.5rem 0 5rem;
}

.booking-split-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: flex-start;
}

/* Columna Izquierda: Sidebar Sticky de Confianza */
.booking-sidebar {
  position: sticky;
  top: 6rem;
}

.booking-sidebar-card {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 2.5rem 2.2rem;
  border: 1px solid rgba(23, 51, 58, 0.08);
  box-shadow: 0 8px 30px rgba(23, 51, 58, 0.04);
}

.booking-sidebar-title {
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.booking-sidebar-desc {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.booking-trust-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 1.8rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid rgba(23, 51, 58, 0.08);
}

.booking-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.trust-check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-teal-light);
  color: var(--color-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.booking-trust-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

.booking-trust-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.booking-emergency-mini {
  background: var(--color-teal-light);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
}

.booking-emergency-mini span {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.booking-emergency-mini a {
  color: var(--color-teal-dark);
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  line-height: 1.35;
}

/* Columna Derecha: Formulario */
.booking-content-area {
  width: 100%;
}

.booking-full-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-card-block {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 1.8rem 2rem;
  border: 1px solid rgba(23, 51, 58, 0.08);
  box-shadow: 0 4px 20px rgba(23, 51, 58, 0.03);
}

.form-block-header {
  margin-bottom: 1.2rem;
}

.form-block-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}

.form-block-help {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
}

.form-control-lg {
  padding: 0.92rem 1.15rem;
  font-size: 0.98rem;
}

.large-selector .pet-type-btn {
  padding: 0.85rem 0.6rem;
  font-size: 0.98rem;
}

.booking-desktop-action {
  margin-top: 0.5rem;
  text-align: center;
}

.btn-submit-large {
  width: 100%;
  padding: 1.15rem 2rem;
  font-size: 1.12rem;
  font-weight: 800;
  border-radius: 14px;
  justify-content: center;
}

.form-security-badge {
  font-size: 0.84rem;
  color: var(--color-teal);
  font-weight: 600;
  margin-top: 0.85rem;
}

/* BOTÓN FIJO INFERIOR EN MODO CELULAR */
.mobile-sticky-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(23, 51, 58, 0.1);
  padding: 0.9rem 1.25rem;
  padding-bottom: calc(0.9rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
  z-index: 999;
}

.btn-sticky-mobile {
  width: 100%;
  padding: 1.05rem 1.5rem;
  font-size: 1.08rem;
  font-weight: 800;
  border-radius: 14px;
  justify-content: center;
}

.mobile-sticky-hint {
  display: block;
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

@media (max-width: 1024px) {
  .booking-split-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .booking-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .booking-page-main {
    padding: 2rem 0 115px;
  }

  .form-card-block {
    padding: 1.5rem 1.2rem;
    border-radius: 16px;
  }

  .booking-desktop-action {
    display: none;
  }

  .mobile-sticky-bottom-bar {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   21. ANIMACIONES GLOBALES
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   22. RESPONSIVE MEDIA QUERIES (MOBILE FIRST & BREAKPOINTS)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-img-wrapper {
    width: 65%;
    opacity: 0.85;
  }
  
  .hero-dog-photo {
    object-position: 70% 30%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }

  .stat-card:nth-child(2)::after {
    display: none;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-editorial-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-photo-column {
    position: static;
  }

  .services-main-photo-wrapper {
    aspect-ratio: 16 / 10;
    max-height: 480px;
  }

  .emotional-grid,
  .location-editorial-grid,
  .emergency-cta-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .location-map-frame {
    height: 380px;
  }

  .emergency-peeking-pet {
    justify-content: center;
  }

  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .hero-section {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 2.5rem;
  }

  .hero-img-wrapper {
    position: relative;
    width: 100%;
    height: 340px;
    margin-top: 1.5rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
  }

  .hero-dog-photo {
    object-position: center;
  }

  .hero-gradient-overlay {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .services-section {
    padding: 5rem 0 3.5rem;
  }

  .services-main-photo-wrapper {
    aspect-ratio: 4 / 5;
    max-height: 420px;
    border-radius: 20px;
    margin-bottom: 1rem;
  }

  .services-category-row {
    padding: 1.8rem 0;
  }

  .services-emergency-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.8rem;
    gap: 1.2rem;
    margin-top: 3.5rem;
  }

  .location-map-frame {
    height: 320px;
    border-radius: 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .facilities-collage,
  .pets-mosaic-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .facility-item,
  .pet-mosaic-item {
    flex: 0 0 280px;
    height: 260px;
    scroll-snap-align: start;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .emergency-cta-banner {
    padding: 2.5rem 1.5rem;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .final-cta-content {
    padding: 2.5rem 1.5rem;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta-buttons .btn {
    width: 100%;
  }

  .floating-whatsapp-container {
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    right: calc(20px + env(safe-area-inset-right, 0px));
    gap: 0.6rem;
  }

  .floating-whatsapp-pill {
    font-size: 0.86rem;
    padding: 0.65rem 1.1rem;
    gap: 0.55rem;
  }

  .floating-whatsapp-circle {
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon-svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 540px) {
  .floating-whatsapp-pill {
    display: none;
  }

  .floating-whatsapp-circle {
    width: 54px;
    height: 54px;
  }
}
