﻿/* -------------------------------------------------------------
   ZOAGOLDEN - ESTILO PROFESIONAL Y SOBRIO (HIGH END)
   Diseño responsivo por Antigravity
   ------------------------------------------------------------- */

/* IMPORTACIÓN DE FUENTES DESDE GOOGLE FONTS
   EB Garamond se usa para H2. Helvetica Neue queda para H3/H4 y UI.
   Inter se conserva para textos corridos. Prata queda importada solo como
   fallback visual si se decide restaurar la versión anterior desde backup. */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400&family=Inter:wght@300;400;500;600;700&family=Prata&display=swap');

/* VARIABLES DE DISEÑO (PALETA CORPORATIVA DE PRESTIGIO) */
:root {
  /* Paleta anterior Zoagolden, conservada como referencia:
     --color-onix: #121619;
     --color-pine-teal: #2D4739;
     --color-sea-green: #09814A;
     --color-dry-sage: #BCB382;
     --color-soft-fawn: #E5C687;
     --color-ruby-diamond: #E31717;
     --color-bg-light: #f8f9fa;
     --color-bg-dark: #121619;
     --color-text-dark: #1C1F22;
     --color-text-light: #F4F4F5;
     --font-title: 'Prata', serif;
  */

  /* Nueva paleta cliente: taupes, carbón y marfil cálido */
  --color-taupe-primary: #70685D;
  --color-taupe-secondary: #736960;
  --color-charcoal: #1C1C1C;
  --color-charcoal-divider: #2B2B2B;
  --color-ivory-warm: #E1D7CC;
  --color-beige-grey: #D2C7BB;
  --color-warm-grey: #9B9B9B;
  --color-soft-taupe-grey: #AAA198;
  --color-placeholder-dark: #666666;

  --color-onix: #171717;
  --color-pine-teal: var(--color-taupe-primary);
  --color-sea-green: var(--color-taupe-secondary);
  --color-dry-sage: var(--color-soft-taupe-grey);
  --color-soft-fawn: #fff;
  --color-ruby-diamond: #E31717;
  
  --color-bg-light: #F3EEE8;
  --color-bg-dark: var(--color-charcoal);
  --color-text-dark: #1C1C1C;
  --color-text-light: #FFFFFF;
  --color-border-subtle: rgba(112, 104, 93, 0.22);
  
  --font-heading-serif: "EB Garamond", Garamond, "Times New Roman", serif;
  --font-heading-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-title: var(--font-heading-sans);
  --font-body: 'Inter', sans-serif;
  
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-medium: 0 12px 30px rgba(28, 28, 28, 0.10);
  --shadow-card: 0 8px 24px rgba(112, 104, 93, 0.10);

  --transition-elegant: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px;
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.7;
  background-color: var(--color-bg-light);
}

.logo-text,
.section-tag,
.desktop-nav-link,
.btn-premium,
.btn-outline {
  font-family: var(--font-title);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2 {
  font-family: var(--font-heading-serif);
  font-weight: 400;
  font-size: 48px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff2aa;
  text-transform: none;
}

h3,
h4 {
  font-family: var(--font-heading-sans);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #171717;
}

/* -------------------------------------------------------------
   MENÚ DE NAVEGACIÓN EDITORIAL Y HEADER FLOTANTE
   ------------------------------------------------------------- */
header.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  background-color: rgba(225, 215, 204, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
  z-index: 100;
  transition: var(--transition-elegant);
}

header.main-header.scrolled {
  height: 65px;
  margin-top: 10px;
  background-color: var(--color-taupe-primary);
  border-bottom-color: rgba(18, 22, 25, 0.12);
  border-radius: 10px;
}

header.main-header.scrolled .logo-text,
header.main-header.scrolled .logo-text span,
header.main-header.scrolled .desktop-nav-link {
  color: var(--color-text-light);
}

header.main-header.scrolled .logo-text span {
  color: var(--color-ivory-warm);
}

header.main-header.scrolled .nav-menu-btn span {
  background-color: var(--color-ivory-warm);
}

header.main-header.hero-header:not(.scrolled) {
  background-color: rgba(18, 22, 25, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

header.main-header.hero-header:not(.scrolled) .logo-text,
header.main-header.hero-header:not(.scrolled) .desktop-nav-link {
  color: var(--color-text-light);
}

header.main-header.hero-header:not(.scrolled) .logo-text span {
  color: var(--color-soft-fawn);
}

header.main-header.hero-header:not(.scrolled) .nav-menu-btn span {
  background-color: var(--color-text-light);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--color-onix);
  letter-spacing: 0.08em;
}

.logo-home-link,
.footer-brand-link,
.brand-inline-link {
  color: inherit;
  text-decoration: none;
}

.logo-home-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.logo-home-link:hover,
.footer-brand-link:hover,
.brand-inline-link:hover {
  opacity: 0.78;
}

.hero-brand-link {
  color: inherit;
  text-decoration: none;
}

.logo-text span {
  color: var(--color-taupe-primary);
  font-weight: bold;
}

/* Navegación Desktop */
.desktop-nav {
  display: flex;
  gap: 30px;
  list-style: none;
}

.desktop-nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-elegant);
  position: relative;
  padding: 5px 0;
}

.desktop-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #eb9216;
  transition: var(--transition-elegant);
  transform: translateX(-50%);
}

.desktop-nav-link:hover {
  color: var(--color-soft-fawn) !important;
}

.desktop-nav-link:hover::after {
  width: 100%;
}

/* Botón de Menú hamburguesa (Móvil / Sidebar) */
.nav-menu-btn {
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 102;
}

.nav-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-onix);
  transition: var(--transition-elegant);
}

.nav-menu-btn.open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.nav-menu-btn.open span:nth-child(2) {
  opacity: 0;
}
.nav-menu-btn.open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* PANEL OFF-CANVAS ELEGANTE */
.nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(390px, 100vw);
  height: 100svh;
  max-height: 100svh;
  background:
    radial-gradient(circle at 12% 8%, rgba(229, 198, 135, 0.18), transparent 34%),
    linear-gradient(155deg, rgba(45, 71, 57, 0.98), rgba(69, 91, 70, 0.97));
  z-index: 101;
  box-shadow: -18px 0 48px rgba(18, 22, 25, 0.22);
  transition: right 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(88px, 12vh, 118px) clamp(26px, 5vw, 42px) max(38px, env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-left: 1px solid rgba(236, 220, 149, 0.22);
}

.nav-panel::-webkit-scrollbar {
  width: 7px;
}

.nav-panel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.nav-panel::-webkit-scrollbar-thumb {
  background: rgba(226, 214, 121, 0.55);
  border-radius: 999px;
}

.nav-panel.open {
  right: 0;
}

.nav-panel ul {
  list-style: none;
  width: 100%;
}

.nav-panel li {
  margin: 0;
  border-bottom: 1px solid rgba(236, 220, 149, 0.18);
}

.nav-panel a {
  font-family: "Aptos Narrow", Aptos, "Segoe UI", var(--font-body);
  font-size: clamp(1.08rem, 2.6vw, 1.42rem);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e6dc82;
  text-shadow: 0 1px 5px rgba(18, 22, 25, 0.22);
  text-decoration: none;
  transition: var(--transition-elegant);
  display: block;
  padding: 20px 0;
}

.nav-panel a:hover {
  color: #fad506;
  transform: translateX(8px);
  text-shadow: 0 2px 8px rgba(18, 22, 25, 0.3);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-elegant);
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  header.main-header {
    padding: 0 24px;
  }

  .nav-panel {
    width: min(360px, 92vw);
    padding-top: max(92px, calc(env(safe-area-inset-top) + 78px));
  }
}

/* -------------------------------------------------------------
   SECCIÓN HERO / PORTADA DE PRESTIGIO
   ------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 0 10%;
  color: white;
  margin-top: 0;
  overflow: hidden;
  border-bottom: none;
}

@media (max-width: 1024px) {
  .hero {
    padding: 0 5%;
  }
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  object-position: center center;
  background-color: var(--color-onix);
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(18, 22, 25, 0.5) 20%, rgba(18, 22, 25, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 750px;
  animation: heroFadeIn 1s ease-out;
}

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

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-soft-fawn);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: 4rem;
  line-height: 1.15;
  color: white;
  font-weight: normal;
  margin-bottom: 25px;
}

.hero h1 span {
  color: var(--color-soft-fawn);
}

.hero-desc {
  font-size: 1.15rem;
  font-weight: 300;
  color: #FFF;
  margin-bottom: 40px;
  line-height: 1.8;
}

.btn-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-premium {
  display: inline-block;
  background-color: var(--color-charcoal);
  color: white;
  padding: 15px 36px;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition-elegant);
  border: 1px solid var(--color-charcoal);
}

.btn-premium:hover {
  background-color: transparent;
  color: white;
  border-color: white;
  transform: translateY(-3px);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: white;
  padding: 15px 36px;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition-elegant);
}

.btn-outline:hover {
  background-color: white;
  color: var(--color-onix);
  border-color: white;
  transform: translateY(-3px);
}

@media (max-width: 640px) {
  .hero h1 { font-size: 2.8rem; }
  .hero-desc { font-size: 1rem; }
}

/* -------------------------------------------------------------
   ESTRUCTURA DE CONTENEDOR Y SECCIONES
   ------------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 100px;
}

section {
  padding: 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

section:last-of-type {
  border-bottom: none;
}

/* Alternancia de Colores por Secciones (Paleta Corporativa) */
/* #filosofia background y color se definen en la sección de filosofía más abajo */

#perros {
  background-color: #FAF6F0; /* Blanco Hueso / Fawn Suave */
  padding-bottom: 0;
  padding-top: 75px;
  border-bottom: none;
}

#camadas {
  background-color: #F1F4F2; /* Sage Suave (Verde pino al 4% de opacidad) */
}

#condiciones {
  background-color: #FFF3E6; /* Naranja pastel suave */
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px auto;
}

.section-tag {
  font-size: 1.2rem;
  color: var(--color-sea-green);
  margin-bottom: 15px;
  margin-top: 50px;
  display: block;
}

.section-head h2 {
  font-family: var(--font-title);
  font-size: 2.8rem;
  color: var(--color-onix);
  line-height: 1.25;
}

.section-head h2 span {
  font-style: normal;
  color: var(--color-pine-teal);
}

.section-head::after {
  content: '♦';
  color: var(--color-ruby-diamond);
  display: block;
  font-size: 1.34rem;
  margin-top: 20px;
  text-shadow: 0 2px 7px rgba(112, 104, 93, 0.26);
}

/* -------------------------------------------------------------
   SECCIÓN FILOSOFÍA Y VIRTUDES (ESTILO BANNER PREMIUM)
   ------------------------------------------------------------- */
#filosofia {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, rgba(18, 22, 25, 0.86) 0%, rgba(18, 22, 25, 0.66) 45%, rgba(45, 71, 57, 0.78) 65%),
              url('assets/dogs/beach_hero.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: white;
  padding: 128px 0;
  border-bottom: none;
}

#filosofia::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 30%, rgba(229, 198, 135, 0.16), transparent 30%),
              linear-gradient(90deg, rgba(229, 198, 135, 0.08), transparent 38%);
  pointer-events: none;
}

#filosofia .container {
  position: relative;
  z-index: 1;
}

#filosofia .section-head h2 {
  color: white;
}

#filosofia .section-head h2 span {
  color: var(--color-soft-fawn);
}

.filosofia-banner-content {
  max-width: 1180px;
  margin: 0 auto;
}

.filosofia-stage {
  display: block;
  animation: philosophyRise 0.8s ease-out both;
}

.filosofia-main-copy {
  text-align: center;
}

.ethics-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-soft-fawn);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ethics-eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background-color: var(--color-soft-fawn);
}

