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

/* IMPORTACIÓN DE FUENTES DESDE GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Prata&display=swap');

/* VARIABLES DE DISEÑO (PALETA CORPORATIVA DE PRESTIGIO) */
:root {
  --color-onix: #121619;
  --color-pine-teal: #2D4739;
  --color-sea-green: #09814A;
  --color-dry-sage: #BCB382;
  --color-soft-fawn: #E5C687;
  
  --color-bg-light: #f8f9fa;
  --color-bg-dark: #121619;
  --color-text-dark: #1C1F22;
  --color-text-light: #F4F4F5;
  --color-border-subtle: rgba(188, 179, 130, 0.25);
  
  --font-title: 'Prata', serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-medium: 0 12px 30px rgba(18, 22, 25, 0.08);
  --shadow-card: 0 8px 24px rgba(45, 71, 57, 0.06);

  --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);
}

/* -------------------------------------------------------------
   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(250, 246, 240, 0.85);
  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;
  background-color: var(--color-soft-fawn);
  border-bottom-color: rgba(18, 22, 25, 0.12);
}

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

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

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

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: 1px;
}

.logo-text span {
  color: var(--color-sea-green);
  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: var(--color-soft-fawn);
  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: pointer;
  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: 350px;
  height: 100vh;
  background-color: var(--color-onix);
  z-index: 101;
  box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  transition: right 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
}

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

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

.nav-panel li {
  margin: 30px 0;
  border-bottom: 1px solid rgba(229, 198, 135, 0.15);
  padding-bottom: 15px;
}

.nav-panel a {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--color-text-light);
  text-decoration: none;
  transition: var(--transition-elegant);
  display: block;
}

.nav-panel a:hover {
  color: var(--color-soft-fawn);
  transform: translateX(10px);
}

.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;
  }
}

/* -------------------------------------------------------------
   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: #d1d5db;
  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-sea-green);
  color: white;
  padding: 15px 36px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition-elegant);
  border: 1px solid var(--color-sea-green);
}

.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-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  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 24px;
}

section {
  padding: 100px 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;
  border-bottom: none;
}

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

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

/* Sección de Contacto - Oscura e Imponente */
#contacto {
  background-color: var(--color-pine-teal); /* Verde Pino Oscuro */
  color: var(--color-text-light);
  border-bottom: none;
}

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

#contacto .section-head h2 span {
  color: var(--color-soft-fawn); /* Dorado / Soft Fawn */
}

#contacto .contacto-info h3 {
  color: white;
}

#contacto .contacto-info p {
  color: #d1d5db; /* Gris plateado claro */
}

#contacto .contacto-channel {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 15px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-elegant);
}

#contacto .contacto-channel:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(229, 198, 135, 0.25);
  transform: translateX(5px);
}

#contacto .channel-icon {
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-soft-fawn);
}

#contacto .channel-text h4 {
  color: white;
}

#contacto .channel-text p, 
#contacto .channel-text a {
  color: #9ca3af;
}

#contacto .channel-text a:hover {
  color: var(--color-soft-fawn);
}

#contacto .scroll-top-btn {
  color: rgba(255, 255, 255, 0.4);
}

#contacto .scroll-top-btn:hover {
  color: var(--color-soft-fawn);
}

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

.section-tag {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-sea-green);
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
}

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

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

.section-head::after {
  content: '♦';
  color: var(--color-soft-fawn);
  display: block;
  font-size: 1.2rem;
  margin-top: 20px;
}

/* -------------------------------------------------------------
   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) 100%),
              url('assets/dogs/hero_nature.png') 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;
  text-decoration: none;
  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);
  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-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;
  }

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

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

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

  .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;
}

.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);
}

/* 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;
}

.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;
  }
}

.delivery-commitment {
  background-color: #FFFBE8;
  margin: 0 calc(50% - 50vw);
  padding: 72px max(24px, calc((100vw - 1180px) / 2 + 24px)) 64px;
}

.commitment-section-head {
  margin-bottom: 42px;
}

.guia-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  border-bottom: 2px solid var(--color-border-subtle);
  margin-bottom: -2px; /* Superposición para ocultar el borde del panel */
  z-index: 10;
  position: relative;
}

