/* ============================================================
   CATA PET SPA — Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #5A4255; --navy-lt:   #7D6077;
  --coral:     #B4789D; --coral-dk:  #96617F; --coral-lt:  #F2E5EE;
  --sage:      #C6A89C; --sage-dk:   #A78678; --sage-lt:   #F0E6E1;
  --cream:     #F8F4F1; --cream-dk:  #E7D3BF;
  --teal:      #D5ACC5; --teal-dk:   #B4789D; --teal-lt:   #F4E8F0;
  --orange:    #C6A89C; --orange-dk: #A78678; --orange-lt: #F0E6E1;
  --yellow:    #E7D3BF; --yellow-lt: #F8F4F1;
  --mint:      #C6A89C; --mint-lt:   #F0E6E1;
  --purple:    #D5ACC5; --purple-lt: #F4E8F0;
  --gray:      #74636E; --dark:      #4D3848; --white:     #FFFFFF;
  --radius: 24px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--teal-lt);
  padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--coral);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.logo-text { font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 900; color: var(--navy); }
.logo-text em { color: var(--coral); font-style: normal; }
.brand-mark {
  display: block;
  width: 24px;
  height: 24px;
  fill: var(--white);
  color: var(--white);
}
.emoji-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  line-height: 1;
  flex-shrink: 0;
}
.brand-icon {
  display: inline-flex;
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--navy); font-weight: 700; font-size: .9rem; transition: color .2s; }
.nav-links a:hover { color: var(--teal); }
.btn-nav {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral);
  color: var(--white);
  padding: 11px 24px; border-radius: 50px;
  font-size: .9rem; font-weight: 800; text-decoration: none;
  transition: transform .15s;
}
.btn-nav:hover { transform: translateY(-2px); }

/* ── HERO ────────────────────────────────────────────── */
#hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding: 80px 6%;
  background: var(--cream);
  min-height: 88vh;
  position: relative; overflow: hidden;
}
#hero::before {
  content: none;
}
#hero::after {
  content: none;
}
.hero-photo { position: relative; z-index: 1; }
.hero-photo-blob {
  position: absolute; inset: -18px;
  border-radius: 50px;
  background: var(--sage-lt);
  z-index: -1; transform: rotate(-2deg);
}
.hero-photo img {
  width: 100%; height: 620px;
  object-fit: cover; object-position: center top;
  border-radius: 40px; display: block;
}
.hero-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--white); border-radius: 20px; padding: 16px 22px;
  display: flex; align-items: center; gap: 14px;
}
.hero-badge-icon {
  width: 44px; height: 44px;
  background: var(--coral-lt);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.hero-badge-icon .emoji-icon { font-size: 1.45rem; }
.hero-badge-text strong { display: block; font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 900; color: var(--navy); }
.hero-badge-text span { font-size: .76rem; color: var(--gray); font-weight: 600; }
.hero-paw-float { position: absolute; top: 32px; right: -16px; color: var(--sage); pointer-events: none; font-size: 4.4rem; line-height: 1; }
.hero-content { display: flex; flex-direction: column; z-index: 1; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-lt);
  color: var(--teal-dk);
  border-radius: 50px; padding: 8px 18px;
  font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 22px; align-self: flex-start;
  border: 1.5px solid var(--sage);
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  font-weight: 900; line-height: 1.05;
  color: var(--navy); margin-bottom: 22px;
}
.hero-sub { font-size: 1.05rem; color: var(--gray); margin-bottom: 36px; max-width: 460px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 24px; }
.hero-stat {
  background: var(--cream-dk); border-radius: 16px; padding: 14px 20px;
  border: 1.5px solid var(--sage-lt);
}
.hero-stat strong { display: block; font-family: 'Outfit', sans-serif; font-size: 1.7rem; font-weight: 900; color: var(--navy); }
.hero-stat span { font-size: .8rem; color: var(--gray); font-weight: 600; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--coral);
  color: var(--white);
  padding: 15px 30px; border-radius: 50px;
  font-size: 1rem; font-weight: 800; text-decoration: none;
  transition: transform .2s;
}
.btn-primary:hover { transform: translateY(-3px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--teal-dk);
  padding: 15px 28px; border-radius: 50px;
  font-size: 1rem; font-weight: 800; text-decoration: none;
  border: 2.5px solid var(--teal);
  transition: background .2s, color .2s;
}
.btn-ghost:hover { background: var(--teal-lt); }
.btn-primary-inv {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--teal-dk);
  padding: 15px 30px; border-radius: 50px;
  font-size: 1rem; font-weight: 800; text-decoration: none;
  transition: transform .2s;
}
.btn-primary-inv:hover { transform: translateY(-2px); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--coral); color: var(--white);
  padding: 18px 42px; border-radius: 50px;
  font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 900; text-decoration: none;
  transition: transform .2s;
  position: relative; z-index: 1;
}
.btn-whatsapp:hover { transform: translateY(-3px); }
.btn-whatsapp .brand-icon { font-size: 1.35rem; }