.filosofia-banner-content h3 {
  font-family: var(--font-title);
  font-size: clamp(2.45rem, 5vw, 4.4rem);
  color: var(--color-soft-fawn);
  margin-bottom: 30px;
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 1.05;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.filosofia-banner-content p {
  font-size: 1.12rem;
  color: #e5e7eb; /* Gris claro de alta legibilidad */
  margin-bottom: 18px;
  line-height: 1.8;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.filosofia-banner-content p strong {
  color: white;
  font-weight: 600;
}

.ethics-lead {
  font-size: 1.18rem;
  max-width: 650px;
  margin-bottom: 30px;
}

.ethics-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.ethics-visual-card {
  position: relative;
  min-height: 250px;
  padding: 22px;
  color: white;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(229, 198, 135, 0.18);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: default;
  transition: transform 0.38s ease, border-color 0.38s ease, background-color 0.38s ease, box-shadow 0.38s ease;
}

.ethics-visual-card::after {
  content: '';
  position: absolute;
  inset: auto 18px 18px auto;
  width: 34px;
  height: 1px;
  background-color: var(--color-soft-fawn);
  opacity: 0.65;
  transition: width 0.38s ease;
}

.ethics-visual-card:hover {
  transform: translateY(-8px);
  background-color: rgba(18, 22, 25, 0.52);
  border-color: rgba(229, 198, 135, 0.46);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.ethics-visual-card:hover::after {
  width: 70px;
}

.ethics-visual-card strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.32rem;
  color: var(--color-soft-fawn);
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 10px;
}

.ethics-visual-card span:not(.ethics-illustration) {
  display: block;
  color: #e5e7eb;
  font-size: 0.9rem;
  line-height: 1.55;
}

.ethics-welcome-card {
  margin: 28px auto 0;
  max-width: 1040px;
  padding: clamp(24px, 4vw, 38px);
  text-align: left;
  color: white;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(18, 22, 25, 0.38)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(229, 198, 135, 0.24);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ethics-welcome-header {
  display: flex;
  gap: 18px;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(229, 198, 135, 0.18);
}

.ethics-welcome-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--color-onix);
  background-color: var(--color-soft-fawn);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.ethics-welcome-kicker {
  display: block;
  color: var(--color-soft-fawn);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ethics-welcome-card h4 {
  font-family: var(--font-title);
  color: white;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: normal;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

.ethics-welcome-copy {
  columns: 2 320px;
  column-gap: clamp(24px, 4vw, 44px);
}

.ethics-welcome-copy p {
  max-width: none;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.72;
  text-align: left;
  break-inside: avoid;
}

.ethics-welcome-copy p:first-child::first-letter {
  color: var(--color-soft-fawn);
  font-family: var(--font-title);
  font-size: 2.4rem;
  line-height: 0.9;
}

.ethics-illustration {
  display: block;
  width: 100%;
  height: 96px;
  margin-bottom: 18px;
}

.ethics-illustration svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.draw-line,
.dna-strand {
  fill: none;
  stroke: var(--color-soft-fawn);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: drawEthicsLine 2.7s ease forwards;
}

.ethics-visual-card:nth-child(2) .draw-line,
.ethics-visual-card:nth-child(2) .dna-strand {
  animation-delay: 0.14s;
}

.ethics-visual-card:nth-child(3) .draw-line,
.ethics-visual-card:nth-child(3) .dna-strand {
  animation-delay: 0.28s;
}

.ethics-visual-card:nth-child(4) .draw-line,
.ethics-visual-card:nth-child(4) .dna-strand {
  animation-delay: 0.42s;
}

.soft-dot {
  fill: var(--color-soft-fawn);
  opacity: 0.86;
  animation: softBlink 2.8s ease-in-out infinite;
}

.dot-two {
  animation-delay: 0.6s;
}

.sun-pulse {
  fill: rgba(229, 198, 135, 0.2);
  stroke: var(--color-soft-fawn);
  stroke-width: 3;
  transform-origin: center;
  animation: sunPulse 3.2s ease-in-out infinite;
}

.paw-step {
  fill: var(--color-soft-fawn);
  opacity: 0;
  animation: pawWalk 3s ease-in-out infinite;
}

.paw-two {
  animation-delay: 0.35s;
}

.paw-three {
  animation-delay: 0.7s;
}

.dna-strand {
  stroke: rgba(229, 198, 135, 0.82);
  stroke-width: 2.4;
}

.ethics-visual-card:hover .draw-line,
.ethics-visual-card:hover .dna-strand {
  stroke: white;
}

@keyframes drawEthicsLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes softBlink {
  0%, 100% {
    opacity: 0.36;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.08);
  }
}

@keyframes sunPulse {
  0%, 100% {
    opacity: 0.56;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes pawWalk {
  0%, 18% {
    opacity: 0;
    transform: translateY(4px);
  }
  35%, 70% {
    opacity: 0.9;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

#filosofia .filosofia-feature-panel {
  display: grid;
  gap: 22px;
}

#filosofia .quote-box {
  background-color: rgba(18, 22, 25, 0.42);
  background-image: linear-gradient(135deg, rgba(229, 198, 135, 0.11) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(229, 198, 135, 0.28);
  border-left: 5px solid var(--color-soft-fawn);
  padding: 44px 42px;
  margin-top: 0;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.45s ease, border-color 0.45s ease, background-color 0.45s ease;
}

#filosofia .quote-box:hover {
  transform: translateY(-8px);
  border-color: rgba(229, 198, 135, 0.5);
  background-color: rgba(18, 22, 25, 0.5);
}

#filosofia .quote-box p {
  color: #e5e7eb;
  font-style: italic;
  line-height: 1.75;
  font-size: 1.18rem;
  text-align: center;
  text-align-last: center;
}

.ethics-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.ethics-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  color: white;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(229, 198, 135, 0.22);
  border-radius: 4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.35s ease, background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.ethics-action i {
  color: var(--color-soft-fawn);
  font-size: 1rem;
  transition: transform 0.35s ease;
}

.ethics-action span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ethics-action:hover {
  color: var(--color-onix);
  background-color: var(--color-soft-fawn);
  border-color: var(--color-soft-fawn);
  transform: translateY(-5px);
}

.ethics-action:hover i {
  color: var(--color-onix);
  transform: scale(1.15);
}

.ethics-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ethics-proof {
  min-height: 96px;
  padding: 18px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s ease, background-color 0.35s ease, border-color 0.35s ease;
}

.ethics-proof span {
  color: var(--color-soft-fawn);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.ethics-proof strong {
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ethics-proof:hover {
  transform: translateY(-6px);
  background-color: rgba(45, 71, 57, 0.72);
  border-color: rgba(229, 198, 135, 0.42);
}

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

@media (max-width: 900px) {
  .filosofia-stage {
    display: block;
  }

  .filosofia-banner-content h3 {
    font-size: 2.4rem;
  }

  .filosofia-banner-content p,
  #filosofia .quote-box p {
    font-size: 1.05rem;
  }

  .ethics-visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  #filosofia {
    padding: 96px 0;
    background-attachment: scroll;
    background-position: 42% center;
  }

  .ethics-actions {
    flex-direction: column;
  }

  .ethics-visual-grid {
    grid-template-columns: 1fr;
  }

  .ethics-visual-card {
    min-height: 220px;
  }

  .ethics-welcome-header {
    align-items: flex-start;
  }

  .ethics-welcome-copy {
    columns: 1;
  }

  .ethics-proof-grid {
    grid-template-columns: 1fr;
  }

  .ethics-action {
    width: 100%;
    justify-content: center;
  }

  .ethics-proof-grid {
    display: grid;
  }
}

.quote-box {
  background-color: var(--color-bg-light);
  border-left: 4px solid var(--color-soft-fawn);
  padding: 25px 30px;
  margin-top: 35px;
  box-shadow: var(--shadow-subtle);
  border-radius: 0 8px 8px 0;
  position: relative;
  background-image: linear-gradient(135deg, rgba(229, 198, 135, 0.05) 0%, transparent 100%);
}

.quote-box p {
  font-style: italic;
  color: var(--color-onix);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* -------------------------------------------------------------
   SECCIÓN EJEMPLARES (REGISTRO Y PEDIGRÍ)
   ------------------------------------------------------------- */
.section-gender-title {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--color-onix);
  margin: 50px 0 30px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-gender-title::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background-color: var(--color-border-subtle);
}

.perros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 50px;
  perspective: 1200px;
}

.female-grid .female-card:last-child {
  grid-column: 2 / 3;
}

.male-zone {
  background-color: #E7F2F4;
  border-top: 1px solid rgba(45, 71, 57, 0.08);
  border-bottom: 1px solid rgba(45, 71, 57, 0.08);
  margin: 60px calc(50% - 50vw) 0;
  padding: 64px max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.male-zone .male-title {
  margin-top: 0;
}

.male-zone .section-gender-title::after {
  background-color: rgba(45, 71, 57, 0.18);
}

.male-zone .male-grid {
  margin-bottom: 0;
}

.male-zone .section-footer-row {
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .perros-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .female-grid .female-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 35px) / 2);
  }
}

@media (max-width: 650px) {
  .perros-grid {
    grid-template-columns: 1fr;
  }

  .female-grid .female-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .male-zone {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

/* TARJETA CERTIFICADO PRESTIGIO */
.registry-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  /*border: 8px solid var(--color-sea-green);*/
  transition: var(--transition-elegant);
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  will-change: transform;
}

.registry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--color-soft-fawn);
}

.registry-card.tilt-active {
  transition: transform 0.08s ease-out, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 22px 45px rgba(18, 22, 25, 0.14);
}

.registry-card.tilt-active .registry-img-wrapper,
.registry-card.tilt-active .registry-info {
  transform: translateZ(18px);
}

.registry-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
  transition: transform 0.25s ease;
}

.rabel-card-track { display: flex; height: 100%; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.rabel-card-track::-webkit-scrollbar { display: none; }
.rabel-card-track > a { flex: 0 0 100%; min-width: 0; scroll-snap-align: start; }
.rabel-card-carousel .rabel-card-track img { object-fit: contain; transform: none; }
.rabel-card-carousel { background: var(--color-bg-light); }
.rabel-card-carousel button {
  position: absolute; top: calc(50% - 22px); width: 44px; height: 44px;
  border: 0; border-radius: 50%; background: var(--color-charcoal); color: white;
  font-size: 30px; cursor: pointer;
}
.rabel-photo-prev { left: 8px; }
.rabel-photo-next { right: 8px; }
.rabel-photo-count { position: absolute; bottom: 8px; right: 12px; padding: 2px 10px; border-radius: 12px; background: var(--color-charcoal); color: white; font-size: 14px; pointer-events: none; }
.rabel-card-carousel button:focus-visible, .rabel-card-track:focus-visible { outline: 3px solid #fff2aa; outline-offset: -3px; }

.registry-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit:cover;
  display: block;
  transition: var(--transition-elegant);
}

.registry-card:hover .registry-img-wrapper img {
  transform: scale(1.05);
}

.registry-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--color-onix);
  color: var(--color-soft-fawn);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--color-soft-fawn);
}

.registry-info {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease;
}

.registry-header {
  margin-bottom: 20px;
}

.registry-name {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--color-onix);
  margin-bottom: 5px;
  font-weight: normal;
}

.registry-pedigree {
  font-size: 0.85rem;
  color: var(--color-sea-green);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.registry-desc {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Tabla Técnica de Salud */
.tech-health-table {
  background-color: var(--color-bg-light);
  border-radius: 6px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.tech-health-table h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-pine-teal);
  letter-spacing: 1px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--color-border-subtle);
  padding-bottom: 6px;
}

.tech-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.tech-row:last-child {
  margin-bottom: 0;
}

.tech-label {
  color: #6b7280;
}

.tech-value {
  font-weight: 600;
  color: var(--color-onix);
}

/* Diferenciación visual de tarjetas por género */
.registry-card.female-card {
  border-top: 4px solid var(--color-soft-fawn);
}

.registry-card.male-card {
  border-top: 4px solid var(--color-pine-teal);
}

/* -------------------------------------------------------------
   SECCIÓN GALERÍA / INSTAGRAM REELS (EDITORIAL STYLE)
   ------------------------------------------------------------- */
.editorial-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 950px) {
  .editorial-gallery {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.editorial-intro h3 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--color-onix);
  font-weight: normal;
  margin-bottom: 20px;
}

.editorial-intro p {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 25px;
  line-height: 1.8;
}

.editorial-features {
  list-style: none;
  margin-bottom: 35px;
}

.editorial-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.editorial-features li i {
  color: var(--color-sea-green);
}

.litter-commitment {
  display: grid;
  gap: clamp(20px, 3vw, 36px);
  max-width: 1120px;
  margin: 0 auto;
}

.litter-story {
  --story-bg: #F4FAF4;
  --story-accent: #8AA98D;
  --story-ink: var(--color-onix);
  --story-muted: #405349;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(20px, 3.2vw, 44px);
  align-items: center;
  padding: clamp(16px, 2vw, 24px);
  border-radius: 14px;
  background:
    radial-gradient(circle at 8% 12%, color-mix(in srgb, var(--story-accent) 18%, transparent), transparent 34%),
    linear-gradient(135deg, color-mix(in srgb, var(--story-bg) 92%, white), var(--story-bg));
  border: 1px solid color-mix(in srgb, var(--story-accent) 28%, transparent);
  box-shadow: 0 14px 32px rgba(18, 22, 25, 0.06);
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: none;
  transition: transform 240ms cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 240ms ease,
              border-color 240ms ease;
}

.litter-story:nth-child(even) {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.litter-story:nth-child(even) .litter-story-media {
  order: 2;
}

.litter-story.is-visible {
  opacity: 1;
  transform: none;
}

.litter-story:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--story-accent) 42%, transparent);
  box-shadow: 0 20px 42px rgba(18, 22, 25, 0.1);
}

.litter-story::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid color-mix(in srgb, var(--story-accent) 16%, transparent);
  border-radius: 10px;
  pointer-events: none;
}

.litter-story::after {
  content: '';
  display: none;
}

.litter-story:nth-child(1) { z-index: 1; }
.litter-story:nth-child(2) { z-index: 2; }
.litter-story:nth-child(3) { z-index: 3; }
.litter-story:nth-child(4) { z-index: 4; }
.litter-story:nth-child(5) { z-index: 5; }
.litter-story:nth-child(6) { z-index: 6; }

