/* =============================================
   ANIMALANDIA PETSHOP — Rediseño Pro
   ============================================= */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --verde:        #1a6b3c;
  --verde-medio:  #2d8a55;
  --verde-claro:  #4db876;
  --verde-menta:  #e8f5ee;
  --verde-acento: #3ecf72;
  --texto:        #1a2e1f;
  --texto-muted:  #5a7263;
  --blanco:       #fafcfa;
  --crema:        #f4f9f5;
  --borde:        rgba(26,107,60,0.1);
  --adopcion-bg:     #fff9f0;
  --adopcion-acento: #e07a3a;
  --adopcion-borde:  rgba(224,122,58,0.15);
}

html { scroll-behavior: smooth; }

body {
  background: var(--blanco);
  color: var(--texto);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  cursor: url(img/patita_cursor_32px.png), auto;
}

/* ── BANNER ── */
.banner {
  background: var(--verde); color: white;
  text-align: center; padding: 10px 48px;
  font-size: 13px; letter-spacing: 0.3px;
  display: flex; justify-content: center; align-items: center;
  gap: 16px; position: relative;
}
.banner-close {
  background: none; border: none; color: rgba(255,255,255,0.6);
  cursor: pointer; font-size: 14px; position: absolute; right: 20px; transition: color 0.2s;
}
.banner-close:hover { color: white; }

/* ── NAV ── */
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 56px; position: sticky; top: 0; z-index: 100;
  background: rgba(250,252,250,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--borde);
}
.nav-logo { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 900; color: var(--verde); text-decoration: none; letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--texto-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--verde); }
.nav-cta { background: var(--verde); color: white; padding: 10px 22px; border-radius: 100px; font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.nav-cta:hover { background: var(--verde-medio); transform: translateY(-1px); }

/* ── HERO ── */
.hero { min-height: 92vh; display: flex; align-items: center; padding: 80px 56px; position: relative; overflow: hidden; background: var(--crema); }
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-tag { display: inline-block; background: rgba(62,207,114,0.12); border: 1px solid rgba(62,207,114,0.3); color: var(--verde); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 28px; font-weight: 600; }
.hero h1 { font-family: 'Fraunces', serif; font-size: clamp(52px, 7vw, 90px); font-weight: 900; line-height: 1.0; letter-spacing: -2px; color: var(--texto); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--verde); }
.hero p { font-size: 17px; color: var(--texto-muted); line-height: 1.7; max-width: 480px; margin-bottom: 36px; font-weight: 300; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.btn-primary { background: var(--verde); color: white; padding: 14px 28px; border-radius: 100px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.25s; display: inline-block; border: none; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; }
.btn-primary:hover { background: var(--verde-medio); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,107,60,0.25); }

.btn-ghost { border: 1.5px solid var(--borde); color: var(--texto); padding: 14px 28px; border-radius: 100px; font-size: 14px; font-weight: 500; text-decoration: none; transition: all 0.25s; display: inline-block; }
.btn-ghost:hover { border-color: var(--verde); color: var(--verde); }

.hero-info { display: flex; align-items: center; gap: 24px; padding: 20px 28px; background: white; border-radius: 16px; border: 1px solid var(--borde); width: fit-content; box-shadow: 0 4px 20px rgba(26,107,60,0.06); }
.info-item { display: flex; align-items: center; gap: 12px; }
.info-icon { font-size: 20px; }
.info-item strong { display: block; font-size: 13px; font-weight: 600; color: var(--texto); }
.info-item span { font-size: 12px; color: var(--texto-muted); }
.info-divider { width: 1px; height: 32px; background: var(--borde); }