.guia-tab {
  background-color: #f1ebd9; /* Tono arena/hueso para pestañas inactivas */
  border: 1px solid var(--color-border-subtle);
  border-bottom: none;
  color: var(--color-onix);
  font-family: var(--font-title);
  font-size: 1.05rem;
  padding: 12px 24px;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.guia-tab:hover {
  background-color: #FAF6F0;
  color: var(--color-pine-teal);
}

.guia-tab.active {
  background-color: white;
  color: var(--color-pine-teal);
  border-color: var(--color-border-subtle);
  border-top: 3px solid var(--color-pine-teal);
  border-bottom: 2px solid white; /* Fusión visual con el panel inferior */
  z-index: 5;
  font-weight: 600;
}

.guia-content-panel {
  display: none;
  background-color: rgba(255, 255, 255, 0.94);
  border-radius: 0 0 8px 8px; /* Esquinas inferiores redondeadas para fluir con las pestañas */
  padding: 50px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-subtle);
  position: relative;
  z-index: 2;
}

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

.guia-content-panel.active {
  display: block;
  animation: panelFade 0.5s ease-out;
}

.panel-header {
  border-bottom: 1px solid var(--color-border-subtle);
  padding-bottom: 20px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.panel-header i {
  font-size: 1.8rem;
  color: var(--color-sea-green);
}

.panel-header h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--color-onix);
  font-weight: normal;
}

.panel-body ul {
  list-style: none;
}

.panel-body li {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 18px;
  position: relative;
  padding-left: 28px;
}

.panel-body li::before {
  content: '♦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-soft-fawn);
  font-size: 1.2rem;
}

.panel-body li strong {
  color: var(--color-onix);
}

@media (max-width: 760px) {
  .delivery-commitment {
    margin: 0 calc(50% - 50vw);
    padding-top: 54px;
    padding-bottom: 48px;
  }

  .adoption-journey {
    padding-bottom: 46px;
  }

  .guia-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    border-bottom: none;
    margin-bottom: 8px;
  }

  .guia-tab {
    border: 1px solid var(--color-border-subtle);
    border-radius: 8px;
    font-size: 0.98rem;
    padding: 12px 10px;
  }

  .guia-tab.active {
    border-bottom: 1px solid var(--color-border-subtle);
  }

  .guia-content-panel {
    border-radius: 8px;
    padding: 28px 22px;
  }

  .panel-header {
    align-items: flex-start;
    gap: 12px;
  }

  .panel-header h3 {
    font-size: 1.45rem;
  }
}

/* Certificado técnico de salud */
.tech-cert-box {
  margin: 0 calc(50% - 50vw);
  border-top: 1px dashed var(--color-dry-sage);
  padding: 38px max(24px, calc((100vw - 1180px) / 2 + 24px)) 30px;
  background-color: #FFFDF6;
  border-radius: 0;
}

.tech-cert-box h4 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--color-pine-teal);
  margin-bottom: 15px;
  text-align: center;
  font-weight: normal;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

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

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

.cert-item {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border-subtle);
  border-radius: 4px;
  padding: 12px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  outline: none;
  
  /* Entrada escalonada */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
              transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              background-color 0.3s ease;
}

.cert-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.cert-text-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cert-item i.fa-microscope {
  color: var(--color-sea-green);
  font-size: 0.95rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cert-item:hover {
  border-color: var(--color-sea-green);
  box-shadow: var(--shadow-card);
  background-color: white;
  transform: translateY(-4px);
}

.cert-item:hover i.fa-microscope {
  transform: scale(1.2) rotate(15deg);
}

/* Badge de estado garantizado */
.cert-status-badge {
  font-size: 0.72rem;
  background-color: rgba(9, 129, 74, 0.08);
  color: var(--color-sea-green);
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: all 0.3s ease;
  border: 1px solid rgba(9, 129, 74, 0.15);
}

.cert-item:hover .cert-status-badge {
  background-color: var(--color-sea-green);
  color: white;
  transform: scale(1.05);
}

/* Efecto de destello Sheen */
.cert-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  pointer-events: none;
}

