/* ============================================
   VETERINARIA — Design System & Styles
   Joyful · Warm · Pet Family
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Quicksand:wght@400;500;600;700&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  /* Primary */
  --turquoise: #4ECDC4;
  --turquoise-dark: #3BB5AD;
  --coral: #FF6B6B;
  --coral-dark: #E55A5A;
  --yellow: #FFE66D;
  --yellow-dark: #F5D84E;
  --mint: #A8E6CF;

  /* Support */
  --soft-blue: #89CFF0;
  --peach: #FFDAB9;
  --lavender: #D8B4FE;

  /* Neutrals */
  --white: #FFFDF7;
  --cream: #FFF8EE;
  --warm-gray: #6B6B6B;
  --dark: #2D2D2D;

  /* Backgrounds */
  --bg-hero: linear-gradient(135deg, #FFF8EE 0%, #E0FFF5 50%, #FFE8E0 100%);
  --bg-services: #FFFDF7;
  --bg-about: linear-gradient(135deg, #E0FFF5 0%, #FFF8EE 100%);
  --bg-testimonials: #FFF8EE;
  --bg-contact: linear-gradient(135deg, #FFE8E0 0%, #E0FFF5 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(78, 205, 196, 0.12);
  --shadow-md: 0 4px 20px rgba(78, 205, 196, 0.15);
  --shadow-lg: 0 8px 32px rgba(78, 205, 196, 0.18);
  --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 12px 40px rgba(78, 205, 196, 0.22);

  /* Radii */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s var(--ease);

  /* Typography */
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Quicksand', sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  color: var(--dark);
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  text-align: center;
  color: var(--warm-gray);
  max-width: 600px;
  margin: 0 auto 48px;
  font-weight: 500;
}

.accent-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 4px;
  vertical-align: middle;
}

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.header.scrolled {
  background: rgba(255, 253, 247, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--turquoise-dark);
}

.logo svg {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--coral);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--coral);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--coral);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.35);
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--dark);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 100px;
  background: var(--dark);
}

/* Full-bleed background carousel */
.hero-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.hero-bg-slide.active {
  opacity: 1;
}

.hero-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-bg-slide.active img {
  transform: scale(1);
}

/* Warm color overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(78, 205, 196, 0.55) 0%, rgba(168, 230, 207, 0.35) 30%, rgba(255, 107, 107, 0.2) 60%, rgba(45, 45, 45, 0.45) 100%),
    linear-gradient(to right, rgba(45, 45, 45, 0.6) 0%, rgba(45, 45, 45, 0.15) 55%, transparent 100%);
  pointer-events: none;
}

/* Content above photo */
.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: calc(100vh - 200px);
}

/* Glassmorphism text card */
.hero-text-card {
  max-width: 580px;
  background: rgba(255, 253, 247, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(78, 205, 196, 0.18);
  color: var(--turquoise-dark);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-badge svg {
  width: 18px;
  height: 18px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--coral), var(--turquoise));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--warm-gray);
  margin-bottom: 32px;
  max-width: 480px;
  font-weight: 500;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Carousel dots (bottom center of section) */
.hero-carousel-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 0;
  transition: var(--transition);
  cursor: pointer;
}

.carousel-dot.active {
  background: #fff;
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: scale(1.2);
}

/* ---------- Buttons ---------- */
.btn-primary {
  background: var(--coral);
  color: #fff;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255, 107, 107, 0.35);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-whatsapp:hover {
  background: #1EB851;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

/* Floating elements */
.float-el {
  position: absolute;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.float-el--1 {
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.float-el--2 {
  bottom: 15%;
  left: 5%;
  animation-delay: 2s;
}

.float-el--3 {
  top: 5%;
  left: 10%;
  animation-delay: 4s;
}

.float-el--4 {
  bottom: 10%;
  right: 10%;
  animation-delay: 1s;
}

.float-el--5 {
  top: 40%;
  right: -2%;
  animation-delay: 3s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-18px) rotate(5deg);
  }
}

/* Paw prints */
.paw-float {
  position: absolute;
  opacity: 0.12;
  z-index: 0;
}

/* Hero Shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.hero-blob--1 {
  width: 400px;
  height: 400px;
  background: var(--coral);
  top: -100px;
  right: -100px;
  animation: blobPulse 8s ease-in-out infinite;
}

.hero-blob--2 {
  width: 300px;
  height: 300px;
  background: var(--turquoise);
  bottom: -80px;
  left: -80px;
  animation: blobPulse 10s ease-in-out infinite 1s;
}

.hero-blob--3 {
  width: 200px;
  height: 200px;
  background: var(--yellow);
  top: 30%;
  left: 40%;
  animation: blobPulse 7s ease-in-out infinite 2s;
}

@keyframes blobPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

/* ---------- Wave Divider ---------- */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}

