@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Work+Sans:wght@300;400;500;600&display=swap');

:root {
  --rosa: #E91E8C;
  --rosa-hover: #C2185B;
  --naranja: #F2A93C;
  --fondo: #FAF6F0;
  --tinta: #2B2B2B;
  --gris-suave: #8A8577;
  --blanco: #FFFFFF;

  /* Heredados del sistema de temas (compatibilidad) */
  --verde-pino: #2C4A3E;
  --arena: #F5EFE6;
  --ambar: #E8A33D;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', sans-serif;
  background-color: var(--fondo);
  color: var(--tinta);
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

/* ============================================================
   HERO — LANDING (Colitas Chochas)
   ============================================================ */
.hero-section {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
}

.circulo-decorativo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(760px, 85vw);
  height: min(760px, 85vw);
  border: 2px solid rgba(233, 30, 140, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-flex {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 1.2rem;
}

/* --- Tarjeta principal del hero --- */
.hero {
  flex: 1;
  position: relative;
  background: var(--blanco);
  border: 1px solid rgba(43, 43, 43, 0.09);
  border-radius: 28px;
  padding: 1.4rem 2.2rem 2.4rem;
  box-shadow: 0 18px 45px rgba(43, 43, 43, 0.06);
}

.hero-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-logo img {
  height: 34px;
  max-width: 120px;
  object-fit: contain;
}

.hero-nombre {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--rosa);
  letter-spacing: -0.01em;
}

.hero-nav {
  display: flex;
  gap: 1.7rem;
  align-items: center;
}

.hero-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--tinta);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-nav a:hover,
.hero-nav a.activo {
  color: var(--rosa);
}

.hero-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 10;
}

.hero-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tinta);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-burger.abierto span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hero-burger.abierto span:nth-child(2) {
  opacity: 0;
}

.hero-burger.abierto span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Grid: contenido + imagen --- */
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: center;
  padding: 2.4rem 0 0.4rem;
}

.hero-titulo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.9rem, 6.2vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
}

.hero-titulo .linea-1 {
  display: block;
  color: var(--tinta);
}

.hero-titulo .linea-2 {
  display: block;
  color: var(--rosa);
}

.hero-separador {
  width: 60px;
  height: 3px;
  background: var(--rosa);
  border-radius: 3px;
  margin: 1.5rem 0 1.1rem;
}

.btn-hero {
  display: inline-block;
  margin-top: 1.7rem;
  padding: 0.8rem 1.9rem;
  border: 1.5px solid var(--rosa);
  border-radius: 14px;
  background: transparent;
  color: var(--rosa);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn-hero:hover {
  background: var(--rosa);
  color: var(--blanco);
  transform: translateY(-2px);
}

/* --- Imagen --- */
.hero-imagen {
  position: relative;
}

.hero-imagen img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 22px;
  background: #F1EAE0;
}

/* --- Watermark --- */
.hero-watermark {
  position: absolute;
  bottom: -0.55em;
  left: -0.35em;
  z-index: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(6rem, 14vw, 12rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(43, 43, 43, 0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   HEADER LEGACY (páginas internas, ej. detalle)
   ============================================================ */
header.header-legacy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 2rem;
  background-color: var(--verde-pino);
  color: var(--arena);
}

header.header-legacy img[data-logo-refugio] {
  max-width: 70px;
  max-height: 70px;
  object-fit: contain;
}

header.header-legacy h1 {
  text-align: center;
  flex: 1;
}

/* --- HEADER ADMIN (estilo acorde al landing) --- */
body[data-admin] header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 2rem;
  background-color: var(--blanco);
  color: var(--tinta);
  border-bottom: 1px solid rgba(43, 43, 43, 0.08);
}

body[data-admin] header h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.3rem;
  flex: 1;
  text-align: left;
  color: var(--tinta);
}

body[data-admin] header img[data-logo-refugio] {
  max-width: 70px;
  max-height: 70px;
  object-fit: contain;
}

/* --- CONTACTO HEADER (legacy) --- */
.contacto-header {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 0.6rem;
}

.contacto-header a {
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--arena);
  transition: transform 0.15s ease, color 0.2s ease;
}

.contacto-header a:hover {
  color: var(--ambar);
  transform: translateY(-2px);
}

/* ============================================================
   INTRO DEL CATÁLOGO
   ============================================================ */