.cert-item:hover::after {
  animation: sheenSweep 0.8s ease-out;
}

@keyframes sheenSweep {
  0% { left: -150%; }
  100% { left: 150%; }
}

/* -------------------------------------------------------------
   ESTILOS PARA EL MODAL DE CERTIFICADO DIGITAL
   ------------------------------------------------------------- */
.cert-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 22, 25, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.cert-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cert-modal-card {
  background-color: #fbf9f6; /* Fondo blanco hueso papel premium */
  border-radius: 8px;
  width: 100%;
  max-width: 600px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  border: 1px solid var(--color-border-subtle);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.cert-modal-overlay.open .cert-modal-card {
  transform: scale(1) translateY(0);
}

/* Doble borde clásico de certificado */
.cert-modal-card::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid var(--color-sea-green);
  pointer-events: none;
}

.cert-modal-card::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--color-soft-fawn);
  opacity: 0.5;
  pointer-events: none;
}

.cert-modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--color-onix);
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease, color 0.3s ease;
}

.cert-modal-close:hover {
  color: var(--color-sea-green);
  transform: rotate(90deg);
}

/* Contenido del certificado */
.cert-modal-header {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 25px;
}

.cert-modal-header .logo-badge {
  font-size: 1.8rem;
  color: var(--color-sea-green);
  margin-bottom: 8px;
}

.cert-modal-header h3 {
  font-family: var(--font-title);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-pine-teal);
  margin: 0;
}

.cert-modal-header p {
  font-size: 0.7rem;
  color: var(--color-dry-sage);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 4px 0 0 0;
  font-weight: 600;
}

.cert-modal-body {
  text-align: center;
  margin-bottom: 30px;
}

.cert-modal-body h4 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--color-onix);
  margin: 0 0 15px 0;
  font-weight: normal;
}

.cert-modal-body .cert-statement {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0 auto 25px auto;
  max-width: 450px;
}

/* Badge de resultado grande */
.cert-result-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-sea-green);
  background-color: rgba(9, 129, 74, 0.03);
  padding: 12px 30px;
  border-radius: 4px;
  margin-bottom: 25px;
}

.cert-result-badge .result-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--color-dry-sage);
  font-weight: 700;
  letter-spacing: 1px;
}

.cert-result-badge .result-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-sea-green);
  text-transform: uppercase;
  margin-top: 3px;
  font-family: var(--font-title);
}

/* Fila de firmas y detalles técnicos */
.cert-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(229, 198, 135, 0.2);
  padding-top: 25px;
  margin-top: 10px;
}

.cert-footer-col {
  width: 45%;
  text-align: left;
}

.cert-footer-col.right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.cert-signature-line {
  border-top: 1px solid var(--color-onix);
  width: 150px;
  margin-top: 40px;
  padding-top: 6px;
  text-align: center;
  font-size: 0.7rem;
  color: #6b7280;
  font-weight: 600;
}

.cert-signature-line span {
  display: block;
  font-size: 0.8rem;
  color: var(--color-onix);
  font-family: 'Georgia', serif;
  font-style: italic;
  margin-bottom: 2px;
}

/* Sello redondo dorado */
.cert-gold-seal {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px double var(--color-soft-fawn);
  background-color: #fcf9f2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(229, 198, 135, 0.15);
}

.cert-gold-seal::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 1px dashed var(--color-soft-fawn);
  border-radius: 50%;
}

.cert-seal-text {
  font-size: 0.5rem;
  color: var(--color-soft-fawn);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.2;
  z-index: 2;
}

