/* ============================================================
   Casa Pet — Centro de Atendimento e Saúde Animal
   Premium Veterinary Digital Card — CSS
   ============================================================ */

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple-primary: #7C3AED;
  --purple-dark: #5B21B6;
  --purple-deeper: #4C1D95;
  --purple-light: #A78BFA;
  --lilac: #DDD6FE;
  --lilac-ultra: #EDE9FE;
  --lilac-bg: #F5F3FF;
  --white: #FFFFFF;
  --gray-light: #F8F7FC;
  --gray-medium: #9CA3AF;
  --gray-border: #E5E7EB;
  --dark-text: #1F2937;
  --dark-secondary: #4B5563;
  --green-emergency: #10B981;
  --green-glow: #34D399;
  --green-dark: #059669;
  --gold-star: #F59E0B;
  --whatsapp-green: #25D366;
  --instagram-gradient: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 50%;
  
  --shadow-sm: 0 2px 8px rgba(124, 58, 237, 0.08);
  --shadow-md: 0 4px 16px rgba(124, 58, 237, 0.12);
  --shadow-lg: 0 8px 32px rgba(124, 58, 237, 0.15);
  --shadow-xl: 0 16px 48px rgba(124, 58, 237, 0.2);
  --shadow-glow-purple: 0 0 20px rgba(124, 58, 237, 0.3);
  --shadow-glow-green: 0 0 20px rgba(16, 185, 129, 0.3);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--lilac-ultra);
}
::-webkit-scrollbar-thumb {
  background: var(--purple-light);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--purple-primary);
}

/* Selection */
::selection {
  background: var(--purple-primary);
  color: var(--white);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.hidden { display: none !important; }

.glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.section-container {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animate on scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--transition-slow), transform 0.6s var(--transition-slow);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   KEYFRAME ANIMATIONS
   ======================================== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pawFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(5deg); }
  75% { transform: translateY(-8px) rotate(-3deg); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(124, 58, 237, 0.2); }
  50% { box-shadow: 0 0 30px rgba(124, 58, 237, 0.4); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes loadingBar {
  from { width: 0%; }
  to { width: 100%; }
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

@keyframes gentleGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* ========================================
   1. SPLASH SCREEN
   ======================================== */
#splash-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(145deg, var(--purple-deeper), var(--purple-dark), var(--purple-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.splash-logo-container {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.splash-logo {
  width: 180px;
  height: auto;
  border-radius: var(--radius-md);
  animation: scaleIn 0.8s ease-out, breathe 3s ease-in-out infinite 0.8s;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}

.splash-glow {
  position: absolute;
  inset: -20px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(167, 139, 250, 0.3), transparent 70%);
  animation: gentleGlow 2s ease-in-out infinite;
  pointer-events: none;
}

.splash-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  animation: fadeIn 0.6s ease 0.3s both;
}

.splash-text p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--lilac);
  font-weight: 300;
  letter-spacing: 0.03em;
  animation: fadeIn 0.6s ease 0.5s both;
}

.splash-loader {
  margin: 28px auto 0;
  width: 180px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
  animation: fadeIn 0.5s ease 0.6s both;
}

.splash-loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--lilac), var(--white));
  border-radius: 10px;
  animation: loadingBar 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.4s;
}

.splash-paws {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* ========================================
   2. HERO SECTION
   ======================================== */
#hero {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--lilac-bg) 40%, var(--white) 100%);
  padding: 50px 20px 40px;
  text-align: center;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-bg-decoration {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06), transparent 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
}

.hero-logo-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.hero-logo {
  width: 200px;
  height: auto;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 8px 24px rgba(124, 58, 237, 0.2));
  transition: transform var(--transition-normal);
}

.hero-logo:hover {
  transform: scale(1.05);
}

.hero-logo-glow {
  position: absolute;
  inset: -15px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1), transparent 70%);
  animation: gentleGlow 3s ease-in-out infinite;
  pointer-events: none;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-primary), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-secondary);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.hero-slogan {
  font-size: 0.88rem;
  color: var(--purple-primary);
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.5;
}

.hero-slogan em {
  font-style: italic;
}

.hero-banner {
  margin-bottom: 28px;
}

.hero-banner-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(167, 139, 250, 0.12));
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(124, 58, 237, 0.12);
  animation: breathe 4s ease-in-out infinite;
}

.hero-banner-icon {
  font-size: 1rem;
}