.litter-story--gold {
  --story-bg: #EEF7EC;
  --story-accent: #8AA98D;
}

.litter-story--sage {
  --story-bg: #E8F2E8;
  --story-accent: #769273;
}

.litter-story--green {
  --story-bg: #EAF5EF;
  --story-accent: #6F9F82;
}

.litter-story--sky {
  --story-bg: #EDF6F2;
  --story-accent: #83A99A;
}

.litter-story--rose {
  --story-bg: #F3F8EE;
  --story-accent: #9CAA73;
}

.litter-story--dark {
  --story-bg: #DFEDE2;
  --story-accent: #2D4739;
  --story-ink: var(--color-onix);
  --story-muted: #405349;
  background:
    radial-gradient(circle at 8% 14%, rgba(45, 71, 57, 0.16), transparent 34%),
    linear-gradient(135deg, #E7F1E8, #DCEBE2);
  color: var(--color-onix);
}

.litter-story-media,
.litter-story-mark,
.litter-story-copy {
  position: relative;
  z-index: 1;
}

.litter-story-media {
  min-height: clamp(280px, 34vw, 430px);
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--story-bg) 70%, white);
}

.litter-story-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.96) contrast(0.98);
  transition: transform 520ms cubic-bezier(0.23, 1, 0.32, 1), filter 240ms ease;
}

.litter-story:hover .litter-story-media img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.litter-story-mark {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.82);
  color: var(--color-pine-teal);
  border: 1px solid rgba(255, 255, 255, 0.64);
}

.litter-story-number {
  font-family: var(--font-body);
  color: color-mix(in srgb, var(--story-accent) 70%, var(--story-ink));
  font-size: 0.76rem;
  line-height: 1;
  opacity: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.litter-story-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: color-mix(in srgb, var(--story-accent) 14%, white);
  color: color-mix(in srgb, var(--story-accent) 76%, var(--color-pine-teal));
  border: 1px solid color-mix(in srgb, var(--story-accent) 38%, transparent);
  font-size: 1rem;
  box-shadow: none;
}

.litter-story--dark .litter-story-icon {
  background-color: rgba(255, 255, 255, 0.78);
  color: var(--color-pine-teal);
}

.litter-story-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background-color: color-mix(in srgb, var(--story-accent) 16%, white);
  color: color-mix(in srgb, var(--story-accent) 68%, var(--color-pine-teal));
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.litter-story--dark .litter-story-kicker {
  background-color: rgba(255, 255, 255, 0.62);
  color: var(--color-pine-teal);
}

.litter-story h3 {
  font-family: var(--font-title);
  color: var(--story-ink);
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  line-height: 1.05;
  font-weight: normal;
  margin: 0 0 18px;
  max-width: 15ch;
  text-wrap: balance;
}

.litter-story p {
  color: var(--story-muted);
  font-size: clamp(0.94rem, 1.05vw, 1.02rem);
  line-height: 1.62;
  margin: 0 0 14px;
  max-width: 60ch;
}

.litter-pill-list,
.litter-evidence-grid {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.litter-pill-list li,
.litter-evidence-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.68);
  border: 1px solid color-mix(in srgb, var(--story-accent) 24%, transparent);
  color: color-mix(in srgb, var(--story-ink) 72%, var(--story-accent));
  font-size: 0.8rem;
  font-weight: 700;
}

.litter-story-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  background-color: var(--color-sea-green);
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1), background-color 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 12px 24px rgba(4, 120, 87, 0.18);
}

.litter-story-button:hover {
  background-color: var(--color-pine-teal);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(4, 120, 87, 0.24);
}

.litter-story-button:active {
  transform: scale(0.97);
}

@media (max-width: 900px) {
  .litter-commitment {
    gap: 20px;
  }

  .litter-story,
  .litter-story:nth-child(even) {
    position: relative;
    top: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px;
    align-content: center;
  }

  .litter-story:nth-child(even) .litter-story-media {
    order: initial;
  }

  .litter-story-media {
    min-height: 320px;
  }

  .litter-story h3 {
    max-width: 13ch;
  }
}

@media (max-width: 560px) {
  .litter-story {
    padding: 14px;
  }

  .litter-story-media {
    min-height: 240px;
  }

  .litter-story h3 {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .litter-story p {
    font-size: 0.94rem;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .litter-pill-list,
  .litter-evidence-grid {
    gap: 8px;
    margin-top: 18px;
  }

  .litter-pill-list li,
  .litter-evidence-grid span {
    min-height: 32px;
    padding: 7px 11px;
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .litter-story,
  .litter-story.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Restauración de Camadas y Compromiso: vuelve al layout sticky narrativo. */
.litter-commitment {
  display: grid;
  gap: clamp(18px, 3vw, 32px);
  max-width: 1040px;
  margin: 0 auto;
}

.litter-story,
.litter-story:nth-child(even) {
  --story-bg: #FFF9EA;
  --story-accent: var(--color-soft-fawn);
  --story-ink: var(--color-onix);
  --story-muted: #4b5563;
  min-height: clamp(360px, 54vh, 520px);
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(18px, 3.6vw, 46px);
  align-items: center;
  padding: clamp(24px, 4vw, 48px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 16%, color-mix(in srgb, var(--story-accent) 22%, transparent), transparent 30%),
    linear-gradient(135deg, color-mix(in srgb, var(--story-bg) 92%, white), var(--story-bg));
  border: 1px solid color-mix(in srgb, var(--story-accent) 30%, transparent);
  box-shadow: 0 18px 42px rgba(18, 22, 25, 0.08);
  position: sticky;
  top: 92px;
  overflow: hidden;
  opacity: 0.72;
  transform: translateY(18px) scale(0.985);
  transition: opacity 320ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 320ms cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 220ms ease;
}

.litter-story:hover {
  transform: translateY(18px) scale(0.985);
  border-color: color-mix(in srgb, var(--story-accent) 30%, transparent);
  box-shadow: 0 18px 42px rgba(18, 22, 25, 0.08);
}

.litter-story.is-visible,
.litter-story.is-visible:hover {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.litter-story::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid color-mix(in srgb, var(--story-accent) 24%, transparent);
  border-radius: 8px;
  pointer-events: none;
}

.litter-story::after {
  content: '';
  display: block;
  position: absolute;
  width: 220px;
  height: 220px;
  right: -78px;
  bottom: -96px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--story-accent) 15%, transparent);
  pointer-events: none;
}

.litter-story--gold {
  --story-bg: #FFF4D5;
  --story-accent: #DCA85E;
}

.litter-story--sage {
  --story-bg: #EEF5ED;
  --story-accent: #769273;
}

.litter-story--green {
  --story-bg: #E8F3EE;
  --story-accent: #09814A;
}

.litter-story--sky {
  --story-bg: #EAF4F6;
  --story-accent: #5B8EA0;
}

.litter-story--rose {
  --story-bg: #F8ECE7;
  --story-accent: #C98270;
}

.litter-story--dark {
  --story-bg: #2d4739;
  --story-accent: var(--color-soft-fawn);
  --story-ink: white;
  --story-muted: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 16% 18%, rgba(229, 198, 135, 0.2), transparent 30%),
    linear-gradient(135deg, #365b49 0%, #2d4739 52%, #203229 100%);
  color: white;
}

.litter-story-sticky,
.litter-story-copy {
  position: relative;
  z-index: 1;
}

.litter-story-sticky {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}

.litter-story-number {
  font-family: var(--font-title);
  color: color-mix(in srgb, var(--story-accent) 70%, var(--story-ink));
  font-size: clamp(3.6rem, 9vw, 7rem);
  line-height: 0.8;
  opacity: 0.28;
  font-weight: normal;
  letter-spacing: 0;
}

.litter-story-icon {
  width: clamp(70px, 8vw, 98px);
  height: clamp(70px, 8vw, 98px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: rgba(255, 255, 255, 0.62);
  color: color-mix(in srgb, var(--story-accent) 76%, var(--color-pine-teal));
  border: 1px solid color-mix(in srgb, var(--story-accent) 38%, transparent);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  box-shadow: 0 18px 34px rgba(18, 22, 25, 0.08);
}

.litter-story--dark .litter-story-icon {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-soft-fawn);
  box-shadow: none;
}

.litter-story-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background-color: color-mix(in srgb, var(--story-accent) 16%, white);
  color: color-mix(in srgb, var(--story-accent) 68%, var(--color-pine-teal));
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.litter-story--dark .litter-story-kicker {
  background-color: rgba(255, 255, 255, 0.11);
  color: var(--color-soft-fawn);
}

.litter-story h3 {
  font-size: clamp(1.95rem, 4vw, 3.55rem);
  line-height: 1;
  margin: 0 0 18px;
  max-width: 14ch;
}

.litter-story p {
  color: var(--story-muted);
  font-size: clamp(0.94rem, 1.05vw, 1.02rem);
  line-height: 1.62;
  margin: 0 0 14px;
  max-width: 68ch;
}

@media (max-width: 900px) {
  .litter-story,
  .litter-story:nth-child(even) {
    position: sticky;
    top: 86px;
    min-height: calc(100svh - 148px);
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px 22px max(54px, env(safe-area-inset-bottom));
    align-content: center;
  }

  .litter-story-sticky {
    min-height: auto;
    flex-direction: row;
    align-items: center;
  }

  .litter-story h3 {
    max-width: 13ch;
  }
}

@media (max-width: 560px) {
  .litter-story,
  .litter-story:nth-child(even) {
    padding: 24px 18px max(46px, env(safe-area-inset-bottom));
    top: 78px;
    min-height: calc(100svh - 118px);
  }

  .litter-story-number {
    font-size: 4rem;
  }

  .litter-story-icon {
    width: 72px;
    height: 72px;
    font-size: 1.85rem;
  }

  .litter-story h3 {
    font-size: 2.12rem;
    margin-bottom: 16px;
  }
}

/* VISUALIZADOR DE REELS INTEGRADO */
.reels-screen {
  background-color: var(--color-onix);
  border-radius: 12px;
  border: 1px solid rgba(229, 198, 135, 0.3);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 9/16;
}

.reel-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-glass-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(18,22,25,0.85) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 80%, rgba(18,22,25,0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  color: white;
  z-index: 2;
}

.reel-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.reel-logo-tag {
  color: var(--color-soft-fawn);
  font-weight: 600;
}

.reel-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.reel-desc-box {
  max-width: 80%;
}

.reel-profile-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.reel-user-pic {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--color-soft-fawn);
}

.reel-handle {
  font-size: 0.8rem;
  font-weight: 600;
}

.reel-text {
  font-size: 0.8rem;
  line-height: 1.4;
  opacity: 0.9;
}

.reel-actions-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.reel-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.7rem;
  gap: 4px;
}

.reel-btn i {
  font-size: 1.3rem;
  transition: var(--transition-elegant);
}

.reel-btn.liked i {
  color: var(--color-soft-fawn);
  transform: scale(1.15);
}

/* Botones de navegación laterales del visualizador */
.reel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(18,22,25,0.6);
  border: 1px solid rgba(229,198,135,0.2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-elegant);
}

.reel-arrow:hover {
  background-color: var(--color-sea-green);
  border-color: var(--color-sea-green);
}

.reel-arrow-left { left: 15px; }
.reel-arrow-right { right: 15px; }

/* -------------------------------------------------------------
   SECCIÓN COMPROMISO Y CONDICIONES (ACORDEÓN BINDER)
   ------------------------------------------------------------- */
.guia-adopcion {
  max-width: 1180px;
  margin: 0 auto;
}

.adoption-journey {
  position: relative;
  background-color: #FFF3E6;
  margin: 0 calc(50% - 50vw);
  padding: 8px max(24px, calc((100vw - 1180px) / 2 + 24px)) 56px;
}

.journey-intro {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.journey-kicker {
  display: inline-block;
  color: var(--color-sea-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.journey-intro h3 {
  font-family: var(--font-title);
  color: var(--color-onix);
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 14px;
  text-wrap: balance;
}

.journey-intro p {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
}

.journey-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 16px;
  align-items: center;
}

.journey-viewport {
  overflow: hidden;
  padding: 18px 4px 26px;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.journey-viewport:active {
  cursor: grabbing;
}

.journey-grid {
  display: flex;
  gap: 18px;
  position: relative;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.journey-step {
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 390px;
  background-color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(188, 179, 130, 0.3);
  border-radius: 8px;
  padding: 0 22px 24px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  opacity: 1;
  transform: scale(0.94);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, opacity 0.35s ease;
}

.journey-step.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(9, 129, 74, 0.28);
  box-shadow: var(--shadow-medium);
}

.journey-step::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-soft-fawn), var(--color-sea-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.journey-step:hover {
  transform: translateY(-8px) scale(1);
  border-color: rgba(9, 129, 74, 0.32);
  box-shadow: var(--shadow-medium);
}

.journey-step:hover::after {
  transform: scaleX(1);
}

.journey-media {
  position: relative;
  height: 155px;
  margin: 0 -22px 22px;
  overflow: hidden;
  background-color: var(--color-pine-teal);
}

.journey-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 22, 25, 0.02) 0%, rgba(18, 22, 25, 0.34) 100%);
}