.wave-divider svg {
  width: 100%;
  height: 80px;
  display: block;
}

.wave-divider--flip {
  transform: rotate(180deg);
  margin-top: 0;
  margin-bottom: -2px;
}

/* ---------- SERVICIOS ---------- */
.services {
  padding: 80px 0 100px;
  background: var(--bg-services);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transition: height var(--transition);
}

.service-card:nth-child(1)::before {
  background: var(--turquoise);
}

.service-card:nth-child(2)::before {
  background: var(--coral);
}

.service-card:nth-child(3)::before {
  background: var(--yellow);
}

.service-card:nth-child(4)::before {
  background: var(--mint);
}

.service-card:nth-child(5)::before {
  background: var(--soft-blue);
}

.service-card:nth-child(6)::before {
  background: var(--lavender);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.service-card:hover::before {
  height: 6px;
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-card:nth-child(1) .service-icon {
  background: rgba(78, 205, 196, 0.12);
}

.service-card:nth-child(2) .service-icon {
  background: rgba(255, 107, 107, 0.12);
}

.service-card:nth-child(3) .service-icon {
  background: rgba(255, 230, 109, 0.18);
}

.service-card:nth-child(4) .service-icon {
  background: rgba(168, 230, 207, 0.2);
}

.service-card:nth-child(5) .service-icon {
  background: rgba(137, 207, 240, 0.15);
}

.service-card:nth-child(6) .service-icon {
  background: rgba(216, 180, 254, 0.15);
}

.service-icon svg {
  width: 36px;
  height: 36px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  font-weight: 500;
  line-height: 1.6;
}

/* ---------- SOBRE NOSOTROS ---------- */
.about {
  padding: 100px 0;
  background: var(--bg-about);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: linear-gradient(135deg, var(--peach), var(--mint));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-wrapper svg {
  width: 70%;
  height: 70%;
  opacity: 0.85;
}

.about-accent-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.about-accent-card .accent-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--coral);
}

.about-accent-card .accent-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--warm-gray);
  line-height: 1.3;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark);
  line-height: 1.2;
}

.about-text h2 .highlight {
  color: var(--turquoise-dark);
}

.about-text p {
  font-size: 1.05rem;
  color: var(--warm-gray);
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}

.value-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.value-item span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}

/* ---------- FAMILIAS FELICES ---------- */
.testimonials {
  padding: 100px 0;
  background: var(--bg-testimonials);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--yellow-dark);
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--warm-gray);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}

.testimonial-card:nth-child(1) .testimonial-avatar {
  background: var(--turquoise);
}

.testimonial-card:nth-child(2) .testimonial-avatar {
  background: var(--coral);
}

.testimonial-card:nth-child(3) .testimonial-avatar {
  background: var(--lavender);
}

.testimonial-author-info h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.testimonial-author-info p {
  font-size: 0.82rem;
  color: var(--warm-gray);
  font-weight: 500;
}

/* ---------- CONTACTO ---------- */
.contact {
  padding: 100px 0;
  background: var(--bg-contact);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
  line-height: 1.2;
}

.contact-info>p {
  font-size: 1.05rem;
  color: var(--warm-gray);
  margin-bottom: 36px;
  font-weight: 500;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item:nth-child(1) .contact-item-icon {
  background: rgba(78, 205, 196, 0.12);
}

.contact-item:nth-child(2) .contact-item-icon {
  background: rgba(255, 107, 107, 0.12);
}

.contact-item:nth-child(3) .contact-item-icon {
  background: rgba(255, 230, 109, 0.18);
}

.contact-item:nth-child(4) .contact-item-icon {
  background: rgba(37, 211, 102, 0.12);
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
}

.contact-item-text h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.contact-item-text p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  font-weight: 500;
}

.contact-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/12;
  position: relative;
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer ul li a:hover {
  color: var(--turquoise);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.footer-social a:hover {
  background: var(--turquoise);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--turquoise);
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6);
  }
}

/* ---------- Decorative Paws ---------- */
.deco-paws {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.deco-paws .paw {
  position: absolute;
  opacity: 0.04;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1024px) {
  .hero-content {
    min-height: auto;
  }

  .hero-text-card {
    max-width: 100%;
    padding: 36px 32px;
  }

  .hero-buttons {
    justify-content: center;
  }



  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
    transition: right var(--transition);
    z-index: 1000;
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .hero-text-card {
    padding: 28px 24px;
  }

  .about-accent-card {
    position: static;
    margin-top: 16px;
  }
}