.hero-banner-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-dark);
  letter-spacing: 0.02em;
}

/* Action Buttons */
.hero-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  color: var(--white);
}

.btn-action svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-save-contact {
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-save-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.btn-install {
  background: linear-gradient(135deg, var(--purple-light), var(--purple-primary));
  box-shadow: 0 4px 12px rgba(167, 139, 250, 0.3);
  animation: glowPulse 3s ease-in-out infinite;
}

.btn-install:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: all var(--transition-normal);
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--purple-primary);
  border: 2px solid var(--purple-primary);
  padding: 12px 26px;
}

.btn-secondary:hover {
  background: rgba(124, 58, 237, 0.05);
  transform: translateY(-2px);
}

.btn-instagram {
  background: var(--instagram-gradient);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.3);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(220, 39, 67, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-indicator-text {
  font-size: 0.72rem;
  color: var(--gray-medium);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.scroll-indicator-arrow {
  animation: bounce 2s ease-in-out infinite;
  color: var(--purple-primary);
  opacity: 0.6;
}

.scroll-indicator-arrow svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   SECTION HEADERS (shared)
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 28px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(167, 139, 250, 0.12));
  color: var(--purple-primary);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.15);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.section-title.light {
  color: var(--white);
}

.section-description {
  font-size: 0.88rem;
  color: var(--dark-secondary);
  font-weight: 400;
}

.section-description.light {
  color: var(--lilac);
}

/* ========================================
   3. SERVICES SECTION
   ======================================== */
#services {
  background: var(--gray-light);
  padding: 50px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  border: 1px solid rgba(124, 58, 237, 0.05);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(124, 58, 237, 0.15);
}

.service-icon-wrapper {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--lilac-ultra), var(--lilac));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: all var(--transition-normal);
}

.service-icon-wrapper.emergency {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.15));
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.15);
}

.service-icon {
  font-size: 1.4rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.service-card p {
  font-size: 0.72rem;
  color: var(--dark-secondary);
  line-height: 1.4;
}

.service-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.service-badge.urgent {
  background: linear-gradient(135deg, var(--green-emergency), var(--green-dark));
}

.services-cta {
  text-align: center;
}

/* ========================================
   4. EMERGENCY SECTION
   ======================================== */
#emergency {
  background: linear-gradient(145deg, #ecfdf5, #d1fae5, #f0fdf4);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

#emergency::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05), transparent 50%);
  pointer-events: none;
}

.emergency-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.emergency-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.emergency-main-icon {
  font-size: 3.5rem;
  display: block;
  animation: float 3s ease-in-out infinite;
}

.emergency-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  border: 2px solid var(--green-emergency);
  border-radius: var(--radius-full);
  animation: pulseRing 2s ease-out infinite;
  pointer-events: none;
}

.emergency-pulse-ring.delay {
  animation-delay: 0.6s;
}

.emergency-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.emergency-description {
  font-size: 0.88rem;
  color: var(--dark-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.emergency-features {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.emergency-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-dark);
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 14px;
  border-radius: 10px;
  backdrop-filter: blur(8px);
}

.btn-emergency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green-emergency), var(--green-dark));
  color: var(--white);
  padding: 16px 32px;
  border-radius: 16px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.35);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  animation: pulse 2.5s ease-in-out infinite;
}

.btn-emergency:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(16, 185, 129, 0.45);
}

.btn-emergency-icon {
  font-size: 1.2rem;
}

.btn-emergency-glow {
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green-glow), transparent, var(--green-glow));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-emergency:hover .btn-emergency-glow {
  opacity: 0.3;
}

/* ========================================
   5. VETERINARIAN SECTION
   ======================================== */
#veterinarian {
  background: linear-gradient(145deg, var(--purple-dark), var(--purple-primary), var(--purple-deeper));
  padding: 50px 0;
  color: var(--white);
}

.vet-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.vet-photo-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.vet-photo {
  width: 130px;
  height: 130px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

.vet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vet-photo-glow {
  position: absolute;
  inset: -12px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(167, 139, 250, 0.25), transparent 70%);
  animation: gentleGlow 3s ease-in-out infinite;
  pointer-events: none;
}

.vet-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vet-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.vet-crmv {
  font-size: 0.82rem;
  opacity: 0.8;
  margin-bottom: 14px;
  font-weight: 400;
}

.vet-description {
  font-size: 0.85rem;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 18px;
}