/* ── MARQUEE ─────────────────────────────────────────── */
.marquee-wrap {
  background: var(--teal);
  padding: 18px 0; overflow: hidden; white-space: nowrap;
}
.marquee-inner { display: inline-flex; gap: 48px; animation: marquee 26s linear infinite; }
.marquee-item { display: inline-flex; align-items: center; gap: 12px; color: var(--white); font-weight: 800; font-size: .95rem; }
.marquee-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ── SECTION HELPERS ─────────────────────────────────── */
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--teal-dk); font-size: .78rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 900; color: var(--navy); line-height: 1.1; margin-bottom: 16px;
}
.section-sub { font-size: 1rem; color: var(--gray); max-width: 560px; line-height: 1.7; margin-bottom: 48px; }
.accent  { color: var(--coral); }
.accent2 { color: var(--teal); }

/* ── SERVICIOS ───────────────────────────────────────── */
#servicios { padding: 100px 6%; background: var(--cream-dk); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; flex-wrap: wrap; gap: 20px; }
.services-header-right { display: flex; gap: 12px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.svc-card {
  border-radius: 28px; padding: 30px 26px 26px;
  position: relative; overflow: hidden;
  transition: transform .25s;
  border: 1.5px solid var(--sage-lt);
}
.svc-card:hover { transform: translateY(-6px); border-color: var(--sage); }

/* Color variants via nth-child */
.svc-card:nth-child(1) { background: var(--coral-lt); }
.svc-card:nth-child(2) { background: var(--teal-lt); }
.svc-card:nth-child(3) { background: var(--yellow-lt); }
.svc-card:nth-child(4) { background: var(--purple-lt); }
.svc-card:nth-child(5) { background: var(--mint-lt); }
.svc-card:nth-child(6) { background: var(--teal); }
.svc-card:nth-child(6) h3 { color: var(--white); }
.svc-card:nth-child(6) p  { color: var(--white); }

.svc-price {
  position: absolute; top: 20px; right: 20px;
  background: var(--teal); color: var(--white);
  border-radius: 50px; padding: 5px 14px;
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: .85rem;
}
.svc-card:nth-child(5) .svc-price { background: var(--mint); }

.svc-icon-circle {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--coral);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.svc-card:nth-child(2) .svc-icon-circle { background: var(--teal); }
.svc-card:nth-child(3) .svc-icon-circle { background: var(--sage); }
.svc-card:nth-child(4) .svc-icon-circle { background: var(--coral); }
.svc-card:nth-child(5) .svc-icon-circle { background: var(--teal); }
.svc-card:nth-child(6) .svc-icon-circle { background: var(--navy); }
.svc-icon-circle .emoji-icon { font-size: 1.45rem; }
.svc-icon-circle .brand-icon { font-size: 1.45rem; }
.svc-card:nth-child(6) .brand-icon { color: var(--white); }
.pet-ear-icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 28px;
  transform: rotate(-18deg);
}
.pet-ear-icon::before,
.pet-ear-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  border-radius: 80% 12% 80% 12%;
  transform: translateX(-50%) rotate(45deg);
}
.pet-ear-icon::before {
  width: 24px;
  height: 24px;
  background: var(--white);
  top: 1px;
}
.pet-ear-icon::after {
  width: 13px;
  height: 13px;
  background: var(--coral-lt);
  top: 8px;
}