.hero-foto { background: url('img/hero02.jpg.png') center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,40,20,0.82) 0%, rgba(10,40,20,0.55) 60%, rgba(10,40,20,0.3) 100%); }
.hero-foto .hero-content { position: relative; z-index: 1; }
.hero-foto h1 { color: white; }
.hero-foto p  { color: rgba(255,255,255,0.75); }
.hero-foto .hero-tag { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); color: white; }
.btn-ghost-blanco { border-color: rgba(255,255,255,0.35) !important; color: white !important; }
.btn-ghost-blanco:hover { border-color: var(--verde-acento) !important; color: var(--verde-acento) !important; }
.hero-info-dark { background: rgba(0,0,0,0.35) !important; border-color: rgba(255,255,255,0.12) !important; backdrop-filter: blur(8px); }
.hero-info-dark .info-item strong { color: white !important; }
.hero-info-dark .info-item span   { color: rgba(255,255,255,0.6) !important; }
.hero-info-dark .info-divider     { background: rgba(255,255,255,0.15) !important; }

/* ── BANNER INVIERNO ── */
.banner-invierno { background: linear-gradient(135deg, #0d2240 0%, #1a3a5c 50%, #0d3320 100%); padding: 80px 56px; position: relative; overflow: hidden; }
.banner-invierno::before { content: '❄️'; position: absolute; font-size: 200px; opacity: 0.05; right: -20px; top: -40px; pointer-events: none; }
.invierno-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.invierno-tag { display: inline-block; background: rgba(100,180,255,0.15); border: 1px solid rgba(100,180,255,0.3); color: #a8d8ff; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 20px; font-weight: 600; }
.invierno-left h2 { font-family: 'Fraunces', serif; font-size: clamp(32px, 4vw, 48px); font-weight: 900; color: white; line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px; }
.invierno-left h2 em { font-style: italic; color: #a8d8ff; }
.invierno-left p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; font-weight: 300; margin-bottom: 32px; max-width: 400px; }
.invierno-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.invierno-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 20px; display: flex; align-items: flex-start; gap: 14px; transition: background 0.3s; }
.invierno-item:hover { background: rgba(255,255,255,0.1); }
.inv-icon { font-size: 24px; flex-shrink: 0; }
.invierno-item h4 { font-size: 14px; font-weight: 600; color: white; margin-bottom: 4px; }
.invierno-item p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.4; }

/* ── BENEFICIOS ── */
.beneficios { background: var(--verde); padding: 0; }
.beneficios-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.beneficio-item { padding: 40px 32px; border-right: 1px solid rgba(255,255,255,0.1); transition: background 0.3s; }
.beneficio-item:last-child { border-right: none; }
.beneficio-item:hover { background: rgba(255,255,255,0.05); }
.ben-icon { font-size: 28px; display: block; margin-bottom: 16px; }
.beneficio-item h3 { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 700; color: white; margin-bottom: 8px; }
.beneficio-item p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ── SECCIONES BASE ── */
section { padding: 100px 56px; }
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-tag { display: block; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--verde); margin-bottom: 14px; font-weight: 600; }
.section-header h2, .nosotros-texto h2, .contacto-info h2, .pagos .section-header h2 { font-family: 'Fraunces', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 900; line-height: 1.1; letter-spacing: -1px; color: var(--texto); }
.section-header h2 em, .nosotros-texto h2 em, .contacto-info h2 em, .pagos .section-header h2 em { font-style: italic; color: var(--verde); }