.vet-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.vet-specialty {
  background: rgba(255, 255, 255, 0.12);
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   6. PET SHOP SECTION
   ======================================== */
#petshop {
  background: var(--white);
  padding: 50px 0;
}

.petshop-swiper {
  padding-bottom: 40px;
}

.petshop-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(124, 58, 237, 0.06);
  transition: all var(--transition-normal);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.petshop-card:hover {
  border-color: rgba(124, 58, 237, 0.15);
  box-shadow: var(--shadow-md);
}

.petshop-card-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.petshop-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.petshop-card p {
  font-size: 0.82rem;
  color: var(--dark-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
}

.petshop-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--lilac-ultra), var(--lilac));
  color: var(--purple-dark);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.petshop-cta {
  text-align: center;
  margin-top: 8px;
}

.petshop-pagination .swiper-pagination-bullet {
  background: var(--purple-light);
  opacity: 0.4;
}

.petshop-pagination .swiper-pagination-bullet-active {
  background: var(--purple-primary);
  opacity: 1;
}

/* ========================================
   PROMOTIONS SECTION
   ======================================== */
#promotions {
  background: var(--lilac-bg);
  padding: 50px 0;
}

.promo-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promo-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.06);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.promo-ribbon {
  position: absolute;
  top: 12px;
  right: -28px;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 32px;
  transform: rotate(35deg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.promo-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.promo-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.promo-card p {
  font-size: 0.82rem;
  color: var(--dark-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.btn-promo {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  color: var(--white);
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: all var(--transition-normal);
}

.btn-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
}

/* ========================================
   DIFFERENTIALS SECTION
   ======================================== */
#differentials {
  background: var(--white);
  padding: 50px 0;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.diff-item {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  transition: all var(--transition-normal);
  border: 1px solid rgba(124, 58, 237, 0.04);
}

.diff-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(124, 58, 237, 0.12);
}

.diff-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 50%;
  justify-self: center;
}

.diff-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 8px;
}

.diff-item h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark-text);
}

/* ========================================
   7. GALLERY SECTION
   ======================================== */
#gallery {
  background: linear-gradient(145deg, var(--purple-deeper), var(--purple-dark));
  padding: 50px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.gallery-placeholder span {
  font-size: 2rem;
}

.gallery-placeholder p {
  font-size: 0.72rem;
  color: var(--lilac);
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-content {
  text-align: center;
  padding: 20px;
}

.lightbox-caption {
  color: var(--white);
  font-size: 0.88rem;
  margin-top: 16px;
  opacity: 0.8;
}

/* ========================================
   8. VIDEOS SECTION
   ======================================== */
#videos {
  background: var(--white);
  padding: 50px 0;
}

.videos-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.video-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(124, 58, 237, 0.06);
}

.video-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-placeholder-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--purple-dark), var(--purple-primary));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.video-play-btn {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  transition: all var(--transition-normal);
}

.video-card:hover .video-play-btn {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.1);
}

.video-label {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.8;
}

.video-info {
  padding: 14px 16px;
  background: var(--white);
}

.video-info h3 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.video-info p {
  font-size: 0.78rem;
  color: var(--dark-secondary);
}

.video-reels-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.video-reel-card {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.video-reel-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.reel-placeholder {
  aspect-ratio: 9/14;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.05), rgba(167, 139, 250, 0.1));
  border: 1px solid rgba(124, 58, 237, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.reel-placeholder span {
  font-size: 1.8rem;
}

.reel-placeholder p {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--purple-primary);
}

.videos-cta {
  text-align: center;
}

/* ========================================
   9. TESTIMONIALS SECTION
   ======================================== */
#testimonials {
  background: var(--lilac-bg);
  padding: 50px 0;
}

.testimonials-swiper {
  padding-bottom: 40px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(124, 58, 237, 0.06);
  position: relative;
}

.testimonial-quote {
  font-family: Georgia, serif;
  font-size: 3rem;
  color: var(--purple-light);
  line-height: 1;
  margin-bottom: -10px;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--dark-text);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
}

.testimonial-author strong {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
}

.testimonial-author span {
  font-size: 0.72rem;
  color: var(--gray-medium);
}

.testimonials-pagination .swiper-pagination-bullet {
  background: var(--purple-light);
  opacity: 0.4;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--purple-primary);
  opacity: 1;
}

/* ========================================
   10. LOCATION SECTION
   ======================================== */
#location {
  background: var(--white);
  padding: 50px 0;
}