.svc-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.svc-card p  { font-size: .86rem; color: var(--gray); line-height: 1.65; }
.svc-time {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  font-size: .76rem; font-weight: 700;
  color: var(--teal-dk); background: var(--teal-lt);
  padding: 4px 12px; border-radius: 50px;
}
.svc-card:nth-child(4) .svc-time { color: var(--sage-dk); background: var(--sage-lt); border: 1px solid var(--sage); }
.svc-card:nth-child(5) .svc-time { color: var(--sage-dk); background: var(--sage-lt); border: 1px solid var(--sage); }
.svc-squig { position: absolute; bottom: -12px; right: -8px; color: var(--sage); pointer-events: none; font-size: 4.4rem; line-height: 1; transform: rotate(-12deg); }

/* ── GALERÍA ─────────────────────────────────────────── */
#galeria {
  background: var(--sage-lt);
  padding: 80px 6%; text-align: center; position: relative; overflow: hidden;
}
.galeria-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 900; color: var(--navy); margin-bottom: 50px;
}
.galeria-dot { display: inline-block; width: 11px; height: 11px; border-radius: 50%; background: var(--coral); margin-right: 3px; }
.galeria-dot:nth-child(2) { background: var(--teal); }
.fan-grid {
  display: flex; align-items: flex-end; justify-content: center;
  height: 360px; position: relative; z-index: 1;
}
.fan-card {
  width: 210px; height: 320px;
  border-radius: 24px; overflow: hidden;
  background: var(--white); flex-shrink: 0;
  transition: transform .3s;
  border: 3px solid var(--white);
}
.fan-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.fan-card:hover { transform: scale(1.06) translateY(-14px) !important; z-index: 10; }
.fan-card:nth-child(1) { transform: rotate(-12deg) translateY(40px); margin-right: -38px; z-index: 1; border-color: var(--yellow); }
.fan-card:nth-child(2) { transform: rotate(-6deg) translateY(16px);  margin-right: -38px; z-index: 2; border-color: var(--coral); }
.fan-card:nth-child(3) { transform: rotate(0deg)  translateY(0);      z-index: 3;          border-color: var(--teal); }
.fan-card:nth-child(4) { transform: rotate(6deg)  translateY(16px);  margin-left: -38px;  z-index: 2; border-color: var(--purple); }
.fan-card:nth-child(5) { transform: rotate(12deg) translateY(40px); margin-left: -38px;  z-index: 1; border-color: var(--mint); }

/* ── STATS BAND ──────────────────────────────────────── */
.stats-band { background: var(--teal); padding: 50px 6%; }
.stats-band-inner { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.stat-item { text-align: center; color: var(--white); }
.stat-item strong { display: block; font-family: 'Outfit', sans-serif; font-size: 2.8rem; font-weight: 900; line-height: 1; }
.stat-item span { font-size: .88rem; font-weight: 700; color: var(--white); }

/* ── POR QUÉ ─────────────────────────────────────────── */
#porque { padding: 100px 6%; background: var(--cream); }
.why-grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.why-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-photo-main { grid-column: 1/-1; border-radius: 26px; overflow: hidden; height: 280px; }
.why-photo-main img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.why-photo-sm { border-radius: 20px; overflow: hidden; height: 190px; }
.why-photo-sm img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.why-list { display: flex; flex-direction: column; gap: 18px; margin-top: 10px; }
.why-item { display: flex; align-items: flex-start; gap: 14px; }
.why-item-icon { width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.why-item-icon.c1 { background: var(--coral-lt); }
.why-item-icon.c2 { background: var(--teal-lt); }
.why-item-icon.c3 { background: var(--yellow-lt); }
.why-item-icon.c4 { background: var(--purple-lt); }
.why-item-icon .emoji-icon { font-size: 1.25rem; }
.why-item h4 { font-family: 'Outfit', sans-serif; font-size: .97rem; font-weight: 900; color: var(--navy); margin-bottom: 4px; }
.why-item p { font-size: .85rem; color: var(--gray); line-height: 1.6; }

/* ── PRECIOS ─────────────────────────────────────────── */
#precios { padding: 100px 6%; background: var(--cream); }
.prices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }
.price-card {
  background: var(--white); border-radius: 26px; padding: 34px 26px; text-align: center;
  border: 2px solid var(--sage-lt);
  transition: transform .25s, border-color .25s;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--teal); }