.catalogo-intro {
  max-width: 1200px;
  margin: 3.5rem auto 0;
  padding: 0 2rem;
  text-align: center;
}

.catalogo-titulo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
}

.catalogo-titulo::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: var(--naranja);
  margin: 0.9rem auto 0;
}

/* ============================================================
   FILTROS
   ============================================================ */
.filtros {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1.6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.filtros select {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1.5px solid rgba(233, 30, 140, 0.25);
  background-color: var(--blanco);
  color: var(--tinta);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filtros select:hover,
.filtros select:focus {
  border-color: var(--rosa);
  outline: none;
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
}

/* ============================================================
   CATÁLOGO
   ============================================================ */
.catalogo {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.75rem;
  padding: 2rem 2rem 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tarjeta {
  background: var(--blanco);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(43, 43, 43, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.tarjeta:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(43, 43, 43, 0.14);
}

.tarjeta img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.tarjeta-info {
  flex: 1;
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tarjeta-info h3 {
  font-size: 1.2rem;
  color: var(--tinta);
  margin-bottom: 0.6rem;
}

.badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.78rem;
  font-family: 'Work Sans', sans-serif;
  background-color: var(--fondo);
  color: var(--rosa);
  border: 1px solid rgba(233, 30, 140, 0.15);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-weight: 500;
}

.badge::before {
  content: '🐾';
  margin-right: 0.3rem;
  font-size: 0.7rem;
}

.sin-resultados {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gris-suave);
  grid-column: 1 / -1;
  font-size: 1.05rem;
}

/* ============================================================
   SOBRE NOSOTROS
   ============================================================ */
.sobre-nosotros {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 3rem);
  background: var(--blanco);
  overflow: hidden;
}

.sobre-nosotros::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 420px;
  height: 420px;
  border: 2px solid rgba(233, 30, 140, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.sobre-nosotros-contenedor {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.sobre-nosotros-etiqueta {
  display: inline-block;
  background: rgba(233, 30, 140, 0.1);
  color: var(--rosa);
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.sobre-nosotros-titulo {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--tinta);
}

.resaltado {
  color: var(--naranja);
  font-weight: 700;
}

.sobre-nosotros .hero-separador {
  margin: 1.2rem 0 1rem;
}

.sobre-nosotros-parrafo {
  color: var(--gris-suave);
  font-size: 1.02rem;
  max-width: 54ch;
  line-height: 1.7;
}

.sobre-nosotros-parrafo strong {
  color: var(--rosa);
  font-weight: 600;
}

.sobre-nosotros-lista {
  list-style: none;
  margin: 1.4rem 0 1.8rem;
  display: grid;
  gap: 0.7rem;
}

.sobre-nosotros-lista li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.97rem;
  color: var(--tinta);
}

.sobre-nosotros-lista li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--rosa);
  box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.15);
  flex-shrink: 0;
}

.sobre-nosotros-tarjeta {
  position: relative;
  background: var(--fondo);
  border: 1px solid rgba(43, 43, 43, 0.08);
  border-radius: 24px;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: 0 18px 45px rgba(43, 43, 43, 0.06);
}

.sobre-nosotros-tarjeta-icono {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--rosa);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
  box-shadow: 0 10px 24px rgba(233, 30, 140, 0.35);
}

.sobre-nosotros-tarjeta h3 {
  font-size: 1.25rem;
  color: var(--tinta);
  margin-bottom: 0.8rem;
}

.sobre-nosotros-tarjeta p {
  color: var(--gris-suave);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ============================================================
   CONTRATO DE ADOPCIÓN
   ============================================================ */
.adopcion-responsable {
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 3rem);
  background: var(--fondo);
}

.adopcion-responsable-contenedor {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.adopcion-responsable-titulo {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--tinta);
  margin-bottom: 2.5rem;
}

.adopcion-responsable-titulo .resaltado {
  color: var(--naranja);
}

.adopcion-responsable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.adopcion-tarjeta {
  background: var(--blanco);
  border: 1px solid rgba(43, 43, 43, 0.08);
  border-radius: 20px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 10px 30px rgba(43, 43, 43, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.adopcion-tarjeta:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(43, 43, 43, 0.1);
}

.adopcion-tarjeta-titulo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.adopcion-tarjeta-numero {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--rosa);
  color: var(--blanco);
  display: grid;
  place-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 14px rgba(233, 30, 140, 0.3);
}