/* Código de barras decorativo */
.cert-barcode {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}

.barcode-lines {
  height: 25px;
  width: 100px;
  background: repeating-linear-gradient(
    90deg,
    #1c2024,
    #1c2024 1px,
    transparent 1px,
    transparent 4px,
    #1c2024 4px,
    #1c2024 6px,
    transparent 6px,
    transparent 8px
  );
  opacity: 0.7;
}

.barcode-text {
  font-size: 0.55rem;
  font-family: monospace;
  color: #6b7280;
  letter-spacing: 2px;
  text-align: center;
}

@media (max-width: 580px) {
  .cert-modal-card {
    padding: 30px 20px;
  }
  .cert-modal-card::before {
    top: 8px; left: 8px; right: 8px; bottom: 8px;
  }
  .cert-modal-card::after {
    top: 12px; left: 12px; right: 12px; bottom: 12px;
  }
  .cert-modal-footer {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .cert-footer-col {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .cert-footer-col.right {
    text-align: center;
    align-items: center;
  }
  .cert-signature-line {
    margin: 30px auto 0 auto;
  }
}

/* -------------------------------------------------------------
   SECCIÓN CONTACTO Y FORMULARIO PROFESIONAL
   ------------------------------------------------------------- */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

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

.contacto-info h3 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--color-onix);
  font-weight: normal;
  margin-bottom: 25px;
}

.contacto-info p {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 40px;
  line-height: 1.8;
}

.contacto-channel {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.channel-icon {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border-subtle);
  width: 50px;
  height: 50px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-sea-green);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.channel-text h4 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--color-onix);
  margin-bottom: 4px;
  font-weight: normal;
}

.channel-text p, .channel-text a {
  font-size: 0.95rem;
  color: #6b7280;
  text-decoration: none;
}

.channel-text a:hover {
  color: var(--color-sea-green);
}

/* Formulario ejecutivo */
.form-executive {
  background-color: white;
  border: 1px solid var(--color-border-subtle);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

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

.form-group.full-width {
  grid-column: span 2;
}

@media (max-width: 600px) {
  .form-group.full-width {
    grid-column: span 1;
  }
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-onix);
  letter-spacing: 1px;
}

.form-group input, .form-group textarea, .form-group select {
  border: 1px solid var(--color-border-subtle);
  background-color: var(--color-bg-light);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-onix);
  transition: var(--transition-elegant);
  width: 100%;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--color-sea-green);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(9, 129, 74, 0.08);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.btn-submit {
  background-color: var(--color-sea-green);
  color: white;
  border: 2px solid var(--color-sea-green);
  border-radius: 4px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  width: 100%;
  transition: var(--transition-elegant);
}

.btn-submit:hover {
  background-color: transparent;
  color: var(--color-sea-green);
  border-color: var(--color-sea-green);
  transform: translateY(-2px);
}

/* -------------------------------------------------------------
   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-onix);
  color: var(--color-text-light);
  padding: 80px 0 40px 0;
  border-top: 3px solid var(--color-soft-fawn);
}

.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: white;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.footer-brand h3 span {
  color: var(--color-soft-fawn);
}

.footer-brand p {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: white;
  margin-bottom: 20px;
  font-weight: normal;
  border-bottom: 1px solid rgba(229,198,135,0.2);
  padding-bottom: 8px;
}

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

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

.footer-links a {
  color: #9ca3af;
  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(255,255,255,0.05);
  border: 1px solid rgba(229,198,135,0.2);
  color: white;
  border-radius: 4px;
  transition: var(--transition-elegant);
  text-decoration: none;
  font-size: 1.1rem;
}

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

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

.footer-top-btn {
  color: var(--color-soft-fawn);
  border: 1px solid rgba(229, 198, 135, 0.32);
  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: #6b7280;
}

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

.footer-bottom-links a {
  font-size: 0.8rem;
  color: #6b7280;
  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);
}
