/* =============================================
   CANHIJITOS – Peluquería Canina
   style.css
   ============================================= */

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

:root {
  --pink-50:   #fdf2f8;
  --pink-100:  #fce7f3;
  --pink-200:  #fbcfe8;
  --pink-400:  #f472b6;
  --pink-500:  #ec4899;
  --pink-600:  #db2777;
  --pink-700:  #be185d;
  --rose-400:  #fb7185;
  --purple-400:#c084fc;
  --purple-600:#9333ea;

  --neutral-50:  #fafafa;
  --neutral-100: #f4f4f5;
  --neutral-200: #e4e4e7;
  --neutral-400: #a1a1aa;
  --neutral-600: #52525b;
  --neutral-700: #3f3f46;
  --neutral-800: #27272a;
  --neutral-900: #18181b;

  --white: #ffffff;

  --grad-brand: linear-gradient(135deg, #ec4899 0%, #9333ea 100%);
  --grad-hero:  linear-gradient(160deg, rgba(236,72,153,0.82) 0%, rgba(147,51,234,0.78) 100%);

  --shadow-sm:   0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.14);
  --shadow-pink: 0 8px 30px rgba(236,72,153,.35);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-main: 'Outfit', sans-serif;

  --navbar-h: 72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--neutral-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─────────── UTILITY ─────────── */
.section {
  padding: 100px 0;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-100);
  color: var(--pink-600);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

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

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--neutral-900);
  line-height: 1.2;
  margin-bottom: 16px;
}

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

.section-desc {
  font-size: 1.05rem;
  color: var(--neutral-600);
  max-width: 540px;
  margin: 0 auto;
}

/* ─────────── BUTTONS ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(236,72,153,.45);
}

.btn-outline {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--pink-600);
  border-color: transparent;
}

.btn-outline-dark {
  background: transparent;
  color: var(--neutral-800);
  border: 2px solid var(--neutral-200);
}

.btn-outline-dark:hover {
  background: var(--neutral-800);
  color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }

.btn-sm-inline {
  padding: 8px 20px;
  font-size: .85rem;
  border-radius: var(--radius-full);
}

.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-call {
  background: var(--neutral-800);
  color: var(--white);
}

.btn-call:hover { background: var(--neutral-900); transform: translateY(-1px); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover { background: #1EBE5A; transform: translateY(-1px); }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 24px rgba(0,0,0,.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.8rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(236,72,153,.4));
}

.logo-text { display: flex; flex-direction: column; line-height: 1; }

.logo-name {
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-sub {
  font-size: .65rem;
  font-weight: 500;
  color: var(--neutral-400);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.navbar:not(.scrolled) .logo-sub { color: rgba(255,255,255,.7); }
.navbar:not(.scrolled) .logo-name {
  background: none;
  -webkit-text-fill-color: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: var(--transition);
}

.navbar.scrolled .nav-link { color: var(--neutral-700); }

.nav-link:hover,
.nav-link.active {
  background: rgba(255,255,255,.15);
  color: var(--white);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  background: var(--pink-100);
  color: var(--pink-600);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  margin-left: 8px;
  background: var(--grad-brand);
  color: var(--white) !important;
  border-radius: var(--radius-full);
  font-size: .88rem;
  font-weight: 600;
  box-shadow: var(--shadow-pink);
  -webkit-text-fill-color: var(--white) !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(236,72,153,.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--neutral-800); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--navbar-h) + 40px) 1.5rem 60px;
  max-width: 780px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.25);
  margin-bottom: 24px;
  animation: fadeInDown .8s ease both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp .8s .15s ease both;
}

.hero-title-accent {
  display: block;
  background: linear-gradient(90deg, #fde68a, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin: 0 auto 36px;
  animation: fadeInUp .8s .3s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp .8s .45s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 20px 40px;
  animation: fadeInUp .8s .6s ease both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero-stat strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}

.hero-stat span {
  font-size: .78rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.25);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--white);
  animation: bounce 2s infinite;
  opacity: .8;
}

/* ═══════════════════════════════════════
   SERVICIOS
═══════════════════════════════════════ */
.services {
  background: var(--neutral-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.06);
}

.service-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--grad-brand);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.service-badge--new {
  background: linear-gradient(135deg, #10b981, #059669);
}

.service-badge--premium {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.service-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--neutral-900);
}

.service-body p {
  font-size: .9rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

.service-includes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.service-includes li {
  font-size: .82rem;
  color: var(--pink-600);
  font-weight: 500;
}

.services-cta {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.services-cta p {
  font-size: 1.05rem;
  color: var(--neutral-600);
}

/* ═══════════════════════════════════════
   ABOUT / NOSOTROS
═══════════════════════════════════════ */
.about { background: var(--white); }

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

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

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-img-badge-icon { font-size: 1.8rem; }

.about-img-badge strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--neutral-900);
}

.about-img-badge span {
  font-size: .78rem;
  color: var(--neutral-400);
}

.about-img-card {
  position: absolute;
  top: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 200px;
}

.about-img-card-icon { font-size: 1.5rem; }

.about-img-card strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--neutral-900);
}