/* ── CATÁLOGO ── */
.productos { background: var(--crema); }
.catalogo-grupo { margin-bottom: 24px; border-radius: 20px; overflow: hidden; border: 1px solid var(--borde); }
.catalogo-grupo summary { background: white; color: var(--texto); padding: 20px 28px; font-weight: 600; font-size: 15px; cursor: pointer; list-style: none; border-bottom: 1px solid var(--borde); transition: background 0.2s; display: flex; align-items: center; gap: 12px; }
.catalogo-grupo summary:hover { background: var(--verde-menta); }
.catalogo-grupo[open] summary { background: var(--verde-menta); color: var(--verde); }
.productos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; padding: 24px; background: white; min-height: 60px; }
.producto-card { background: var(--crema); border-radius: 16px; overflow: hidden; border: 1px solid var(--borde); transition: all 0.3s; }
.producto-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,107,60,0.12); border-color: rgba(62,207,114,0.3); }
.producto-img { width: 100%; aspect-ratio: 1; overflow: hidden; background: white; }
.producto-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.producto-card:hover .producto-img img { transform: scale(1.06); }
.producto-info { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.producto-info h4 { font-size: 13px; font-weight: 600; color: var(--texto); line-height: 1.4; }
.btn-carrito { background: var(--verde); color: white; padding: 8px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; text-decoration: none; text-align: center; transition: all 0.2s; display: block; }
.btn-carrito:hover { background: var(--verde-medio); transform: scale(1.02); }

/* ══════════════════════════════════════════════
   ADOPCIÓN
══════════════════════════════════════════════ */
.adopcion { background: var(--adopcion-bg); padding: 100px 56px; position: relative; }
.adopcion::before { content: '🐾'; position: absolute; font-size: 320px; opacity: 0.03; right: -40px; top: 40px; pointer-events: none; line-height: 1; }
.adopcion .section-tag { color: var(--adopcion-acento); }
.adopcion .section-header h2 em { color: var(--adopcion-acento); }
.adopcion-subtitulo { font-size: 16px; color: var(--texto-muted); margin-top: 12px; font-weight: 300; }

.adopcion-filtros { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filtro-btn { background: white; border: 1.5px solid var(--adopcion-borde); color: var(--texto-muted); padding: 10px 22px; border-radius: 100px; font-size: 14px; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; cursor: pointer; transition: all 0.2s; }
.filtro-btn:hover { border-color: var(--adopcion-acento); color: var(--adopcion-acento); }
.filtro-btn.active { background: var(--adopcion-acento); border-color: var(--adopcion-acento); color: white; }

.adopcion-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; margin-bottom: 40px; }

.animal-card { background: white; border-radius: 20px; overflow: hidden; border: 1px solid var(--adopcion-borde); transition: all 0.3s; position: relative; }
.animal-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(224,122,58,0.13); border-color: rgba(224,122,58,0.35); }
.animal-foto { width: 100%; height: 200px; overflow: hidden; background: linear-gradient(135deg, #fde8d5, #fcebd8); display: flex; align-items: center; justify-content: center; position: relative; }
.animal-foto img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.animal-card:hover .animal-foto img { transform: scale(1.06); }
.animal-foto-placeholder { font-size: 72px; opacity: 0.6; }
.animal-badge { position: absolute; top: 12px; left: 12px; background: white; border-radius: 100px; padding: 4px 12px; font-size: 12px; font-weight: 700; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.animal-stock-badge { position: absolute; top: 12px; right: 12px; background: var(--adopcion-acento); color: white; border-radius: 100px; padding: 4px 12px; font-size: 11px; font-weight: 700; }
.animal-info { padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.animal-nombre { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 900; color: var(--texto); }
.animal-meta { display: flex; gap: 12px; font-size: 12px; color: var(--texto-muted); font-weight: 500; flex-wrap: wrap; }
.animal-meta span { background: var(--crema); padding: 3px 10px; border-radius: 100px; border: 1px solid var(--borde); }
.animal-desc { font-size: 13px; color: var(--texto-muted); line-height: 1.6; font-weight: 300; }
.animal-card .btn-adoptar { background: var(--adopcion-acento); color: white; padding: 10px 20px; border-radius: 100px; font-size: 13px; font-weight: 600; text-decoration: none; text-align: center; display: block; margin-top: 6px; transition: all 0.2s; }
.animal-card .btn-adoptar:hover { background: #c96a2c; transform: scale(1.02); }

.adopcion-vacio { text-align: center; padding: 60px 20px; color: var(--texto-muted); }
.adopcion-vacio span { font-size: 48px; display: block; margin-bottom: 16px; opacity: 0.4; }
.adopcion-vacio p { font-size: 16px; font-weight: 300; }

.adopcion-admin-trigger { text-align: center; margin-top: 24px; }
.btn-admin-toggle { background: none; border: 1.5px solid var(--borde); color: var(--texto-muted); padding: 10px 24px; border-radius: 100px; font-size: 13px; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; cursor: pointer; transition: all 0.2s; }
.btn-admin-toggle:hover { border-color: var(--verde); color: var(--verde); }

/* ══════════════════════════════════════════════
   PANEL ADMIN
══════════════════════════════════════════════ */
.admin-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 300; opacity: 0; pointer-events: none; transition: opacity 0.3s; backdrop-filter: blur(4px); }
.admin-overlay.visible { opacity: 1; pointer-events: all; }

.admin-panel { position: fixed; top: 0; right: -480px; width: 460px; height: 100vh; background: white; z-index: 400; box-shadow: -8px 0 40px rgba(0,0,0,0.12); transition: right 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; overflow: hidden; }
.admin-panel.abierto { right: 0; }

.admin-panel-header { display: flex; justify-content: space-between; align-items: center; padding: 24px 28px; border-bottom: 1px solid var(--borde); background: var(--verde-menta); flex-shrink: 0; }
.admin-panel-header h3 { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 900; color: var(--verde); }
.admin-close { background: none; border: none; font-size: 18px; cursor: pointer; color: var(--texto-muted); transition: color 0.2s; line-height: 1; padding: 4px; }
.admin-close:hover { color: var(--texto); }

.admin-login { padding: 32px 28px; display: flex; flex-direction: column; gap: 16px; }
.admin-login p { font-size: 14px; color: var(--texto-muted); }
.admin-input-group { display: flex; gap: 10px; }

/* Tabs */
.admin-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--borde); flex-shrink: 0; }
.admin-tab { flex: 1; padding: 14px 8px; background: none; border: none; border-bottom: 2px solid transparent; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 600; color: var(--texto-muted); cursor: pointer; transition: all 0.2s; }
.admin-tab:hover { color: var(--verde); }
.admin-tab.active { color: var(--verde); border-bottom-color: var(--verde); background: var(--verde-menta); }

.admin-tab-content { display: flex; flex-direction: column; gap: 0; }

/* Contenido scrolleable */
.admin-contenido { overflow-y: auto; flex: 1; display: flex; flex-direction: column; }

.admin-bloque { padding: 20px 28px; }
.admin-bloque h4 { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 700; color: var(--texto); margin-bottom: 16px; }

.admin-form { display: flex; flex-direction: column; gap: 10px; }
.admin-input { width: 100%; padding: 10px 14px; border: 1.5px solid var(--borde); border-radius: 10px; font-size: 13px; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--texto); background: var(--crema); transition: border-color 0.2s; outline: none; }
.admin-input:focus { border-color: var(--verde); }
.admin-textarea { resize: vertical; }
.admin-stock-row { display: flex; align-items: center; gap: 12px; }
.admin-stock-row label { font-size: 13px; font-weight: 500; color: var(--texto-muted); white-space: nowrap; }
.admin-input-num { width: 80px; text-align: center; }

.admin-divider { height: 1px; background: var(--borde); margin: 0 28px; }
.admin-error { color: #c0392b; font-size: 13px; min-height: 18px; }

.admin-seccion-label { font-size: 12px; font-weight: 700; color: var(--verde); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }

/* Lista items admin */
.admin-lista { display: flex; flex-direction: column; gap: 10px; }
.admin-item { background: var(--crema); border: 1px solid var(--borde); border-radius: 14px; padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; }
.admin-item-header { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.admin-item-nombre { font-weight: 700; font-size: 13px; color: var(--texto); flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.admin-item-tipo { font-size: 11px; background: var(--verde-menta); color: var(--verde); padding: 3px 10px; border-radius: 100px; font-weight: 600; white-space: nowrap; }

.admin-item-stock { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--texto-muted); }
.stock-control { display: flex; align-items: center; gap: 6px; }
.stock-btn { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--borde); background: white; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.15s; line-height: 1; color: var(--texto); }
.stock-btn:hover { border-color: var(--verde); color: var(--verde); }
.stock-num { font-weight: 700; font-size: 15px; color: var(--texto); min-width: 20px; text-align: center; }

.btn-eliminar { background: none; border: 1.5px solid rgba(192,57,43,0.25); color: #c0392b; padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif; align-self: flex-start; }
.btn-eliminar:hover { background: #c0392b; color: white; }

/* ── SERVICIOS ── */
.servicios { background: white; }
.servicios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.servicio-card { background: var(--crema); border-radius: 20px; padding: 36px 28px; border: 1px solid var(--borde); transition: all 0.3s; display: flex; flex-direction: column; gap: 12px; }
.servicio-card:hover { border-color: rgba(62,207,114,0.4); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,107,60,0.1); }
.servicio-icon { font-size: 36px; }
.servicio-card h3 { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; color: var(--texto); }
.servicio-card p { font-size: 14px; color: var(--texto-muted); line-height: 1.6; flex: 1; }

/* ── NOSOTROS ── */
.nosotros { background: var(--verde-menta); }
.nosotros-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.nosotros-texto p { font-size: 15px; color: var(--texto-muted); line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
.nosotros-texto h2 { margin-bottom: 24px; }
.nosotros-stats { display: flex; gap: 32px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--borde); }
.nstat { display: flex; flex-direction: column; gap: 4px; }
.nstat-num { font-family: 'Fraunces', serif; font-size: 36px; font-weight: 900; color: var(--verde); line-height: 1; }
.nstat-label { font-size: 12px; color: var(--texto-muted); letter-spacing: 0.5px; }
.nosotros-fotos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.nosotros-fotos img { width: 100%; height: 200px; object-fit: cover; border-radius: 16px; transition: all 0.3s; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.nosotros-fotos img:hover { transform: scale(1.03); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }

/* ── PAGOS ── */
.pagos { background: white; }
.pagos-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 48px; }
.pago-card { background: var(--crema); border: 1px solid var(--borde); border-radius: 20px; padding: 28px 24px; width: 160px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; transition: all 0.3s; font-size: 14px; font-weight: 500; color: var(--texto); }
.pago-card:hover { transform: translateY(-4px); border-color: rgba(62,207,114,0.3); box-shadow: 0 12px 28px rgba(26,107,60,0.1); }
.pago-icon { font-size: 32px; }
.qr-img { width: 80px; height: 80px; border-radius: 8px; margin-top: 4px; }

/* ── CONTACTO ── */
.contacto { background: var(--crema); }
.contacto-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contacto-lista { list-style: none; display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.contacto-lista li { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--texto-muted); }
.contacto-lista span { font-size: 20px; }
.contacto-lista a { color: var(--texto); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.contacto-lista a:hover { color: var(--verde); }
.redes { display: flex; gap: 12px; flex-wrap: wrap; }
.red-btn { background: var(--verde); color: white; padding: 12px 20px; border-radius: 100px; text-decoration: none; font-size: 13px; font-weight: 600; transition: all 0.2s; }
.red-btn:hover { background: var(--verde-medio); transform: translateY(-2px); }
.mapa { width: 100%; height: 360px; border-radius: 20px; border: none; box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.contacto-info h2 { margin-bottom: 8px; }

/* ── FOOTER ── */
footer { background: var(--verde); padding: 28px 56px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 900; color: white; }
.footer-inner span { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ── WSP FLOAT ── */
.wsp-float { position: fixed; bottom: 28px; right: 28px; z-index: 200; background: #25d366; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; text-decoration: none; box-shadow: 0 8px 24px rgba(37,211,102,0.4); transition: transform 0.2s; }
.wsp-float:hover { transform: scale(1.1); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 60px 24px; min-height: auto; }
  .hero-info { flex-direction: column; gap: 16px; width: 100%; }
  .info-divider { width: 100%; height: 1px; }
  section { padding: 64px 24px; }
  .beneficios-grid { grid-template-columns: 1fr 1fr; }
  .beneficio-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .productos-grid { grid-template-columns: repeat(2, 1fr); }
  .servicios-grid { grid-template-columns: 1fr; }
  .nosotros-inner { grid-template-columns: 1fr; gap: 32px; }
  .nosotros-fotos { grid-template-columns: 1fr 1fr; }
  .contacto-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .adopcion { padding: 64px 24px; }
  .adopcion-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .admin-panel { width: 100%; right: -100%; }
  .admin-panel.abierto { right: 0; }
}

@media (max-width: 480px) {
  .adopcion-grid { grid-template-columns: 1fr; }
  .invierno-inner { grid-template-columns: 1fr; gap: 32px; }
  .banner-invierno { padding: 56px 24px; }
}