.location-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.08);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--green-emergency);
  border-radius: var(--radius-full);
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.location-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.location-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--gray-light);
  padding: 16px;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  border: 1px solid rgba(124, 58, 237, 0.04);
}

.location-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(124, 58, 237, 0.1);
}

.location-card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.location-card-info strong {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.location-card-info p {
  font-size: 0.82rem;
  color: var(--dark-secondary);
  line-height: 1.5;
}

.location-card-info a {
  color: var(--purple-primary);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.location-card-info a:hover {
  color: var(--purple-dark);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
  border: 1px solid rgba(124, 58, 237, 0.08);
}

.map-container iframe {
  display: block;
}

.location-cta {
  text-align: center;
}

/* ========================================
   11. FOOTER
   ======================================== */
#footer {
  background: linear-gradient(145deg, var(--purple-deeper), #3B0764);
  padding: 50px 0 30px;
  color: var(--white);
}

.footer-content {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  width: 120px;
  height: auto;
  border-radius: var(--radius-sm);
  margin: 0 auto 10px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.footer-logo h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-logo p {
  font-size: 0.78rem;
  opacity: 0.7;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  opacity: 0.85;
  transition: opacity var(--transition-fast);
  padding: 6px;
}

.footer-link:hover {
  opacity: 1;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

.social-btn.whatsapp:hover {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.social-btn.instagram:hover {
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.3);
}

.social-btn svg {
  width: 22px;
  height: 22px;
}

.footer-divider {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 auto 24px;
  border-radius: 1px;
}

.footer-cta-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.footer-cta-text {
  font-size: 0.88rem;
  margin-bottom: 14px;
  opacity: 0.9;
  line-height: 1.5;
}

.btn-footer-cta {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  color: var(--white);
  padding: 10px 28px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-normal);
}

.btn-footer-cta:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

.footer-credits {
  font-size: 0.72rem;
  opacity: 0.5;
  line-height: 1.6;
}

.footer-paw {
  font-size: 1rem;
  margin-top: 8px;
  animation: float 3s ease-in-out infinite;
  display: inline-block;
}

/* ========================================
   12. FLOATING WHATSAPP BUTTON
   ======================================== */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 1000;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-normal);
  animation: pulse 2.5s ease-in-out infinite;
}

.fab-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.fab-whatsapp svg {
  width: 28px;
  height: 28px;
}

.fab-whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: pulseRing 2.5s ease-out infinite;
  pointer-events: none;
}

/* ========================================
   13. FLOATING INSTALL BUBBLE
   ======================================== */
.install-bubble {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
}

.install-bubble-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  color: var(--white);
  padding: 12px 20px;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.4);
  transition: all var(--transition-normal);
  animation: pulse 3s ease-in-out infinite;
  cursor: pointer;
  border: none;
}

.install-bubble-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.5);
}

.install-bubble-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.install-bubble-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: var(--dark-text);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid var(--white);
  transition: all var(--transition-fast);
  z-index: 2;
  line-height: 1;
}

.install-bubble-close:hover {
  background: #EF4444;
}

.install-bubble-glow {
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.2), transparent 60%);
  animation: gentleGlow 3s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

/* ========================================
   TOAST CONTAINER
   ======================================== */
#toast-container {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

/* ========================================
   SWIPER GLOBAL OVERRIDES
   ======================================== */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  transition: all var(--transition-normal);
}

.swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (min-width: 481px) {
  .hero-title {
    font-size: 2.6rem;
  }
  
  .hero-logo {
    width: 180px;
    height: auto;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .services-grid {
    gap: 14px;
  }
  
  .service-card {
    padding: 24px 16px;
  }
  
  .hero-actions {
    gap: 12px;
  }
  
  .btn-action {
    padding: 12px 18px;
    font-size: 0.82rem;
  }
}

/* Larger Tablet */
@media (min-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .section-container {
    max-width: 520px;
    padding: 0 24px;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .diff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop — maintain card feel */
@media (min-width: 1024px) {
  body {
    background: linear-gradient(145deg, var(--lilac-ultra), var(--gray-light));
  }
  
  #hero, #services, #emergency, #veterinarian, #petshop, 
  #promotions, #differentials, #gallery, #videos, 
  #testimonials, #location, #footer {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0;
  }
  
  #hero {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    margin-top: 20px;
  }
  
  #footer {
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    margin-bottom: 20px;
  }
  
  .section-container {
    max-width: 440px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