.price-card.featured {
  background: var(--teal);
  color: var(--white); transform: translateY(-8px);
  border-color: var(--teal);
}
.price-card.featured:hover { transform: translateY(-12px); }
.price-pet-box { margin-bottom: 14px; }
.price-pet-emoji { display: inline-block; font-size: 3.15rem; line-height: 1; }
.price-size { font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.price-card.featured .price-size { color: var(--white); }
.price-name { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 900; margin-bottom: 18px; color: var(--navy); }
.price-card.featured .price-name { color: var(--white); }
.price-from { font-size: .78rem; color: var(--gray); }
.price-card.featured .price-from { color: var(--white); }
.price-amount { font-family: 'Outfit', sans-serif; font-size: 2.3rem; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.price-card.featured .price-amount { color: var(--white); }
.price-sep { border: none; border-top: 1px solid var(--sage-lt); margin: 16px 0; }
.price-card.featured .price-sep { border-color: var(--white); }
.price-breeds { font-size: .82rem; color: var(--gray); line-height: 1.8; }
.price-card.featured .price-breeds { color: var(--white); }
.price-disclaimer { margin-top: 32px; text-align: center; font-size: .9rem; color: var(--gray); }
.price-disclaimer strong { color: var(--coral); }

/* ── TESTIMONIOS ─────────────────────────────────────── */
#testimonios { background: var(--cream-dk); padding: 100px 6%; }
.test-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.test-nav { display: flex; gap: 10px; }
.test-nav button {
  width: 46px; height: 46px; border-radius: 50%;
  border: 2px solid var(--sage); background: var(--white);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--teal-dk); font-size: 1.1rem; transition: all .2s;
}
.test-nav button.active,
.test-nav button:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.test-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.test-card {
  background: var(--white); border-radius: 26px; padding: 34px;
  display: flex; flex-direction: column; gap: 20px;
  border: 1.5px solid var(--sage-lt);
}
.test-card-inner { display: grid; grid-template-columns: 1fr 130px; gap: 22px; align-items: start; }
.test-quote-mark { font-size: 2.8rem; line-height: 1; color: var(--coral); font-family: Georgia, serif; font-weight: 900; margin-bottom: 10px; }
.test-quote { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--navy); line-height: 1.45; }
.test-photo { width: 130px; height: 170px; border-radius: 16px; overflow: hidden; flex-shrink: 0; border: 3px solid var(--teal-lt); }
.test-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.test-author { display: flex; align-items: center; gap: 8px; }
.test-author strong { font-weight: 900; color: var(--navy); font-size: .92rem; }
.test-author span { color: var(--gray); font-size: .86rem; }
.test-stars { color: var(--yellow); letter-spacing: 2px; font-size: .95rem; margin-bottom: 6px; }

/* ── ZONAS ───────────────────────────────────────────── */
#zonas { background: var(--teal-dk); padding: 90px 6%; }
#zonas .section-title { color: var(--white); }
#zonas .section-tag  { color: var(--yellow); }
#zonas .section-sub  { color: var(--white); }
.zones-flex { display: flex; flex-wrap: wrap; gap: 12px; }
.zone-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--teal); border: 1.5px solid var(--white);
  border-radius: 50px; padding: 12px 22px;
  color: var(--white); font-weight: 700; font-size: .92rem;
  transition: background .2s, border-color .2s; cursor: default;
}
.zone-chip:hover { background: var(--sage); border-color: var(--white); }