.adopcion-tarjeta-icono {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--fondo);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.adopcion-tarjeta ul {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.adopcion-tarjeta li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.92rem;
  color: var(--gris-suave);
  line-height: 1.6;
}

.adopcion-tarjeta li::before {
  content: '🐾';
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 0.75rem;
}

.adopcion-cierre {
  display: inline-block;
  margin-top: 2.6rem;
  max-width: 95%;
  background: var(--rosa);
  color: var(--blanco);
  border-radius: 999px;
  padding: 1.15rem 2.2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 30px rgba(233, 30, 140, 0.35);
}

.adopcion-cierre .resaltado {
  color: #FFD9A0;
}

/* ============================================================
   DETALLE
   ============================================================ */
.detalle-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.6rem clamp(1rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.detalle-volver {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--tinta);
  text-decoration: none;
  padding: 0.5rem 1.1rem;
  border: 1.5px solid rgba(43, 43, 43, 0.18);
  border-radius: 999px;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.detalle-volver:hover {
  color: var(--rosa);
  border-color: var(--rosa);
  transform: translateX(-2px);
}

.detalle {
  max-width: 1000px;
  margin: 0 auto 3rem;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.detalle-tarjeta {
  background: var(--blanco);
  border: 1px solid rgba(43, 43, 43, 0.09);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(43, 43, 43, 0.06);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

.detalle-imagen {
  background: #F1EAE0;
}

.detalle-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  display: block;
}

.detalle-info {
  padding: clamp(1.8rem, 4vw, 2.6rem);
  display: flex;
  flex-direction: column;
}

.detalle-etiqueta {
  align-self: flex-start;
  background: rgba(233, 30, 140, 0.1);
  color: var(--rosa);
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.detalle-info h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  letter-spacing: -0.02em;
  color: var(--tinta);
  margin-bottom: 1rem;
}

.detalle-info .badges {
  margin-bottom: 0.2rem;
}

.detalle-info .badge {
  font-size: 0.82rem;
  padding: 0.35rem 0.85rem;
}

.detalle-info .hero-separador {
  margin: 1.4rem 0 1rem;
}

.detalle-sub {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--tinta);
  margin-bottom: 0.55rem;
}

.descripcion {
  color: var(--gris-suave);
  line-height: 1.75;
  font-size: 1rem;
}

.detalle-info #contacto {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  width: 100%;
}

/* --- Contacto DM (detalle) --- */
.contacto-dm {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-start;
  width: 100%;
}