.about-img-card p {
  font-size: .75rem;
  color: var(--neutral-400);
}

.about-content { display: flex; flex-direction: column; gap: 8px; }

.about-text {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.75;
  margin-bottom: 8px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--pink-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 2px;
}

.about-feature p {
  font-size: .85rem;
  color: var(--neutral-600);
}

/* ═══════════════════════════════════════
   GALERÍA
═══════════════════════════════════════ */
.gallery { background: var(--neutral-50); }

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item--large {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity .3s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.gallery-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gallery-cta p {
  font-size: 1.05rem;
  color: var(--neutral-600);
}

/* ═══════════════════════════════════════
   WHY US
═══════════════════════════════════════ */
.why-us {
  background: var(--grad-brand);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '🐾';
  position: absolute;
  font-size: 20rem;
  opacity: .04;
  top: -4rem;
  right: -4rem;
  line-height: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.why-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: var(--white);
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: .88rem;
  opacity: .85;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   CONTACTO
═══════════════════════════════════════ */
.contact { background: var(--white); }

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--pink-200);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--pink-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-body h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 4px;
}

.contact-card-body p {
  font-size: .88rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

.contact-phone {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--pink-600);
  margin-bottom: 12px !important;
}

.contact-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-block;
  margin-top: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--pink-600);
}

.contact-link:hover { text-decoration: underline; }

.horario-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.horario-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: var(--neutral-600);
}

.horario-time {
  font-weight: 700;
  color: var(--neutral-900);
}

.horario-closed { color: var(--neutral-400) !important; }

/* ─── CONTACT FORM ─── */
.contact-form-wrap {
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 6px;
}

.contact-form > p {
  font-size: .88rem;
  color: var(--neutral-600);
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--neutral-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-main);
  font-size: .9rem;
  color: var(--neutral-900);
  background: var(--white);
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink-400);
  box-shadow: 0 0 0 3px rgba(236,72,153,.12);
}

.form-group textarea { resize: vertical; }

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

.form-note {
  margin-top: 10px;
  font-size: .75rem;
  color: var(--neutral-400);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.success-icon { font-size: 4rem; margin-bottom: 16px; }

.form-success h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--neutral-600);
}

/* ─── MAP ─── */
.map-section {
  margin-top: 64px;
}

.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.map-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-900);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--neutral-900);
  color: var(--neutral-400);
}

.footer-top { padding: 64px 0; }

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .logo-name {
  -webkit-text-fill-color: unset;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand .logo-sub { color: var(--neutral-600); }

.footer-tagline {
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 40px;
  height: 40px;
  background: var(--neutral-800);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-400);
  transition: var(--transition);
}

.footer-social:hover {
  background: #25D366;
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: .88rem;
  color: var(--neutral-400);
  transition: var(--transition);
}

.footer-links li a:hover { color: var(--pink-400); }

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item span { font-size: 1.1rem; flex-shrink: 0; }

.footer-contact-item p,
.footer-contact-item a {
  font-size: .85rem;
  color: var(--neutral-400);
  line-height: 1.6;
}

.footer-contact-item a:hover { color: var(--pink-400); }

.footer-bottom {
  border-top: 1px solid var(--neutral-800);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: .8rem;
  text-align: center;
}

/* ═══════════════════════════════════════
   WHATSAPP FLOTANTE
═══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 22px 14px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 30px rgba(37,211,102,.45);
  font-weight: 600;
  font-size: .88rem;
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}

.whatsapp-float:hover {
  background: #1EBE5A;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 40px rgba(37,211,102,.55);
}

.whatsapp-float-label { white-space: nowrap; }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,.7); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .about-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root { --navbar-h: 64px; }

  .section { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }

  /* Navbar mobile */
  .nav-links {
    position: fixed;
    top: var(--navbar-h);
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    padding: 20px 24px 28px;
    gap: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,.12);
    transform: translateY(-110%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 999;
  }

  .nav-links.open { transform: translateY(0); }

  .nav-link {
    color: var(--neutral-700) !important;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: .95rem;
  }

  .nav-link:hover, .nav-link.active {
    background: var(--pink-100) !important;
    color: var(--pink-600) !important;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
    padding: 14px;
  }

  .hamburger { display: flex; }

  /* Hero */
  .hero-stats {
    gap: 20px;
    padding: 16px 24px;
    flex-wrap: wrap;
  }

  /* About */
  .about-grid { grid-template-columns: 1fr; }

  .about-img-card {
    top: auto;
    bottom: -16px;
    right: 12px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item--large { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* WhatsApp float */
  .whatsapp-float-label { display: none; }
  .whatsapp-float { padding: 16px; }
}

@media (max-width: 540px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    gap: 16px;
    padding: 14px 20px;
  }

  .hero-stat-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item--wide,
  .gallery-item--large { grid-column: span 1; grid-row: span 1; }

  .gallery-item { height: 240px; }

  .contact-form-wrap { padding: 24px; }

  .form-row { grid-template-columns: 1fr; }

  .map-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 2.2rem; }
  .contact-form-wrap { padding: 18px; }
}