.journey-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.journey-media::after {
  opacity: 0.78;
}

.journey-media--responsible img {
  object-position: center 62%;
}

.journey-step:hover .journey-media img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.journey-visual {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(229, 198, 135, 0.4);
  display: grid;
  place-items: center;
  margin: -54px 0 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 26px rgba(18, 22, 25, 0.14);
  transition: background-color 0.35s ease, transform 0.35s ease;
}

.journey-number {
  position: absolute;
  top: -9px;
  right: -10px;
  min-width: 34px;
  min-height: 28px;
  border-radius: 999px;
  background-color: var(--color-onix);
  color: var(--color-soft-fawn);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  display: grid;
  place-items: center;
}

.journey-visual i {
  color: var(--color-pine-teal);
  font-size: 1.45rem;
  animation: journeyFloat 3.4s ease-in-out infinite;
}

.journey-step:hover .journey-visual {
  background-color: var(--color-pine-teal);
  transform: scale(1.04);
}

.journey-step:hover .journey-visual i {
  color: var(--color-soft-fawn);
}

.journey-step h4 {
  font-family: var(--font-title);
  color: var(--color-onix);
  font-size: 1.45rem;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 12px;
}

.journey-step p {
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.journey-step a {
  color: var(--color-sea-green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

.journey-step a:hover {
  color: var(--color-pine-teal);
}

.journey-nav {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(45, 71, 57, 0.16);
  border-radius: 50%;
  background-color: white;
  color: var(--color-pine-teal);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease, opacity 0.28s ease;
}

.journey-nav:hover:not(:disabled) {
  transform: translateY(-3px);
  background-color: var(--color-pine-teal);
  border-color: var(--color-pine-teal);
  color: var(--color-soft-fawn);
}

.journey-nav:disabled {
  opacity: 0.38;
  cursor: default;
}

.journey-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.journey-dot {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 50%;
  background-color: rgba(45, 71, 57, 0.22);
  cursor: pointer;
  padding: 0;
  transition: width 0.28s ease, border-radius 0.28s ease, background-color 0.28s ease;
}

.journey-dot.active {
  width: 28px;
  border-radius: 999px;
  background-color: var(--color-sea-green);
}

.journey-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 18px 22px;
  background-color: rgba(229, 198, 135, 0.13);
  border: 1px solid rgba(229, 198, 135, 0.32);
  border-radius: 8px;
}

.journey-note i {
  color: var(--color-sea-green);
  font-size: 1.2rem;
}

.journey-note p {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.55;
}

@keyframes journeyFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 1100px) {
  .journey-step {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 640px) {
  .journey-carousel {
    grid-template-columns: 1fr;
  }

  .journey-nav {
    display: none;
  }

  .journey-step {
    flex-basis: 100%;
  }

  .journey-step {
    min-height: auto;
  }

  .journey-note {
    align-items: flex-start;
  }
}

/* -------------------------------------------------------------
   BOTONES DE SCROLL A SECCIONES (SCROLL TOP)
   ------------------------------------------------------------- */
.section-footer-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.scroll-top-btn {
  background: none;
  border: none;
  color: var(--color-dry-sage);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition-elegant);
  display: flex;
  align-items: center;
  gap: 8px;
}

.scroll-top-btn:hover {
  color: var(--color-sea-green);
  transform: translateY(-3px);
}

/* -------------------------------------------------------------
   PIE DE PÁGINA (FOOTER CORPORATIVO)
   ------------------------------------------------------------- */
footer.main-footer {
  background-color: var(--color-taupe-secondary);
  color: var(--color-text-light);
  padding: 80px 0 40px 0;
  border-top: 3px solid var(--color-charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-brand h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--color-ivory-warm);
  margin-bottom: 15px;
}

.footer-brand h3 span {
  color: var(--color-ivory-warm);
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
}

.brand-inline-link-light {
  color: white;
}

.brand-inline-link-muted {
  color: inherit;
}

.footer-brand p {
  color: var(--color-beige-grey);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--color-ivory-warm);
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(225, 215, 204, 0.28);
  padding-bottom: 8px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--color-beige-grey);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-elegant);
}

.footer-links a:hover {
  color: var(--color-soft-fawn);
  padding-left: 5px;
}

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

.footer-social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(28, 28, 28, 0.18);
  border: 1px solid rgba(225, 215, 204, 0.24);
  color: white;
  border-radius: 4px;
  transition: var(--transition-elegant);
  text-decoration: none;
  font-size: 1.1rem;
}

.footer-social-link:hover {
  background-color: var(--color-charcoal);
  border-color: var(--color-charcoal);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(43, 43, 43, 0.36);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-top-btn {
  color: var(--color-ivory-warm);
  border: 1px solid rgba(225, 215, 204, 0.34);
  border-radius: 4px;
  padding: 12px 18px;
  background-color: rgba(255, 255, 255, 0.04);
}

.footer-top-btn:hover {
  color: var(--color-onix);
  background-color: var(--color-soft-fawn);
  border-color: var(--color-soft-fawn);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--color-soft-taupe-grey);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--color-soft-taupe-grey);
  text-decoration: none;
  transition: var(--transition-elegant);
}

.footer-bottom-links a:hover {
  color: var(--color-soft-fawn);
}

/* -------------------------------------------------------------
   ASISTENTE DE AYUDA RÁPIDA
   ------------------------------------------------------------- */
.helpbot {
  position: fixed;
  right: 24px;
  bottom: 34px;
  z-index: 120;
  font-family: var(--font-body);
}

.helpbot-toggle {
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid rgba(229, 198, 135, 0.45);
  border-radius: 999px;
  background-color: var(--color-pine-teal);
  color: white;
  box-shadow: 0 16px 38px rgba(18, 22, 25, 0.28);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.helpbot-toggle i {
  color: var(--color-soft-fawn);
}

.helpbot-toggle span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.helpbot-toggle:hover {
  transform: translateY(-4px);
  background-color: var(--color-onix);
  box-shadow: 0 24px 52px rgba(18, 22, 25, 0.34);
}

.helpbot-panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: min(390px, calc(100vw - 32px));
  max-height: min(700px, calc(100vh - 132px));
  background-color: rgba(250, 246, 240, 0.97);
  border: 1px solid rgba(188, 179, 130, 0.45);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(18, 22, 25, 0.28);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
}

.helpbot.open .helpbot-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.helpbot-header {
  padding: 22px;
  background-color: var(--color-onix);
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.helpbot-kicker {
  display: block;
  color: var(--color-soft-fawn);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.helpbot-header h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: normal;
  line-height: 1.2;
  margin: 0;
}

.helpbot-close {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  color: white;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.helpbot-close:hover {
  background-color: var(--color-soft-fawn);
  color: var(--color-onix);
}

.helpbot-body {
  padding: 20px;
  overflow: auto;
  max-height: calc(min(700px, calc(100vh - 132px)) - 196px);
}

.helpbot-message {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #4b5563;
  background-color: white;
  border: 1px solid rgba(188, 179, 130, 0.22);
  border-radius: 8px;
  padding: 13px 14px;
  margin-bottom: 14px;
}

.helpbot-answer {
  background-color: rgba(255, 255, 255, 0.72);
  border-left: 4px solid var(--color-soft-fawn);
  border-radius: 0 8px 8px 0;
  padding: 16px;
  margin-bottom: 16px;
}

.helpbot-answer h4 {
  font-family: var(--font-title);
  font-size: 1.12rem;
  font-weight: normal;
  color: var(--color-pine-teal);
  margin: 0 0 8px;
}

.helpbot-answer p {
  margin: 0;
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.6;
}

.helpbot-answer strong {
  color: var(--color-onix);
}

.helpbot-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.helpbot-question {
  border: 1px solid rgba(45, 71, 57, 0.18);
  border-radius: 999px;
  background-color: white;
  color: var(--color-pine-teal);
  padding: 9px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.helpbot-question:hover,
.helpbot-question.active {
  background-color: var(--color-pine-teal);
  border-color: var(--color-pine-teal);
  color: white;
  transform: translateY(-2px);
}

.helpbot-custom-question {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(188, 179, 130, 0.28);
}

.helpbot-custom-question label {
  display: block;
  color: var(--color-onix);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.helpbot-custom-question textarea {
  width: 100%;
  resize: none;
  border: 1px solid rgba(45, 71, 57, 0.16);
  border-radius: 6px;
  background-color: white;
  color: var(--color-onix);
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 11px 12px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.helpbot-custom-question textarea:focus {
  border-color: var(--color-sea-green);
  box-shadow: 0 0 0 3px rgba(9, 129, 74, 0.12);
}

.helpbot-custom-question button {
  width: 100%;
  min-height: 42px;
  margin-top: 10px;
  border: none;
  border-radius: 4px;
  background-color: var(--color-pine-teal);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.helpbot-custom-question button:hover {
  background-color: var(--color-sea-green);
  transform: translateY(-2px);
}

.helpbot-footer {
  padding: 16px 20px 28px;
  border-top: 1px solid rgba(188, 179, 130, 0.28);
  background-color: rgba(255, 255, 255, 0.58);
}

.helpbot-whatsapp {
  min-height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 4px;
  background-color: var(--color-sea-green);
  color: white;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.helpbot-whatsapp:hover {
  background-color: var(--color-pine-teal);
  transform: translateY(-3px);
}

@media (max-width: 640px) {
  .helpbot {
    right: 16px;
    bottom: 24px;
  }

  .helpbot-panel {
    bottom: 68px;
    max-height: calc(100vh - 104px);
  }

  .helpbot-body {
    max-height: calc(100vh - 312px);
  }

  .helpbot-footer {
    padding-bottom: 30px;
  }

  .helpbot-toggle {
    min-height: 50px;
    padding: 0 16px;
  }
}

/* -------------------------------------------------------------
   ESTILOS ADICIONALES PARA PÁGINAS DE DETALLE DE PERROS & PEDIGRÍ
   ------------------------------------------------------------- */
.dog-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-top: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .dog-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.dog-visuals {
  position: sticky;
  top: 100px;
}

@media (max-width: 900px) {
  .dog-visuals {
    position: static;
  }
}

.dog-main-image-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 2px solid var(--color-sea-green);
  background-color: white;
  margin-bottom: 20px;
}

.dog-main-image-container img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: cover;
  display: block;
}

.dog-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.dog-gallery-thumb {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  cursor: pointer;
  aspect-ratio: 1;
}

.dog-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-elegant);
  display: block;
}

.dog-gallery-thumb img:hover {
  transform: scale(1.1);
}

/* ÁRBOL DE PEDIGRÍ */
.pedigree-container {
  width: 100%;
  overflow-x: auto;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--color-sea-green);
}

.pedigree-table {
  width: 100%;
  min-width: 750px;
  border-collapse: collapse;
  background-color: white;
}

.pedigree-table th {
  background-color: var(--color-pine-teal);
  color: white;
  padding: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  border-bottom: 2px solid var(--color-sea-green);
}

.pedigree-cell {
  border: 1px solid var(--color-border-subtle);
  padding: 15px;
  vertical-align: middle;
  transition: var(--transition-elegant);
}

.pedigree-cell:hover {
  background-color: var(--color-bg-light);
}

.pedigree-role {
  font-size: 0.7rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}

.pedigree-name {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-onix);
  display: block;
}

.pedigree-title {
  font-size: 0.75rem;
  color: var(--color-sea-green);
  font-weight: 600;
  display: block;
  margin-top: 3px;
}

.pedigree-sire {
  border-left: 4px solid var(--color-pine-teal);
}

.pedigree-dam {
  border-left: 4px solid var(--color-soft-fawn);
}

.back-btn-container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.btn-close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-onix);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  border: 1px solid var(--color-onix);
  transition: var(--transition-elegant);
  cursor: pointer;
}

.btn-close:hover {
  background-color: transparent;
  color: var(--color-onix);
}