/* ── FAQ ─────────────────────────────────────────────── */
#faq { background: var(--yellow-lt); padding: 100px 6%; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
details { background: var(--white); border-radius: 16px; overflow: hidden; border: 1.5px solid var(--sage-lt); }
summary {
  padding: 20px 22px; font-weight: 800; font-size: 1rem; color: var(--navy);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
summary::after { content: '+'; font-size: 1.4rem; font-weight: 400; color: var(--teal); flex-shrink: 0; margin-left: 12px; }
details[open] summary::after { content: '−'; }
details p { padding: 0 22px 20px; font-size: .9rem; color: var(--gray); line-height: 1.7; }
.faq-visual { position: sticky; top: 100px; }
.faq-cta-box {
  background: var(--teal);
  border-radius: 28px; padding: 44px 32px; text-align: center;
}
.faq-cta-box h3 { font-family: 'Outfit', sans-serif; font-size: 1.7rem; font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.faq-cta-box h3 .accent { color: var(--yellow); }
.faq-cta-box p { color: var(--white); font-size: .9rem; margin-bottom: 26px; }
.faq-paw { font-size: 2.8rem; margin-bottom: 18px; }

/* ── RESERVA ─────────────────────────────────────────── */
#reserva {
  background: var(--navy);
  padding: 100px 6%; text-align: center;
  position: relative; overflow: hidden;
}
#reserva::before {
  content: none;
}
#reserva::after {
  content: none;
}
#reserva .section-tag  { color: var(--white); }
#reserva .section-title { color: var(--white); margin-bottom: 14px; }
#reserva .section-sub  { color: var(--white); margin: 0 auto 44px; }
.steps-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.step-card {
  background: var(--navy-lt); border: 1.5px solid var(--sage);
  border-radius: 20px; padding: 24px;
  display: flex; align-items: flex-start; gap: 16px;
  text-align: left; max-width: 250px; backdrop-filter: blur(8px);
}
.step-circle {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: .95rem; color: var(--coral);
}
.step-card strong { display: block; color: var(--white); font-weight: 800; margin-bottom: 4px; }
.step-card p { font-size: .84rem; color: var(--white); }

/* ── FOOTER ──────────────────────────────────────────── */
footer { background: var(--dark); padding: 76px 6% 36px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand p { color: var(--sage); font-size: .9rem; margin-top: 14px; max-width: 300px; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-weight: 900; font-size: .92rem; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--sage); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-col a:hover { color: var(--teal); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.social-icon {
  width: 38px; height: 38px; background: var(--navy-lt); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); text-decoration: none; transition: background .2s, color .2s;
}
.social-icon:hover { background: var(--teal); color: var(--white); }
.social-icon .emoji-icon { font-size: 1rem; }
.social-icon .brand-icon { font-size: 1rem; }
.footer-bottom { border-top: 1px solid var(--navy-lt); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--sage); font-size: .8rem; }

/* ── WHATSAPP FLOAT ──────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  background: #25D366;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: transform .2s;
  color: var(--white);
}
.wa-float:hover { transform: scale(1.12); }
.wa-float .emoji-icon { font-size: 1.55rem; }
.wa-float .brand-icon { font-size: 1.55rem; fill: var(--white); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; gap: 36px; min-height: auto; padding: 60px 6%; }
  .hero-photo img { height: 440px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid-2col { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .test-cards { grid-template-columns: 1fr; }
  .stats-band-inner { gap: 32px; }
}
@media (max-width: 768px) {
  #hero { padding: 48px 5%; }
  .hero-photo img { height: 320px; }
  .services-grid { grid-template-columns: 1fr; }
  .fan-grid { height: 240px; }
  .fan-card { width: 140px; height: 200px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  nav .nav-links { display: none; }
  .services-header { flex-direction: column; }
  .services-header-right { display: none; }
  .stats-band-inner { gap: 24px; }
}
@media (max-width: 520px) {
  .fan-card { width: 100px; height: 150px; }
  .hero-stats { flex-wrap: wrap; gap: 14px; }
  .test-card-inner { grid-template-columns: 1fr; }
  .test-photo { display: none; }
}