.btn-dm {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--rosa);
  color: var(--blanco);
  border: none;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Work Sans', sans-serif;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(233, 30, 140, 0.28);
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-dm:hover {
  background-color: var(--rosa-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(233, 30, 140, 0.35);
}

.mensaje-sugerido {
  font-size: 0.88rem;
  color: var(--gris-suave);
  background: var(--fondo);
  border: 1px solid rgba(43, 43, 43, 0.08);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  line-height: 1.6;
  max-width: 100%;
}

.contacto-ayuda {
  font-size: 0.82rem;
  color: var(--gris-suave);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-nav {
    gap: 1rem;
  }

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

  .hero-imagen img {
    height: 320px;
  }

  .sobre-nosotros-contenedor {
    grid-template-columns: 1fr;
  }

  .adopcion-responsable-grid {
    grid-template-columns: 1fr;
  }

  .catalogo {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    padding: 1.5rem;
  }
}

@media (max-width: 700px) {
  .hero-burger {
    display: block;
  }

  .hero-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--blanco);
    flex-direction: column;
    gap: 0;
    min-width: 200px;
    border-radius: 16px;
    border: 1px solid rgba(43, 43, 43, 0.08);
    box-shadow: 0 12px 32px rgba(43, 43, 43, 0.12);
    padding: 0.5rem 0;
    z-index: 20;
  }

  .hero-nav.abierto {
    display: flex;
  }

  .hero-nav a {
    padding: 0.7rem 1.2rem;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(43, 43, 43, 0.06);
  }

  .hero-nav a:last-child {
    border-bottom: none;
  }

  .hero {
    padding: 1rem 1.2rem 1.6rem;
  }

  .hero-header {
    padding: 0;
  }

  .hero-titulo {
    font-size: clamp(2.5rem, 11vw, 3.4rem);
  }

  .hero-watermark {
    display: none;
  }

  .circulo-decorativo {
    width: 200px;
    height: 200px;
    top: -40px;
    right: -40px;
  }

  .hero-grid {
    gap: 1.5rem;
    padding: 1.8rem 0 0.4rem;
  }

  .btn-hero {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
    margin-top: 1.2rem;
  }

  .hero-separador {
    margin: 1rem 0;
  }

  .hero-imagen img {
    height: 300px;
    object-position: center 30%;
    border-radius: 18px;
  }

  .catalogo-intro {
    margin-top: 2rem;
    padding: 0 1rem;
  }

  .filtros {
    padding: 1rem;
    gap: 0.5rem;
  }

  .filtros select {
    width: 100%;
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
  }

  .catalogo {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 1rem 2.5rem;
  }

  .tarjeta {
    display: flex;
    flex-direction: row;
    border-radius: 14px;
    align-items: stretch;
  }

  .tarjeta img {
    width: 120px;
    min-height: 120px;
    border-radius: 14px 0 0 14px;
  }

  .tarjeta-info {
    flex: 1;
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .tarjeta-info h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
  }

  .sobre-nosotros {
    padding: 2.5rem 1rem;
  }

  .sobre-nosotros-titulo {
    font-size: 1.4rem;
  }

  .sobre-nosotros-parrafo {
    font-size: 0.92rem;
  }

  .sobre-nosotros-lista li {
    font-size: 0.9rem;
  }

  .sobre-nosotros-tarjeta {
    padding: 1.5rem;
  }

  .adopcion-responsable {
    padding: 2.5rem 1rem;
  }

  .adopcion-responsable-titulo {
    font-size: 1.4rem;
  }

  .adopcion-tarjeta {
    padding: 1.5rem;
  }

  .adopcion-tarjeta ul {
    padding-left: 1.2rem;
  }

  .adopcion-tarjeta li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .adopcion-cierre {
    font-size: 0.95rem;
  }

  /* --- DETALLE --- */
  .detalle-tarjeta {
    grid-template-columns: 1fr;
  }

  .detalle-imagen img {
    min-height: 240px;
    max-height: 300px;
  }

  .detalle-info {
    padding: 1.4rem;
  }

  .detalle-info h2 {
    font-size: 1.6rem;
  }

  .detalle-header {
    padding: 1rem;
  }

  .hero-logo {
    gap: 0.4rem;
  }

  .hero-nombre {
    font-size: 0.95rem;
  }

  .detalle-volver {
    font-size: 0.78rem;
    padding: 0.4rem 0.8rem;
  }

  .btn-dm {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.2rem;
    font-size: 0.88rem;
  }

  .mensaje-sugerido {
    font-size: 0.82rem;
  }

  /* --- SKELETON --- */
  .skeleton-img {
    height: 120px;
  }

  .skeleton-tarjeta {
    display: flex;
    flex-direction: row;
  }

  .skeleton-tarjeta .skeleton-img {
    width: 120px;
    min-height: 120px;
    flex-shrink: 0;
  }

  .skeleton-tarjeta .skeleton-info {
    flex: 1;
    justify-content: center;
  }

  /* --- ADOPTADOS --- */
  .adoptados-seccion {
    padding: 1.5rem 1rem 2.5rem;
  }

  .adoptados-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .adoptados-grid .tarjeta-adoptada {
    display: flex;
    flex-direction: row;
  }

  .adoptados-grid .adoptada-img-wrap {
    width: 100px;
    flex-shrink: 0;
  }

  .adoptados-grid .adoptada-img-wrap img {
    height: 100%;
    min-height: 100px;
  }

  .adoptados-grid .tarjeta-adoptada .tarjeta-info {
    padding: 0.8rem 1rem;
  }

  /* --- COMPARTIR --- */
  .btn-compartir {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   BOTÓN "VER MÁS"
   ============================================================ */
.btn-ver-mas {
  display: block;
  grid-column: 1 / -1;
  margin: 1rem auto 0;
  padding: 0.7rem 2rem;
  background: transparent;
  color: var(--rosa);
  border: 1.5px solid var(--rosa);
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn-ver-mas:hover {
  background: var(--rosa);
  color: var(--blanco);
  transform: translateY(-2px);
}

/* ============================================================
   SKELETON LOADING
   ============================================================ */
.skeleton-tarjeta {
  background: var(--blanco);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(43, 43, 43, 0.08);
}

.skeleton-img {
  width: 100%;
  height: 210px;
  background: linear-gradient(90deg, #eee 25%, #e0e0e0 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-info {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.skeleton-linea {
  border-radius: 8px;
  background: linear-gradient(90deg, #eee 25%, #e0e0e0 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-linea-titulo {
  width: 60%;
  height: 18px;
}

.skeleton-linea-badges {
  width: 80%;
  height: 14px;
}

.skeleton-linea-badge {
  width: 40%;
  height: 14px;
}

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

/* ============================================================
   BOTÓN COMPARTIR (detalle)
   ============================================================ */
.detalle-acciones {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(43, 43, 43, 0.08);
}

.btn-compartir {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--tinta);
  border: 1.5px solid rgba(43, 43, 43, 0.18);
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn-compartir:hover {
  color: var(--rosa);
  border-color: var(--rosa);
  transform: translateY(-2px);
}

/* ============================================================
   ANIMALES ADOPTADOS
   ============================================================ */
.adoptados-seccion {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 3.5rem;
}

.adoptados-header {
  text-align: center;
  margin-bottom: 2rem;
}

.adoptados-titulo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  letter-spacing: -0.02em;
  color: var(--tinta);
  margin-bottom: 0.4rem;
}

.adoptados-titulo::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: var(--naranja);
  margin: 0.9rem auto 0;
}

.adoptados-sub {
  color: var(--gris-suave);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.adoptados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem;
}

.tarjeta-adoptada {
  opacity: 0.65;
  pointer-events: none;
  cursor: default;
  transition: none;
}

.tarjeta-adoptada:hover {
  transform: none;
  box-shadow: 0 2px 10px rgba(43, 43, 43, 0.08);
}

.adoptada-img-wrap {
  position: relative;
}

.adoptada-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: grayscale(0.3);
}

.adoptada-badge {
  position: absolute;
  bottom: 0.6rem;
  left: 0.6rem;
  background: var(--rosa);
  color: var(--blanco);
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(233, 30, 140, 0.3);
}

.badge-adoptado {
  background: rgba(43, 43, 43, 0.06);
  color: var(--gris-suave);
  border-color: rgba(43, 43, 43, 0.1);
}

.badge-adoptado::before {
  content: '✓';
  margin-right: 0.25rem;
  font-size: 0.65rem;
}

/* ============================================================
   MODAL COLABORAR
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 43, 43, 0.45);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.activo {
  opacity: 1;
  visibility: visible;
}

.modal-contenido {
  background: var(--blanco);
  border-radius: 24px;
  padding: 2.4rem 2rem 2rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(43, 43, 43, 0.18);
  text-align: center;
  transform: translateY(12px) scale(0.97);
  transition: transform 0.25s ease;
}

.modal-overlay.activo .modal-contenido {
  transform: translateY(0) scale(1);
}

.modal-cerrar {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--gris-suave);
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  line-height: 1;
  transition: color 0.2s;
}

.modal-cerrar:hover {
  color: var(--rosa);
}

.modal-icono {
  font-size: 2.6rem;
  margin-bottom: 0.6rem;
}

.modal-titulo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--rosa);
  margin: 0 0 0.4rem;
}

.modal-texto {
  font-size: 0.9rem;
  color: var(--gris-suave);
  margin: 0 0 1.4rem;
  line-height: 1.5;
}

.modal-datos {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.modal-dato {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(43, 43, 43, 0.06);
}

.modal-dato:last-child {
  border-bottom: none;
}

.modal-dato-label {
  font-size: 0.78rem;
  color: var(--gris-suave);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-dato-valor {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--tinta);
  font-family: 'Poppins', sans-serif;
}

.modal-dato-highlight {
  color: var(--rosa);
  font-size: 1rem;
  font-weight: 700;
}

.modal-mp {
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  background: #EDF5FE;
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--tinta);
}

.modal-mp-icono {
  margin-right: 0.3rem;
}

.modal-footer {
  margin-top: 1.4rem;
  font-size: 0.72rem;
  color: var(--gris-suave);
  letter-spacing: 0.03em;
}

/* ============================================================
   ACCESIBILIDAD
   ============================================================ */
a:focus-visible,
button:focus-visible,
select:focus-visible {
  outline: 2px solid var(--naranja);
  outline-offset: 2px;
}