@media (max-width: 640px) {
  body:has(header.main-header .btn-close) {
    padding-top: 144px !important;
  }

  header.main-header:has(.btn-close) {
    height: auto;
    min-height: 112px;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
  }

  header.main-header:has(.btn-close) .logo-container {
    min-width: 0;
    flex: 1 1 auto;
    padding-right: 8px;
  }

  header.main-header:has(.btn-close) .logo-text {
    display: block;
    max-width: calc(100vw - 188px);
    font-size: clamp(1.35rem, 8vw, 2.05rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  header.main-header:has(.btn-close) .btn-close {
    flex: 0 0 auto;
    max-width: 150px;
    padding: 10px 14px;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
  }
}

/* -------------------------------------------------------------
   Carrusel de palmarés Zoagolden
   ------------------------------------------------------------- */
.winner-carousel-section {
  --winner-bg: #48ad80;
  --winner-panel: #f3f5ea;
  --winner-ink: #18231d;
  --winner-muted: rgba(24, 35, 29, 0.72);
  --winner-motion-duration: 8800ms;
  background:
    radial-gradient(circle at 18% 0%, rgba(229, 198, 135, 0.14), transparent 30%),
    linear-gradient(135deg, #0f2b20 0%, var(--winner-bg) 54%, #0b2118 100%);
  overflow: hidden;
  color: var(--winner-ink);
  padding-bottom: clamp(100px, 12vw, 170px);
}

.winner-carousel-section .section-head .section-tag {
  color: var(--color-soft-fawn);
}

.winner-carousel-section .section-head h2 {
  color: rgba(243, 245, 234, 0.94);
}

.winner-carousel-section .section-head h2 span {
  color: var(--color-soft-fawn);
}

.winner-carousel-copy {
  max-width: 760px;
  margin: -18px auto clamp(20px, 4vw, 34px);
  text-align: center;
}

.winner-carousel-copy p {
  color: rgba(243, 245, 234, 0.82);
  font-size: clamp(0.96rem, 1.3vw, 1.08rem);
  line-height: 1.7;
}

.winner-carousel-shell {
  position: relative;
  width: min(1320px, calc(100vw - 24px));
  margin: 0 auto;
  padding-bottom: 42px;
  touch-action: pan-y;
}

.winner-carousel {
  position: relative;
  aspect-ratio: 18 / 10;
  height: auto;
  overflow: hidden;
  border-radius: 18px;
  background-color: #0d241a;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

.winner-slide {
  --depth-x: 0px;
  --depth-y: 0px;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.992);
  pointer-events: none;
  transition:
    opacity 840ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 840ms cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity, transform;
}

.winner-slide-link {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  width: 100%;
  height: 100%;
  color: var(--winner-ink);
  text-decoration: none;
  overflow: hidden;
  background-color: var(--winner-panel);
  isolation: isolate;
}

.winner-slide.is-active {
  opacity: 1;
  transform: translate3d(var(--depth-x), var(--depth-y), 0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

.winner-photo-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: #0d241a;
}

.winner-photo-bg,
.winner-photo-main {
  position: absolute;
  display: block;
  transform-origin: var(--focal-x, 50%) var(--focal-y, 50%);
  will-change: transform;
}

.winner-photo-bg img,
.winner-photo-main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--focal-x, 50%) var(--focal-y, 50%);
}

.winner-photo-bg {
  inset: -7%;
  width: 114%;
  height: 114%;
  filter: blur(24px) saturate(0.96) brightness(0.66);
  opacity: 0.44;
  transform: scale(1.04);
}

.winner-photo-main {
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0) scale(1.012);
}

.winner-slide.is-active .winner-photo-main {
  animation: winnerKenBurns var(--winner-motion-duration) ease-in-out both;
}

.winner-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: clamp(44px, 5vw, 58px);
  height: clamp(44px, 5vw, 58px);
  border: 1px solid rgba(243, 245, 234, 0.44);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: rgba(243, 245, 234, 0.12);
  color: rgba(243, 245, 234, 0.92);
  box-shadow: 0 16px 34px rgba(18, 22, 25, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(-50%);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.winner-carousel-btn:hover {
  background-color: rgba(229, 198, 135, 0.9);
  color: var(--color-pine-teal);
  transform: translateY(-50%) scale(1.04);
}

.winner-carousel-prev {
  left: clamp(14px, 2vw, 26px);
}

.winner-carousel-next {
  right: clamp(14px, 2vw, 26px);
}

.winner-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
}

.winner-carousel-dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(243, 245, 234, 0.46);
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.winner-carousel-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background-color: var(--color-soft-fawn);
  border-color: var(--color-soft-fawn);
}

@keyframes winnerKenBurns {
  0% {
    transform: translate3d(0, 0, 0) scale(1.012);
  }
  100% {
    transform: translate3d(var(--pan-x, 1%), var(--pan-y, -1%), 0) scale(var(--kb-scale, 1.032));
  }
}

@media (max-width: 760px) {
  .winner-carousel-section {
    padding-top: clamp(56px, 10vw, 74px);
    padding-bottom: clamp(96px, 18vw, 140px);
  }

  .winner-carousel-copy {
    max-width: min(92vw, 420px);
    margin-bottom: 16px;
  }

  .winner-carousel-copy p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .winner-carousel-shell {
    width: min(100vw - 16px, 520px);
    padding-bottom: 34px;
  }

  .winner-carousel {
    aspect-ratio: 3 / 4;
    height: auto;
    min-height: 0;
    max-height: none;
    border-radius: 14px;
  }

  .winner-slide {
    transform: translate3d(0, 10px, 0) scale(0.996);
  }

  .winner-photo-frame {
    inset: 0;
    display: grid;
    place-items: center;
    background:
      radial-gradient(circle at 50% 42%, rgba(229, 198, 135, 0.1), transparent 34%),
      linear-gradient(180deg, #173b2b, #0e2a1f);
  }

  .winner-photo-bg {
    inset: -10%;
    width: 120%;
    height: 120%;
    object-fit: cover;
    filter: blur(22px) saturate(0.92) brightness(0.58);
    opacity: 0.5;
  }

  .winner-photo-main {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--focal-x, 50%) var(--focal-y, 50%);
    --kb-scale: 1.026 !important;
    --pan-x: 0.6% !important;
    --pan-y: -0.5% !important;
  }

  .winner-carousel-btn {
    top: auto;
    bottom: 48px;
    transform: none;
    background-color: rgba(18, 54, 38, 0.72);
  }

  .winner-carousel-btn:hover {
    transform: scale(1.04);
  }

  .winner-carousel-prev {
    left: 28px;
  }

  .winner-carousel-next {
    right: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .winner-slide {
    transition: opacity 220ms ease;
    transform: none;
  }

  .winner-photo-main {
    animation: none !important;
    transform: scale(1.012);
  }
}

/* -------------------------------------------------------------
   Página 404
   ------------------------------------------------------------- */
.not-found-page {
  background:
    radial-gradient(circle at 16% 16%, rgba(225, 215, 204, 0.55), transparent 34%),
    linear-gradient(135deg, #f7efe5 0%, #ece8df 54%, #e4d9ce 100%);
  color: var(--color-onix);
}

.not-found-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(118px, 16vw, 180px) clamp(18px, 4vw, 48px) clamp(72px, 10vw, 120px);
}

.not-found-card {
  width: min(760px, 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid rgba(115, 105, 96, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 44px rgba(28, 28, 28, 0.12);
  text-align: center;
}

.not-found-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(115, 105, 96, 0.14);
  pointer-events: none;
}

.not-found-code {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(5rem, 17vw, 11rem);
  line-height: 0.78;
  color: rgba(115, 105, 96, 0.2);
  margin-bottom: clamp(18px, 4vw, 34px);
}

.not-found-card .section-tag {
  margin-bottom: 16px;
  color: #736960;
}

.not-found-card h1 {
  max-width: 10ch;
  margin: 0 auto 22px;
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #6f6a63;
  text-wrap: balance;
}

.not-found-card p:not(.section-tag) {
  max-width: 58ch;
  margin: 0 auto;
  color: rgba(28, 28, 28, 0.76);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.not-found-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: clamp(26px, 5vw, 42px);
}

.not-found-outline {
  color: #1c1c1c;
  border-color: rgba(115, 105, 96, 0.34);
  background-color: rgba(255, 255, 255, 0.16);
}

@media (max-width: 640px) {
  .not-found-card {
    border-radius: 14px;
    text-align: left;
  }

  .not-found-card::before {
    inset: 8px;
  }

  .not-found-code,
  .not-found-card .section-tag,
  .not-found-card h1,
  .not-found-card p:not(.section-tag) {
    margin-left: 0;
    margin-right: 0;
  }

  .not-found-actions {
    justify-content: flex-start;
  }
}

/* -------------------------------------------------------------
   Acceso a ejemplares y páginas de catálogo
   ------------------------------------------------------------- */
.breed-access-section {
  --line-bg: #FBEDEF;
  --line-bg-2: #F8DDE4;
  --line-accent: #C98270;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.9), transparent 26%),
    linear-gradient(135deg, var(--line-bg), var(--line-bg-2));
  transition: background 420ms cubic-bezier(0.23, 1, 0.32, 1);
  border-bottom: none;
}

.breed-access-section[data-active-line="male"],
.breed-access-section:has(.breed-product-showcase[data-active-line="male"]) {
  --line-bg: #EDF8FA;
  --line-bg-2: #DDEFF3;
  --line-accent: #5B8EA0;
}

.breed-access-section .section-head h2 {
  color: var(--color-onix);
}

.breed-access-section .section-head h2 span {
  color: var(--color-pine-teal);
}

.breed-product-showcase {
  --active-shift: -1;
  width: min(100%, 1180px);
  min-height: clamp(640px, 78vh, 820px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(36px, 5vw, 86px);
  position: relative;
  border: 1px solid rgba(45, 71, 57, 0.16);
  border-radius: 8px;
  padding: clamp(32px, 5vw, 72px) clamp(28px, 5vw, 72px) clamp(88px, 9vw, 118px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.1)),
    color-mix(in srgb, var(--line-bg) 82%, white);
  box-shadow: 0 28px 80px rgba(18, 22, 25, 0.12);
  overflow: visible;
  transition: background-color 360ms cubic-bezier(0.23, 1, 0.32, 1), border-color 220ms ease;
}

.breed-product-showcase[data-active-line="male"] {
  --active-shift: 1;
}

.breed-product-showcase::before {
  content: '';
  position: absolute;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  left: 11%;
  top: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--line-accent) 32%, white), transparent 66%);
  transform: translateY(-50%);
  opacity: 0.9;
  pointer-events: none;
}

.breed-product-visual {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1200px;
  z-index: 1;
}

.breed-product-figure {
  position: absolute;
  width: min(66%, 430px);
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 28px 70px rgba(18, 22, 25, 0.2);
  transition: transform 520ms cubic-bezier(0.23, 1, 0.32, 1), opacity 300ms ease, filter 300ms ease, z-index 0ms linear 140ms;
  will-change: transform;
}

.breed-product-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.breed-product-figure--female img {
  object-position: 58% center;
}

.breed-product-figure--male img {
  object-position: 50% center;
}

.breed-product-figure--female {
  transform: translateX(calc(var(--active-shift) * -44%)) translateZ(0) rotateY(0deg) scale(1);
  opacity: 1;
  z-index: 2;
}

.breed-product-figure--male {
  transform: translateX(calc(var(--active-shift) * 58%)) translateZ(-220px) rotateY(calc(var(--active-shift) * -18deg)) scale(0.66);
  opacity: 0.48;
  filter: saturate(0.82) blur(0.2px);
  z-index: 1;
}

.breed-product-showcase[data-active-line="male"] .breed-product-figure--female {
  transform: translateX(calc(var(--active-shift) * -58%)) translateZ(-220px) rotateY(calc(var(--active-shift) * -18deg)) scale(0.66);
  opacity: 0.48;
  filter: saturate(0.82) blur(0.2px);
  z-index: 1;
}

.breed-product-showcase[data-active-line="male"] .breed-product-figure--male {
  transform: translateX(calc(var(--active-shift) * 44%)) translateZ(0) rotateY(0deg) scale(1);
  opacity: 1;
  filter: none;
  z-index: 2;
}

.breed-product-orbit {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 4vw, 38px);
  display: inline-flex;
  gap: 16px;
  transform: translateX(-50%);
  z-index: 4;
}

.breed-orbit-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.46);
  color: var(--color-pine-teal);
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 1.35rem;
  box-shadow: 0 18px 36px rgba(18, 22, 25, 0.12);
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1), background-color 180ms ease, color 180ms ease;
}

.breed-orbit-btn.is-active {
  background-color: var(--color-pine-teal);
  color: var(--color-soft-fawn);
}

.breed-orbit-btn:hover {
  transform: translateY(-2px);
}

.breed-orbit-btn:active {
  transform: scale(0.96);
}

.breed-product-info {
  position: relative;
  min-height: 520px;
  padding: 0;
  border-radius: 8px;
  border: 0;
  background-color: transparent;
  box-shadow: none;
  overflow: visible;
  z-index: 3;
}

.breed-line-panel {
  position: absolute;
  inset: clamp(10px, 2vw, 22px) 0 clamp(20px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  filter: blur(2px);
  transition: opacity 240ms ease, transform 300ms cubic-bezier(0.23, 1, 0.32, 1), filter 240ms ease;
}

.breed-line-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  filter: none;
}

.breed-line-kicker {
  color: var(--color-sea-green);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.breed-line-panel h3 {
  font-family: var(--font-title);
  color: var(--color-onix);
  font-size: clamp(5.4rem, 9.4vw, 8.4rem);
  line-height: 0.76;
  font-weight: normal;
  width: max-content;
  max-width: none;
  margin: 0 0 28px;
  transform: translateX(clamp(0, 7vw, 0));
}

.breed-line-panel p {
  max-width: 38ch;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 24px;
}

.breed-dog-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.breed-dog-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--color-onix);
  background-color: rgba(255, 255, 255, 0.62);
  border: 1px solid color-mix(in srgb, var(--dog-color) 42%, rgba(45, 71, 57, 0.16));
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1), background-color 180ms ease, border-color 180ms ease;
}

.breed-dog-links a::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--dog-color);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
}

.breed-dog-links a:hover {
  transform: translateY(-2px);
  background-color: white;
  border-color: var(--dog-color);
}

.breed-line-cta {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background-color: var(--color-pine-teal);
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(45, 71, 57, 0.2);
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1), background-color 180ms ease;
}

.breed-line-cta:hover {
  transform: translateX(4px);
  background-color: var(--color-sea-green);
}

.breed-line-cta:active {
  transform: scale(0.97);
}

/* Portatiles pequenos y tablets en horizontal: conserva el gesto editorial
   sin que el titulo quede fuera del viewport. */
@media (min-width: 981px) and (max-width: 1200px) {
  .breed-product-showcase {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    gap: clamp(22px, 3vw, 36px);
    padding-right: clamp(38px, 5vw, 58px);
    padding-left: clamp(28px, 4vw, 46px);
  }

  .breed-product-figure {
    width: min(78%, 360px);
  }

  .breed-product-figure--female {
    transform: translateX(calc(var(--active-shift) * -28%)) translateZ(0) rotateY(0deg) scale(1);
  }

  .breed-product-figure--male {
    transform: translateX(calc(var(--active-shift) * 42%)) translateZ(-220px) rotateY(calc(var(--active-shift) * -16deg)) scale(0.64);
  }

  .breed-product-showcase[data-active-line="male"] .breed-product-figure--female {
    transform: translateX(calc(var(--active-shift) * -42%)) translateZ(-220px) rotateY(calc(var(--active-shift) * -16deg)) scale(0.64);
  }

  .breed-product-showcase[data-active-line="male"] .breed-product-figure--male {
    transform: translateX(calc(var(--active-shift) * 28%)) translateZ(0) rotateY(0deg) scale(1);
  }

  .breed-line-panel h3 {
    font-size: clamp(5.7rem, 8.8vw, 6.7rem);
    transform: translateX(clamp(14px, 2.4vw, 30px));
  }
}

@media (max-width: 980px) {
  .breed-product-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .breed-product-visual,
  .breed-product-info {
    min-height: 460px;
  }

  .breed-line-panel h3 {
    font-size: clamp(4.8rem, 16vw, 7rem);
    transform: translateX(0);
  }
}

@media (max-width: 560px) {
  .breed-product-showcase {
    padding: 104px 18px 34px;
  }

  .breed-product-orbit {
    top: 22px;
    bottom: auto;
  }

  .breed-product-visual {
    min-height: 205px;
    place-items: start center;
  }

  .breed-product-info {
    min-height: 450px;
  }

  .breed-product-figure {
    width: min(100%, 390px);
    aspect-ratio: 16 / 10;
    border-radius: 10px;
  }

  .breed-product-figure--female img {
    object-position: 56% 54%;
  }

  .breed-product-figure--male img {
    object-position: 48% 54%;
  }

  .breed-product-figure--female {
    transform: translateX(calc(var(--active-shift) * -7%)) translateY(0) translateZ(0) rotateY(0deg) scale(1);
  }

  .breed-product-figure--male {
    transform: translateX(calc(var(--active-shift) * 18%)) translateY(12px) translateZ(-180px) rotateY(calc(var(--active-shift) * -12deg)) scale(0.72);
  }

  .breed-product-showcase[data-active-line="male"] .breed-product-figure--female {
    transform: translateX(calc(var(--active-shift) * -18%)) translateY(12px) translateZ(-180px) rotateY(calc(var(--active-shift) * -12deg)) scale(0.72);
  }

  .breed-product-showcase[data-active-line="male"] .breed-product-figure--male {
    transform: translateX(calc(var(--active-shift) * 7%)) translateY(0) translateZ(0) rotateY(0deg) scale(1);
  }

  .breed-line-kicker {
    max-width: 18ch;
    margin-bottom: 34px;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .breed-line-panel h3 {
    font-size: clamp(4.2rem, 20vw, 5.6rem);
    line-height: 0.82;
    margin-top: 0;
  }

  .breed-dog-links {
    gap: 8px;
  }

  .breed-dog-links a {
    font-size: 0.78rem;
    padding: 7px 10px;
  }

  .breed-orbit-btn {
    width: 60px;
    height: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .breed-product-figure,
  .breed-line-panel,
  .breed-orbit-btn,
  .breed-dog-links a,
  .breed-line-cta {
    transition: none;
  }
}
.catalog-page {
  background-color: #F7F4EC;
}

.catalog-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 72px;
}

.catalog-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-pine-teal);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 34px;
}

.catalog-hero-panel {
  min-height: 280px;
  border-radius: 8px;
  padding: clamp(34px, 6vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(135deg, rgba(45, 71, 57, 0.9), rgba(18, 22, 25, 0.72)),
    url('assets/dogs/hero1.jpg') center/cover;
  color: white;
  margin-bottom: 42px;
  overflow: hidden;
}

.catalog-hero-panel .section-tag {
  color: var(--color-soft-fawn);
  margin-bottom: 14px;
}

.catalog-hero-panel h1 {
  font-family: var(--font-title);
  font-size: clamp(6rem, 8vw, 5.8rem);
  line-height: 0.95;
  font-weight: normal;
  margin: 0 0 18px;
}

.catalog-hero-panel p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.75;
}

.catalog-listing .perros-grid {
  margin-top: 0;
}

.catalog-listing .female-grid .female-card:last-child {
  grid-column: auto;
}

@media (max-width: 760px) {
  .breed-access-grid {
    grid-template-columns: 1fr;
  }

  .breed-access-card {
    min-height: 220px;
  }

  .catalog-shell {
    width: min(100% - 28px, 1180px);
    padding-top: 22px;
  }
}

/* -------------------------------------------------------------
   PÁGINAS DOSSIER DE CAMADAS
   ------------------------------------------------------------- */
body.litter-dossier-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(229, 198, 135, 0.2), transparent 34vw),
    linear-gradient(135deg, #fbf5ea 0%, #f4f8f2 48%, #edf6f7 100%);
  color: var(--color-text-dark);
}

body.adoption-guide-page {
  background: #FFF3E6 !important;
  background-color: #FFF3E6 !important;
}

.litter-dossier-shell {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) 0 clamp(52px, 7vw, 96px);
}

.litter-dossier-back {
  margin-bottom: clamp(34px, 6vw, 72px);
}

.litter-dossier-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(26px, 5vw, 76px);
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 78px);
}

.litter-dossier-hero-copy h1 {
  max-width: 10ch;
  margin: 14px 0 0;
  font-family: var(--font-title);
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  line-height: 0.92;
  font-weight: 400;
  color: var(--color-onix);
  text-wrap: balance;
}

.litter-dossier-hero-card {
  padding: clamp(22px, 3vw, 34px);
  background-color: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(45, 71, 57, 0.16);
  border-radius: 16px;
}

.litter-dossier-hero-card p {
  margin: 0;
  color: #334155;
  font-size: 1rem;
  line-height: 1.7;
}

.litter-dossier-hero-card p:first-child {
  margin-bottom: 14px;
  color: var(--color-pine-teal);
  font-weight: 700;
}

.litter-dossier-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 30px);
}

.litter-dossier-block {
  grid-column: span 6;
  display: grid;
  align-content: start;
  gap: clamp(18px, 3vw, 28px);
  min-height: 100%;
  padding: clamp(24px, 4vw, 42px);
  background-color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(45, 71, 57, 0.14);
  border-radius: 18px;
}

.litter-dossier-block--wide,
.litter-dossier-block--image-led,
.litter-dossier-block--dark {
  grid-column: 1 / -1;
}

.litter-dossier-block--wide,
.litter-dossier-block--image-led {
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
}

.litter-dossier-block--tint {
  background-color: rgba(226, 241, 241, 0.8);
}

.litter-dossier-block--rose {
  background-color: rgba(248, 235, 230, 0.88);
}

.litter-dossier-block--cream {
  background-color: rgba(255, 250, 238, 0.92);
}

.litter-dossier-block--dark {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background-color: var(--color-pine-teal);
  color: var(--color-text-light);
}

.litter-dossier-block--dark .litter-dossier-copy h2,
.litter-dossier-block--dark .litter-dossier-copy p,
.litter-dossier-block--dark .litter-dossier-copy li {
  color: var(--color-text-light);
}

.litter-dossier-block--dark .litter-dossier-icon {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--color-soft-fawn);
}

.litter-dossier-media {
  min-height: clamp(240px, 32vw, 420px);
  border-radius: 14px;
  overflow: hidden;
}

.litter-dossier-media--empty {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  background:
    linear-gradient(135deg, rgba(45, 71, 57, 0.1), rgba(229, 198, 135, 0.18)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.36) 0 10px, rgba(255, 255, 255, 0.1) 10px 20px);
  color: rgba(45, 71, 57, 0.64);
  border: 1px dashed rgba(45, 71, 57, 0.28);
}

.litter-dossier-media--empty i {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.litter-dossier-media--empty span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.litter-dossier-copy {
  max-width: 72ch;
}

.litter-dossier-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--color-sea-green);
  background-color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(229, 198, 135, 0.55);
  border-radius: 50%;
}

.litter-dossier-separator {
  display: block;
  margin: -8px 0 4px;
  color: var(--color-ruby-diamond);
  font-family: var(--font-title);
  font-size: 2.4rem;
  line-height: 1;
}

.litter-dossier-copy h2 {
  margin: 0 0 18px;
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.02;
  font-weight: 400;
  color: var(--color-onix);
  text-wrap: balance;
}

.litter-dossier-copy p {
  margin: 0 0 16px;
  color: #344054;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.85;
  text-wrap: pretty;
}

.litter-dossier-copy p:last-child,
.litter-dossier-copy ul:last-child {
  margin-bottom: 0;
}

.litter-dossier-copy ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.litter-dossier-copy li {
  position: relative;
  padding-left: 24px;
  color: #344054;
  font-size: 0.98rem;
  line-height: 1.65;
}

.litter-dossier-copy li::before {
  content: '';
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: var(--color-ruby-diamond);
  transform: rotate(45deg);
}

@media (max-width: 860px) {
  .litter-dossier-shell {
    width: min(100% - 28px, 720px);
  }

  .litter-dossier-hero,
  .litter-dossier-block,
  .litter-dossier-block--wide,
  .litter-dossier-block--image-led,
  .litter-dossier-block--dark {
    grid-template-columns: 1fr;
  }

  .litter-dossier-block {
    grid-column: 1 / -1;
  }

  .litter-dossier-hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 16vw, 5rem);
  }
}

@media (max-width: 560px) {
  .litter-dossier-shell {
    padding-top: 22px;
  }

  .litter-dossier-hero {
    margin-bottom: 24px;
  }

  .litter-dossier-block {
    padding: 22px;
    border-radius: 14px;
  }

  .litter-dossier-media {
    min-height: 220px;
  }

  .litter-dossier-copy h2 {
    font-size: clamp(1.8rem, 11vw, 2.6rem);
  }
}

/* -------------------------------------------------------------
   Camada Actual: layout split editorial
   ------------------------------------------------------------- */
body.current-litter-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(45, 71, 57, 0.14), transparent 32vw),
    linear-gradient(135deg, #f4f8f2 0%, #edf6f0 42%, #f8f2e8 100%);
}

.current-litter-shell {
  width: min(1240px, calc(100% - 44px));
  padding-top: 0;
}

body.litter-dossier-page:not(.current-litter-page) .litter-dossier-shell,
body.catalog-page .catalog-shell {
  padding-top: clamp(112px, 9vw, 138px);
}

.current-litter-page .litter-dossier-hero {
  position: relative;
  width: 100vw;
  min-height: clamp(560px, 76vh, 760px);
  margin-right: calc(50% - 50vw);
  margin-bottom: clamp(44px, 7vw, 92px);
  margin-left: calc(50% - 50vw);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-content: end;
  align-items: end;
  padding:
    max(122px, clamp(58px, 8vw, 100px))
    max(24px, calc((100vw - 1240px) / 2 + 24px))
    clamp(70px, 9vw, 118px);
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(21, 33, 27, 0.78), rgba(21, 33, 27, 0.34) 54%, rgba(21, 33, 27, 0.06)),
    url("assets/dogs/newborns.jpg") center 46% / cover no-repeat;
  border: 0;
  box-shadow: 0 30px 90px rgba(18, 22, 25, 0.11);
}

.current-litter-page .litter-dossier-hero::after {
  content: '';
  position: absolute;
  inset:
    clamp(18px, 2vw, 30px)
    max(18px, calc((100vw - 1240px) / 2 + 18px));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  pointer-events: none;
}

.current-litter-page .litter-dossier-hero-copy,
.current-litter-page .litter-dossier-hero-card {
  position: static;
  z-index: 1;
}

.current-litter-page .litter-dossier-hero-copy h1 {
  max-width: 11ch;
  color: white;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.current-litter-page .litter-dossier-hero .section-tag {
  color: var(--color-soft-fawn);
}

.current-litter-page .litter-dossier-hero-card {
  max-width: 420px;
  justify-self:end;
  background-color: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(5px) saturate(1.18);
  -webkit-backdrop-filter: blur(5px) saturate(1.28);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 24px 70px rgba(18, 22, 25, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.current-litter-page .litter-dossier-hero-card p {
  color: #23362d;
  font-weight: 500;
}

.current-litter-page .litter-dossier-hero-card p:first-child {
  color: #20382d;
}

.current-litter-page .litter-dossier-back {
  position: absolute;
  top: clamp(94px, 8vw, 118px);
  left: max(24px, calc((100vw - 1240px) / 2 + 24px));
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 12px 16px;
  border-radius: 999px;
  background-color: rgba(229, 198, 135, 0.92);
  color: #203229;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 22px rgba(18, 22, 25, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.current-litter-page .litter-dossier-back:hover {
  background-color: var(--color-soft-fawn);
  color: var(--color-onix);
  transform: translateY(-2px);
}

.current-litter-board {
  display: grid;
  gap: clamp(22px, 3vw, 36px);
}

.current-litter-row {
  --row-bg: #f0f7ef;
  --row-accent: #7ea084;
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  padding: clamp(18px, 2.7vw, 34px);
  min-height: clamp(420px, 50vw, 580px);
  border-radius: 16px;
  background:
    radial-gradient(circle at 10% 12%, color-mix(in srgb, var(--row-accent) 16%, transparent), transparent 32%),
    linear-gradient(135deg, color-mix(in srgb, var(--row-bg) 88%, white), var(--row-bg));
  border: 1px solid color-mix(in srgb, var(--row-accent) 22%, transparent);
  overflow: visible;
}

.current-litter-row--reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
}

.current-litter-row--reverse .current-litter-visual {
  order: 2;
}

.current-litter-row--lead {
  --row-bg: #e8f3e8;
  --row-accent: #2d4739;
}

.current-litter-row--sage {
  --row-bg: #edf7f0;
  --row-accent: #6d9276;
}

.current-litter-row--mist {
  --row-bg: #e8f4f4;
  --row-accent: #5b8f86;
}

.current-litter-row--home {
  --row-bg: #eff7ea;
  --row-accent: #88a26b;
}

.current-litter-row--soft {
  --row-bg: #f4f8ed;
  --row-accent: #9cac74;
}

.current-litter-row--residence {
  --row-bg: #edf5ee;
  --row-accent: #6e9a87;
}

.current-litter-row--visit {
  --row-bg: #f6f8ef;
  --row-accent: #b0a66f;
}

.current-litter-row--ethic {
  --row-bg: #2d4739;
  --row-accent: #e5c687;
  background:
    radial-gradient(circle at 82% 14%, rgba(229, 198, 135, 0.22), transparent 28%),
    linear-gradient(135deg, #365b49 0%, #2d4739 55%, #203229 100%);
}

.current-litter-visual {
  height: 100%;
  min-height: clamp(320px, 42vw, 510px);
  margin: clamp(-18px, -1.6vw, -10px) 0;
  overflow: hidden;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.56);
  transform: translateX(clamp(-42px, -3vw, -24px)) scale(1.035);
  box-shadow: 0 22px 44px rgba(18, 22, 25, 0.12);
  transition: transform 320ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 220ms ease;
}

.current-litter-row--reverse .current-litter-visual {
  transform: translateX(clamp(24px, 3vw, 42px)) scale(1.035);
}

.current-litter-row:hover .current-litter-visual {
  box-shadow: 0 28px 58px rgba(18, 22, 25, 0.16);
}

.current-litter-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.98) contrast(0.98);
  transition: transform 620ms cubic-bezier(0.23, 1, 0.32, 1), filter 240ms ease;
}

.current-litter-row:hover .current-litter-visual img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.02);
}

@media (min-width: 901px) {
  .current-litter-row--ethic .current-litter-visual img {
    object-position: 72% center;
  }
}

.current-litter-visual--placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: color-mix(in srgb, var(--row-accent) 74%, var(--color-pine-teal));
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.22)),
    radial-gradient(circle at 30% 20%, color-mix(in srgb, var(--row-accent) 20%, transparent), transparent 34%);
}

.current-litter-visual--placeholder i {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.current-litter-visual--placeholder span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.current-litter-copy {
  max-width: 72ch;
  padding: clamp(10px, 1.4vw, 18px) 0;
}

.current-litter-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: color-mix(in srgb, var(--row-accent) 76%, var(--color-pine-teal));
  background-color: rgba(255, 255, 255, 0.78);
  border: 1px solid color-mix(in srgb, var(--row-accent) 28%, transparent);
}

.current-litter-copy h2 {
  margin: 0 0 18px;
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  line-height: 0.98;
  font-weight: 400;
  color: var(--color-onix);
  text-wrap: balance;
}

.current-litter-copy p {
  margin: 0 0 16px;
  color: #344054;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.8;
  text-wrap: pretty;
}

.current-litter-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.current-litter-copy li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.72);
  border: 1px solid color-mix(in srgb, var(--row-accent) 24%, transparent);
  color: color-mix(in srgb, var(--color-onix) 78%, var(--row-accent));
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.current-litter-row--ethic .current-litter-copy h2,
.current-litter-row--ethic .current-litter-copy p,
.current-litter-row--ethic .current-litter-copy li {
  color: white;
}

.current-litter-row--ethic .current-litter-copy li {
  color: #fff2aa;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(229, 198, 135, 0.28);
}

.current-litter-row--ethic .current-litter-icon {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-soft-fawn);
}

@media (max-width: 900px) {
  .current-litter-page .litter-dossier-hero,
  .current-litter-row,
  .current-litter-row--reverse {
    grid-template-columns: 1fr;
  }

  .current-litter-row--reverse .current-litter-visual {
    order: initial;
  }

  .current-litter-row {
    min-height: auto;
  }

  .current-litter-visual {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    margin: 0;
    transform: none;
  }

  .current-litter-visual img {
    height: auto;
    min-height: 0;
    max-height: 430px;
    object-fit: contain;
    background:
      radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.62), transparent 38%),
      color-mix(in srgb, var(--row-bg) 84%, white);
  }
}

@media (max-width: 560px) {
  .current-litter-shell {
    width: min(100% - 28px, 1240px);
  }

  .current-litter-page .litter-dossier-hero {
    min-height: 620px;
    padding: 108px 20px 28px;
    align-content: end;
    background-position: center;
  }

  .current-litter-page .litter-dossier-back {
    top: 88px;
    left: 20px;
    padding: 10px 13px;
    font-size: 0.72rem;
  }

  .current-litter-page .litter-dossier-hero::after {
    inset: 14px;
    border-radius: 12px;
  }

  .current-litter-page .litter-dossier-hero-card {
    justify-self: stretch;
    max-width: none;
  }

  .current-litter-row {
    padding: 16px;
    border-radius: 14px;
  }

  .current-litter-visual {
    min-height: 0;
  }

  .current-litter-visual img {
    max-height: 360px;
  }

  .current-litter-copy h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .current-litter-copy p {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .current-litter-copy li {
    font-size: 0.84rem;
  }
}

/* -------------------------------------------------------------
   Heroes internos mobile-first
   ------------------------------------------------------------- */
.hembras-page {
  --internal-hero-image: url("assets/dogs/banner_hembras-opt.jpg");
  --internal-hero-position-mobile: center;
  --internal-hero-position-desktop: center;
}

.machos-page {
  --internal-hero-image: url("assets/dogs/banner_machos1-opt.jpg");
  --internal-hero-position-mobile: center;
  --internal-hero-position-desktop: center;
}

.current-litter-page {
  --internal-hero-image: url("assets/dogs/banner_camada_actual-opt.jpg");
  --internal-hero-position-mobile: 35% center;
  --internal-hero-position-desktop: center;
}

.future-litter-page {
  --internal-hero-image: url("assets/dogs/banner_camada_futura-opt.jpg");
  --internal-hero-position-mobile: center;
  --internal-hero-position-desktop: center;
}

.adoption-guide-page {
  --internal-hero-image: url("assets/dogs/banner_camada_futura-opt.jpg");
  --internal-hero-position-mobile: 70% center;
  --internal-hero-position-desktop: center;
}

body.catalog-page .catalog-shell,
body.litter-dossier-page .litter-dossier-shell {
  width: min(1240px, calc(100% - 28px));
  padding-top: 0;
}

body.litter-dossier-page:not(.current-litter-page) .litter-dossier-shell {
  padding-top: 0;
}

body.catalog-page .catalog-hero-panel,
body.litter-dossier-page .litter-dossier-hero {
  position: relative;
  width: 100vw;
  min-height: 100svh;
  margin-right: calc(50% - 50vw);
  margin-bottom: clamp(34px, 9vw, 96px);
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: 1fr;
  align-content:end;
  gap: 18px;
  padding:
    max(112px, env(safe-area-inset-top))
    max(20px, calc((100vw - 1240px) / 2 + 20px))
    max(44px, env(safe-area-inset-bottom));
  overflow: hidden;
  border-radius: 0;
  color: white;
  background:
    linear-gradient(180deg, rgba(18, 22, 25, 0.3) 0%, rgba(18, 22, 25, 0.12) 42%, rgba(18, 22, 25, 0.78) 100%),
    var(--internal-hero-image) var(--internal-hero-position-mobile) / cover no-repeat;
  box-shadow: 0 30px 90px rgba(18, 22, 25, 0.12);
}

body.catalog-page .catalog-hero-panel::after,
body.litter-dossier-page .litter-dossier-hero::after {
  content: '';
  position: absolute;
  inset: 14px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  pointer-events: none;
}

body.catalog-page .catalog-hero-panel > *,
body.litter-dossier-page .litter-dossier-hero > * {
  position: relative;
  z-index: 1;
}

body.catalog-page .catalog-hero-panel .catalog-back,
body.litter-dossier-page .litter-dossier-hero .litter-dossier-back {
  position: absolute;
  top: 88px;
  left: max(20px, calc((100vw - 1240px) / 2 + 20px));
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0;
  padding: 10px 13px;
  border-radius: 999px;
  background-color: rgba(229, 198, 135, 0.92);
  color: #203229;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 22px rgba(18, 22, 25, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.catalog-page .catalog-hero-panel .section-tag,
body.litter-dossier-page .litter-dossier-hero .section-tag {
  color: var(--color-soft-fawn);
  margin-bottom: 0;
}

body.catalog-page .catalog-hero-panel h1,
body.litter-dossier-page .litter-dossier-hero-copy h1 {
  max-width: 10ch;
  margin: 0;
  color: white;
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 12vw, 2.3rem);
  line-height: 0.94;
  font-weight: 400;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  text-wrap: balance;
}

body.catalog-page .catalog-hero-panel p,
body.litter-dossier-page .litter-dossier-hero-card {
  max-width: 34rem;
}

body.catalog-page .catalog-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.7;
}

body.litter-dossier-page .litter-dossier-hero-card {
  padding: 18px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px) saturate(1.14);
  -webkit-backdrop-filter: blur(10px) saturate(1.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(18, 22, 25, 0.18);
}

body.litter-dossier-page .litter-dossier-hero-card p,
body.litter-dossier-page .litter-dossier-hero-card p:first-child {
  color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 760px) {
  body.catalog-page .catalog-hero-panel,
  body.litter-dossier-page .litter-dossier-hero {
    min-height: clamp(680px, 92vh, 860px);
    align-content: end;
    padding:
      max(126px, clamp(90px, 9vw, 138px))
      max(24px, calc((100vw - 1240px) / 2 + 24px))
      clamp(78px, 9vw, 128px);
    background:
      linear-gradient(90deg, rgba(18, 22, 25, 0.76), rgba(18, 22, 25, 0.28) 54%, rgba(18, 22, 25, 0.1)),
      var(--internal-hero-image) var(--internal-hero-position-desktop) / cover no-repeat;
  }

  body.catalog-page .catalog-hero-panel {
    justify-items: start;
  }

  body.litter-dossier-page .litter-dossier-hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    align-items: end;
  }

  body.catalog-page .catalog-hero-panel::after,
  body.litter-dossier-page .litter-dossier-hero::after {
    inset:
      clamp(18px, 2vw, 30px)
      max(18px, calc((100vw - 1240px) / 2 + 18px));
    border-radius: 14px;
  }

  body.catalog-page .catalog-hero-panel .catalog-back,
  body.litter-dossier-page .litter-dossier-hero .litter-dossier-back {
    top: clamp(94px, 8vw, 118px);
    left: max(24px, calc((100vw - 1240px) / 2 + 24px));
    padding: 12px 16px;
  }

  body.catalog-page .catalog-hero-panel h1,
  body.litter-dossier-page .litter-dossier-hero-copy h1 {
    font-size: clamp(4.4rem, 8.5vw, 5.6rem);
  }
}

@media (max-width: 760px) {
  body.current-litter-page {
    overflow-x: hidden;
  }

  .current-litter-shell {
    width: min(100% - 24px, 1240px);
    max-width: calc(100vw - 24px);
  }

  .current-litter-board {
    width: 100%;
    max-width: 100%;
    gap: 18px;
    overflow: hidden;
  }

  .current-litter-page .litter-dossier-hero {
    width: 100vw;
    max-width: 100vw;
    min-height: 100svh;
    padding:
      max(112px, env(safe-area-inset-top))
      18px
      max(34px, env(safe-area-inset-bottom));
    gap: 16px;
  }

  .current-litter-page .litter-dossier-hero-copy,
  .current-litter-page .litter-dossier-hero-card {
    min-width: 0;
    max-width: 100%;
  }

  .current-litter-page .litter-dossier-hero-copy h1 {
    max-width: min(100%, 10ch);
    font-size: clamp(2.8rem, 14vw, 4.2rem);
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .current-litter-page .litter-dossier-hero-card {
    width: 100%;
    padding: 16px;
  }

  .current-litter-page .litter-dossier-hero-card p {
    overflow-wrap: anywhere;
  }

  .current-litter-row,
  .current-litter-row--reverse {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 14px;
    overflow: hidden;
  }

  .current-litter-row--reverse .current-litter-visual {
    order: initial;
  }

  .current-litter-visual,
  .current-litter-row--reverse .current-litter-visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    transform: none;
  }

  .current-litter-visual img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
  }

  .current-litter-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
  }

  .current-litter-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }

  .current-litter-copy h2 {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(1.95rem, 10vw, 2.85rem);
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .current-litter-copy p {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.62;
    overflow-wrap: anywhere;
  }

  .current-litter-copy ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    width: 100%;
    max-width: 100%;
    margin-top: 18px;
  }

  .current-litter-copy li {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-content: flex-start;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

/* -------------------------------------------------------------
   Refuerzo de layout para hosting: guía de adopción
   ------------------------------------------------------------- */
#condiciones .adoption-journey {
  position: relative;
  display: block;
  background-color: #FFF3E6;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 8px max(24px, calc((100vw - 1180px) / 2 + 24px)) 56px;
}

#condiciones .journey-intro {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

#condiciones .journey-kicker {
  display: inline-block;
  color: var(--color-sea-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

#condiciones .journey-intro h3 {
  font-family: var(--font-title);
  color: var(--color-onix);
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  font-weight: normal;
  line-height: 1.2;
  margin: 0 0 14px;
  text-align: center;
  text-wrap: balance;
}

#condiciones .journey-intro p {
  max-width: 760px;
  margin: 0 auto;
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.75;
}

#condiciones .journey-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 16px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

#condiciones .journey-viewport {
  min-width: 0;
  overflow: hidden;
  padding: 18px 4px 26px;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

#condiciones .journey-viewport:active {
  cursor: grabbing;
}

#condiciones .journey-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  align-items: stretch;
  position: relative;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

#condiciones .journey-step {
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
  min-height: 390px;
  display: block;
  background-color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(188, 179, 130, 0.3);
  border-radius: 8px;
  padding: 0 22px 24px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  opacity: 1;
  transform: scale(0.94);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

#condiciones .journey-step.is-active {
  transform: scale(1);
  border-color: rgba(9, 129, 74, 0.28);
  box-shadow: var(--shadow-medium);
}

#condiciones .journey-media {
  position: relative;
  width: auto;
  height: 155px;
  margin: 0 -22px 22px;
  overflow: hidden;
  background-color: var(--color-pine-teal);
}

#condiciones .journey-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

#condiciones .journey-media--responsible img {
  object-position: center 62%;
}

#condiciones .journey-visual {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(229, 198, 135, 0.4);
  display: grid;
  place-items: center;
  margin: -54px 0 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 26px rgba(18, 22, 25, 0.14);
}

#condiciones .journey-number {
  position: absolute;
  top: -9px;
  right: -10px;
  min-width: 34px;
  min-height: 28px;
  border-radius: 999px;
  background-color: var(--color-onix);
  color: var(--color-soft-fawn);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  display: grid;
  place-items: center;
}

#condiciones .journey-visual i {
  color: var(--color-pine-teal);
  font-size: 1.45rem;
}

#condiciones .journey-step h4 {
  font-family: var(--font-title);
  color: var(--color-onix);
  font-size: 1.45rem;
  font-weight: normal;
  line-height: 1.2;
  margin: 0 0 12px;
}

#condiciones .journey-step p {
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 14px;
}

#condiciones .journey-step a {
  color: var(--color-sea-green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

#condiciones .journey-nav {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(45, 71, 57, 0.16);
  border-radius: 50%;
  background-color: white;
  color: var(--color-pine-teal);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(18, 22, 25, 0.08);
}

#condiciones .journey-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

@media (max-width: 1100px) {
  #condiciones .journey-step {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 640px) {
  #condiciones .journey-carousel {
    grid-template-columns: 1fr;
  }

  #condiciones .journey-nav {
    display: none;
  }

  #condiciones .journey-step {
    flex-basis: 100%;
    min-height: auto;
  }
}

/* -------------------------------------------------------------
   NUEVA DIRECCIÓN VISUAL CLIENTE - PALETA TAUPE / CARBÓN
   Estos overrides agrupan el cambio cromático para poder ajustar
   o retirar esta prueba sin perseguir reglas por todo el CSS.
   ------------------------------------------------------------- */
.breed-access-section {
  --line-bg: #F1EAE3;
  --line-bg-2: #E1D7CC;
  --line-accent: var(--color-taupe-primary);
}

.breed-access-section[data-active-line="male"],
.breed-access-section:has(.breed-product-showcase[data-active-line="male"]) {
  --line-bg: #ECE7E1;
  --line-bg-2: #D2C7BB;
  --line-accent: var(--color-charcoal-divider);
}

.breed-product-showcase,
.journey-step,
.litter-dossier-card,
.current-litter-row,
.dog-card,
.health-item {
  border-color: rgba(112, 104, 93, 0.22);
}

.section-tag,
.breed-line-kicker {
  color: var(--color-taupe-primary);
}

.catalog-hero-panel .section-tag,
body.catalog-page .catalog-hero-panel .section-tag,
body.litter-dossier-page .litter-dossier-hero .section-tag {
  color: #FFF;
}

.hero h1,
body.catalog-page .catalog-hero-panel h1,
body.litter-dossier-page .litter-dossier-hero-copy h1 {
  letter-spacing: 0.08em;
}

.hero h1,
.hero h1 span,
body.catalog-page .catalog-hero-panel h1,
body.litter-dossier-page .litter-dossier-hero-copy h1 {
  color: var(--color-text-light);
}

.hero-subtitle,
body.catalog-page .catalog-hero-panel .section-tag,
body.litter-dossier-page .litter-dossier-hero .section-tag,
.current-litter-page .litter-dossier-hero .section-tag {
  color: var(--color-ivory-warm);
}

.btn-premium,
.litter-story-button,
.breed-line-cta,
.footer-top-btn:hover {
  background-color: var(--color-charcoal);
  border-color: var(--color-charcoal);
  color: var(--color-text-light);
}

.btn-premium:hover,
.litter-story-button:hover,
.breed-line-cta:hover {
  background-color: var(--color-taupe-primary);
  border-color: var(--color-taupe-primary);
  color: var(--color-text-light);
}

.nav-panel {
  background-color: rgba(28, 28, 28, 0.94);
}

.nav-panel a {
  color: var(--color-ivory-warm);
}

.footer-title,
.footer-brand h3,
.footer-brand h3 span {
  color: var(--color-ivory-warm);
}

.footer-links a,
.footer-brand p {
  color: var(--color-beige-grey);
}

.footer-copy,
.footer-bottom-links a {
  color: var(--color-soft-taupe-grey);
}

/* -------------------------------------------------------------
   JERARQUÍA TIPOGRÁFICA CLIENTE - JULIO 2026
   H1/H2 recuperan una voz serif editorial. H3/H4 conservan la línea
   Helvetica uppercase más sobria. El uso de !important queda acotado
   a tipografía para ganar a reglas históricas muy específicas.

   Selectores H1 localizados para ajuste fino:
   - .hero h1: titular principal de la landing.
   - .catalog-hero-panel h1: titulares de Hembras y Machos.
   - .litter-dossier-hero-copy h1: titulares de Camada Actual,
     Futuras Camadas y Guía de Adopción.
   - .current-litter-page .litter-dossier-hero-copy h1: ajuste
     específico del hero de Camada Actual.
   - body.catalog-page .catalog-hero-panel h1: override responsive
     compartido de páginas de catálogo.
   - body.litter-dossier-page .litter-dossier-hero-copy h1: override
     responsive compartido de páginas dossier.
   ------------------------------------------------------------- */
h1,
h2,
.section-head h2,
.litter-dossier-copy h2,
.current-litter-copy h2 {
  font-family: var(--font-heading-serif) !important;
  font-weight: 400 !important;
  font-size: clamp(2.35rem, 4vw, 48px) !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
  color: #736960 !important;
  text-transform: none !important;
}

.hero h1 span,
.section-head h2 span,
.breed-access-section .section-head h2 span {
  color: inherit !important;
  font-style: normal !important;
}

/* Mantener legibles los títulos sobre el panel oscuro de compromiso. */
.current-litter-row--ethic .current-litter-copy h2 {
  color: var(--color-text-light) !important;
}

.hero h1,
body.catalog-page .catalog-hero-panel h1,
body.litter-dossier-page .litter-dossier-hero-copy h1 {
  font-family: var(--font-heading-serif) !important;
  font-weight: 400 !important;
  font-size: clamp(3.25rem, 7vw, 5.8rem) !important;
  letter-spacing: -0.02em !important;
  line-height: 0.98 !important;
  color: #fff2aa !important;
  text-transform: none !important;
  max-width: min(100%, 18ch) !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  text-wrap: balance;
}

.hero h1 span,
body.catalog-page .catalog-hero-panel h1 span,
body.litter-dossier-page .litter-dossier-hero-copy h1 span {
  color: inherit !important;
  font-style: inherit !important;
}

body.landing-page h2,
body.landing-page .section-head h2 {
  color: #fff2aa !important;
}

h3,
h4,
.filosofia-banner-content h3,
.ethics-welcome-card h4,
.editorial-intro h3,
.litter-story h3,
.journey-intro h3,
.journey-step h4,
.breed-line-panel h3,
#condiciones .journey-intro h3,
#condiciones .journey-step h4 {
  font-family: var(--font-heading-sans) !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #171717 !important;
}

#filosofia .filosofia-banner-content h3,
.litter-story--dark h3,
.litter-dossier-block--dark .litter-dossier-copy h2,
.litter-dossier-block--dark h3,
.litter-dossier-block--dark h4,
.winner-slide.is-active h3,
footer.main-footer h3,
footer.main-footer h4 {
  color: var(--color-ivory-warm) !important;
}

@media (max-width: 640px) {
  h1,
  h2,
  .section-head h2,
  .litter-dossier-copy h2,
  .current-litter-copy h2 {
    font-size: clamp(2rem, 10vw, 40px) !important;
  }

  .hero h1,
  body.catalog-page .catalog-hero-panel h1,
  body.litter-dossier-page .litter-dossier-hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.4rem) !important;
    max-width: min(100%, 13ch) !important;
  }
}

/* Fichas individuales de perros: legibilidad y premios */
.dog-info-editorial > .section-tag {
  color: var(--color-taupe-primary) !important;
  text-shadow: none !important;
}

.dog-info-editorial .editorial-text-block h4 {
  color: #171717 !important;
}

.dog-info-editorial .editorial-text-block ul li {
  color: #2f3742 !important;
}

.dog-info-editorial .editorial-text-block ul li .fa-trophy {
  color: #E5C687EB !important;
}

.dog-info-editorial .tech-health-table h3 {
  color: #171717 !important;
  letter-spacing: 0.08em !important;
}

.dog-info-editorial .tech-health-table h3 .fa-shield-virus {
  color: #E5C687EB !important;
}

.dog-info-editorial .tech-health-table .tech-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.9fr);
  align-items: start;
  gap: 18px;
  margin-bottom: 0;
}

.dog-info-editorial .tech-health-table .tech-label {
  color: #667085 !important;
  line-height: 1.45;
}

.dog-info-editorial .tech-health-table .tech-value {
  color: #171717 !important;
  line-height: 1.45;
  text-align: right;
  overflow-wrap: anywhere;
}

.dog-info-editorial .tech-health-table .tech-row:last-of-type .tech-label {
  color: #736960 !important;
}

.dog-info-editorial .tech-health-table .tech-row:last-of-type .tech-value {
  color: #171717 !important;
  font-weight: 800 !important;
}

@media (max-width: 640px) {
  .dog-info-editorial .tech-health-table .tech-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .dog-info-editorial .tech-health-table .tech-value {
    text-align: left;
  }
}

/* Mostrar las fotos completas, centradas y sin zoom en todos los dispositivos. */
.winner-slide--full-frame .winner-photo-main {
  animation: none !important;
  transform: none !important;
}
.winner-slide--full-frame .winner-photo-main img {
  object-fit: contain;
  object-position: center;
}
