/* ==================================================================
   SISTEMA DE DISEÑO - LES LUTHIERS (MUSEO DIGITAL)
   Estética sofisticada, minimalista y legible.
   ================================================================== */

:root
{
  /* Paleta "Editorial High-Contrast" (AA+ Compliant) */
  /* Fondo Predominante */
  --bg-body: #689901;
  /* Verde Patrick */
  --bg-surface: #FFFFFF;
  /* Blanco puro */
  --bg-subtle: #F2F5ED;
  /* Neutro cálido muy claro */

  /* Texto */
  --text-primary: #0A1F00;
  /* Verde Noche Profundo (Casi negro) - Alto contraste sobre blanco Y verde */
  --text-secondary: #3D4035;
  /* Charcoal verdoso */
  --text-muted: #5C6155;
  /* Piedra */

  /* Acentos */
  --accent-primary: #000000;
  /* Negro para máxima definición en acciones */
  --accent-secondary: #8E3E00;
  /* Bronce quemado (accesible sobre blanco) */
  --divider: #E0E0E0;

  /* Sombras (Más nítidas para estilo gráfico) */
  --shadow-sm: 0 1px 0 rgba(0, 0, 0, 0.1);
  --shadow-md: 4px 4px 0 rgba(0, 0, 0, 0.1);
  /* Sombra dura "Brutalista sutil" */
  --shadow-lg: 8px 8px 0 rgba(0, 0, 0, 0.15);
  --glass: #FFFFFF;
  /* Sin transparencia para asegurar contraste */
  --blur: none;

  /* Tipografía */
  --font-serif: 'Playfair Display', Times, serif;
  --font-sans: 'Inter', Helvetica, sans-serif;

  /* Sistema de Espaciado */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* Radio de borde */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  /* Bordes más rectos para estilo editorial */
}

/* ==================================================================
   RESET Y BASE
   ================================================================== */

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

html
{
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body
{
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--bg-body);
  /* Patrón de ruido sutil para textura "papel" */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
  line-height: 1.6;
  min-height: 100vh;
}

/* ==================================================================
   TIPOGRAFÍA
   ================================================================== */

h1,
h2,
h3,
h4,
h5,
h6
{
  font-family: var(--font-serif);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
  font-weight: 700;
  /* Pesos más fuertes para legibilidad */
}

/* Header Logos */
.header-logo-left,
.header-logo-right
{
  height: 48px;
  width: auto;
  vertical-align: middle;
  filter: invert(1);
}

.header-logo-left
{
  margin-right: 12px;
}

.header-logo-right
{
  margin-left: 12px;
}

@media (max-width: 768px)
{
  .header-container > h1
  {
    flex-direction: column;
    gap: 8px;
  }

  .header-logo-left,
  .header-logo-right
  {
    display: block;
    height: 48px;
    width: auto;
    object-fit: contain;
    margin: 4px 0;
  }

  h1
  {
    font-size: 2.5rem;
    /* Ajustado para consistencia */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

/* ==================================================================
   NAVEGACIÓN MOBIL
   ================================================================== */
@media (max-width: 768px)
{
  .nav-links
  {
    justify-content: center;
    /* Centrar items del menú */
    gap: var(--space-xs);
    flex-wrap: wrap;
    padding-top: 20px;
    margin-left: 60px;
    /* Espacio para imagen izquierda */
  }

  .nav-brand-right
  {
    display: none;
  }

  .nav a:not(.nav-brand)
  {
    font-size: 0.85rem;
    padding: 0.5rem;
  }
}

h1
{
  font-size: 4rem;
  letter-spacing: -0.03em;
}

h2
{
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h3
{
  font-size: 1.75rem;
}

h4
{
  font-size: 1.25rem;
}

p
{
  margin-bottom: var(--space-sm);
  max-width: 70ch;
}

a
{
  color: inherit;
  text-decoration: underline;
  /* Subrayado por defecto para accesibilidad */
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: all 0.2s ease;
}

a:hover
{
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.2);
  text-decoration-thickness: 2px;
}

/* ==================================================================
   LAYOUT FULL WIDTH
   ================================================================== */

.container
{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-full
{
  width: 100%;
  padding: var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bg-green
{
  background-color: var(--bg-body);
  color: var(--text-primary);
}

.bg-white
{
  background-color: var(--bg-surface);
  color: var(--text-primary);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.bg-green .detail-text,
.bg-green h2,
.bg-green p,
.bg-green h3
{
  color: var(--text-primary);
}

.row-content
{
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-md);
}

/* ==================================================================
   FEATURED SECTION (ÚLTIMA ACTUALIZACIÓN)
   ================================================================== */

.section-featured
{
  min-height: 345px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.section-title-small
{
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4A5568;
  margin-bottom: var(--space-md);
}

.update-text
{
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1.4;
  color: #7A8FA3;
  /* Azul-gris de bajo contraste */
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 768px)
{
  .update-text
  {
    font-size: 1.5rem;
  }
}

/* Updates - Ernesto Acher News */
.update-highlight
{
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 var(--space-xs);
  text-transform: uppercase;
}

.update-date
{
  font-family: var(--font-sans);
  font-size: 1.25rem;
  color: #7A8FA3;
  letter-spacing: 0.1em;
  margin: 0 0 var(--space-md);
}

.update-link
{
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.update-link:hover
{
  color: #3A4A58;
}

@media (max-width: 768px)
{
  .update-highlight
  {
    font-size: 2rem;
  }
}

/* Editorial Intro */
.editorial-intro
{
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  max-width: 600px;
}

/* ==================================================================
   WALKING CHARACTER ANIMATION
   ================================================================== */

.walking-character
{
  position: absolute;
  bottom: 0;
  right: -150px;
  /* Empieza fuera de la pantalla */
  height: 120px;
  width: auto;
  z-index: 10;
  animation:
    walk-across 30s linear infinite,
    wobble 2s ease-in-out infinite;
  pointer-events: none;
}

/* Animación de cruce: derecha a izquierda */
@keyframes walk-across
{
  0%
  {
    right: -150px;
  }

  100%
  {
    right: calc(100% + 150px);
  }
}

/* Animación de balanceo: 5° izquierda y derecha */
@keyframes wobble
{

  0%,
  100%
  {
    transform: rotate(0deg);
  }

  25%
  {
    transform: rotate(2deg);
  }

  75%
  {
    transform: rotate(-2deg);
  }
}

/* Ocultar en móviles para no distraer */
@media (max-width: 768px)
{
  .walking-character
  {
    display: none;
  }
}

/* ==================================================================
   ALMANAQUES GRID
   ================================================================== */

.almanac-grid
{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto var(--space-md);
}

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

.almanac-card
{
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--divider);
}

.almanac-card:hover
{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.almanac-card img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.almanac-placeholder
{
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-muted);
  text-align: center;
}

.btn-secondary
{
  display: inline-block;
  background-color: transparent;
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border: 2px solid var(--text-primary);
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover
{
  background-color: var(--text-primary);
  color: #FFFFFF;
}

.mt-2
{
  margin-top: var(--space-md);
}

/* ==================================================================
   EDITORIAL SECTION (LA COLUMNA DE PATRICK)
   ================================================================== */

.editorial-section
{
  min-height: 200px;
  padding: var(--space-xl) 0;
}

.editorial-wrapper
{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  position: relative;
}

.editorial-label
{
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: #7A8FA3;
  /* Azul-gris de bajo contraste */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: absolute;
  left: 0;
  transform: translateX(-100%) translateX(-2rem);
  white-space: nowrap;
  opacity: 0.6;
}

/* Solo mostrar EDITORIAL label en pantallas muy anchas (>1700px) */
@media (max-width: 1700px)
{
  .editorial-label
  {
    display: none;
  }
}

.editorial-content
{
  width: 100%;
  text-align: center;
}

.editorial-link
{
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: inline-block;
  padding: 1rem 2rem;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.editorial-link:hover
{
  color: #3A4A58;
  border-bottom-color: #3A4A58;
}

@media (max-width: 768px)
{
  .editorial-link
  {
    font-size: 1.25rem;
  }
}

/* Text section - dark background */
.decana-section-text
{
  min-height: 200px;
  position: relative;
  background-color: #1A202C;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) 0;
}

/* Image section - 98.png background */
.decana-section-image
{
  min-height: 336px;
  position: relative;
  background-color: #2D3748;
  background-image: url('../assets/backgrounds/98.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.decana-overlay
{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Sepia-toned overlay */
  background: linear-gradient(135deg, rgba(112, 66, 20, 0.30) 0%, rgba(45, 30, 15, 0.30) 100%);
  z-index: 1;
}

.decana-content
{
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
}

.decana-title
{
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7A8FA3;
  margin-bottom: var(--space-sm);
}

.decana-years
{
  font-family: var(--font-serif);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  margin: 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.decana-dates
{
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 500;
  color: #60D156;
  /* Verde ICQ clásico */
  letter-spacing: 0.2em;
  margin-top: var(--space-xs);
}

@media (max-width: 768px)
{
  .decana-years
  {
    font-size: 3.5rem;
  }

  .decana-title
  {
    font-size: 1rem;
  }

  .decana-dates
  {
    font-size: 1rem;
  }
}

/* ==================================================================
   DISCLAIMER SECTION
   ================================================================== */

.disclaimer-section
{
  padding: var(--space-lg) 0;
}

.disclaimer-highlight
{
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.disclaimer-text
{
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}



/* ==================================================================
/* ==================================================================
   HEADER & NAVEGACIÓN
   ================================================================== */

.header
{
  background-color: var(--bg-surface);
  color: var(--text-primary);
  padding: var(--space-md) 0;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1001;
}

.header h1
{
  color: var(--text-primary);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.header h1 img
{
  filter: none !important;
}

.header h1 img[src*="cellato.gif"]
{
  filter: invert(1) !important;
}

.header p
{
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0.5rem auto 0;
}

.nav
{
  background: var(--bg-surface);
  border-bottom: 1px solid var(--divider);
  border-top: 1px solid var(--divider);
  margin: 0;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.nav-container
{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  overflow-x: auto;
  min-height: 3.5rem;
  position: relative;
}

/* Marca oculta por defecto en el menú (aparece al scroll) */
.nav-brand
{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  position: absolute;
  height: 100%;
  z-index: 20;
}

/* Brand Izquierda - Glamocot + Title */
.nav-brand-left
{
  left: 1rem;
  transform: translateX(-20px);
}

/* Brand Derecha - Cellato flotando */
.nav-brand-right
{
  right: 1rem;
  transform: translateX(20px);
}

.nav-brand img
{
  height: 32px;
  width: auto;
  filter: invert(1);
}

.nav-brand span
{
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.1rem;
  white-space: nowrap;
  display: none;
}

@media (min-width: 1420px)
{

  /* DESKTOP GRANDE: Mostrar texto */
  .nav-brand-left span
  {
    display: block;
  }

  .nav-brand-right
  {
    display: flex;
  }
}

@media (min-width: 1024px) and (max-width: 1419px)
{

  /* DESKTOP MEDIO: Ocultar texto */
  .nav-brand-left span
  {
    display: none;
  }

  .nav-brand-right
  {
    display: flex;
  }
}

@media (min-width: 769px) and (max-width: 1023px)
{

  /* TABLET: Ocultar texto izquierda, Mantener logo derecha */
  .nav-brand-left span
  {
    display: none;
  }

  .nav-brand-right
  {
    display: flex;
  }
}

@media (max-width: 768px)
{

  /* MÓVIL: Ocultar texto izquierda, Ocultar logo derecha */
  .nav-brand-left span
  {
    display: none;
  }

  .nav-brand-left img
  {
    /* El logo izquierdo se mantiene visible */
  }

  .nav-brand-right
  {
    display: none;
  }
}

@media (min-width: 1024px) and (max-width: 1419px)
{

  /* En pantallas medianas, solo mostrar Icono para no pisar links */
  .nav-brand span
  {
    display: none;
  }
}


/* ESTADO SCROLLED: La clase .scrolled se añade con JS */
.nav.scrolled .nav-brand
{
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.nav.scrolled .nav-container
{}

.nav a:not(.nav-brand)
{
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  padding: 1rem 0.5rem;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}

.nav a:not(.nav-brand):hover,
.nav a:not(.nav-brand).active
{
  color: var(--text-primary);
  background-color: transparent;
  border-bottom-color: var(--accent-secondary);
}

/* ==================================================================
   HERO & BÚSQUEDA (SECCIÓN SUPERIOR)
   ================================================================== */

main.container
{
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.detail-hero
{
  text-align: center;
  margin-bottom: var(--space-xl);
}

.detail-title
{
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.detail-text
{
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0 auto var(--space-sm);
}

/* Búsqueda rediseñada para ser minimalista */
.search-section
{
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.search-container
{
  position: relative;
}

.search-input
{
  width: 100%;
  padding: 1rem 1.5rem 1rem 3rem;
  font-size: 1rem;
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  background-color: var(--bg-surface);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  font-family: var(--font-sans);
}

.search-input:focus
{
  outline: none;
  border-color: var(--text-muted);
  box-shadow: var(--shadow-md);
}

.search-icon
{
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
}

/* ==================================================================
   GRID & CARDS
   ================================================================== */

.grid
{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.card
{
  background: var(--bg-surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover
{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-image-wrapper
{
  width: 100%;
  padding-top: 60%;
  /* Aspect ratio 5:3 */
  position: relative;
  background-color: var(--bg-subtle);
  overflow: hidden;
}

.card-image
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image
{
  transform: scale(1.05);
  /* Zoom sutil */
}

.card-body
{
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-tags
{
  margin-bottom: var(--space-xs);
}

.tag
{
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--accent-secondary);
}

.card-title
{
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  /* Evitar huérfanos */
  text-wrap: balance;
}

.card-text
{
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}

/* ==================================================================
   ESTADÍSTICAS
   ================================================================== */

.stats-grid
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: var(--space-md) 0;
}

.stat-card
{
  text-align: center;
  padding: var(--space-sm);
}

.stat-number
{
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-serif);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label
{
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==================================================================
   FOOTER
   ================================================================== */

.footer
{
  background-color: var(--bg-subtle);
  color: var(--text-secondary);
  padding: var(--space-lg) 0;
  text-align: center;
  border-top: 1px solid var(--divider);
  margin-top: var(--space-xl);
}

.footer p
{
  margin: 0.5rem 0;
}

.footer strong
{
  color: var(--text-primary);
}

/* ==================================================================
   UTILIDADES & ANIMACIONES
   ================================================================== */

.text-center
{
  text-align: center;
}

.mb-1
{
  margin-bottom: var(--space-sm);
}

.mb-2
{
  margin-bottom: var(--space-md);
}

.mb-3
{
  margin-bottom: var(--space-lg);
}

.fade-in
{
  animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

@keyframes fadeIn
{
  from
  {
    opacity: 0;
    transform: translateY(10px);
  }

  to
  {
    opacity: 1;
    transform: translateY(0);
  }
}

.loading,
.error
{
  text-align: center;
  padding: var(--space-lg);
  color: var(--text-secondary);
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
}

/* Highlight para el link de autor */
/* Highlight para el link de autor */
.nav a.nav-highlight
{
  color: #FFFFFF !important;
  background-color: var(--text-primary);
  font-weight: 600;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  margin-left: 1rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav a.nav-highlight:hover
{
  background-color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #FFFFFF !important;
  border-bottom: none;
}

/* Botones */
.btn-primary
{
  display: inline-block;
  background-color: var(--text-primary);
  color: #FFFFFF;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  /* Pill shape más amable */
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: none;
}

.btn-primary:hover
{
  background-color: var(--accent-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ==================================================================
   RESPONSIVE
   ================================================================== */

@media (max-width: 768px)
{
  html
  {
    font-size: 14px;
  }

  .header h1
  {
    font-size: 2.5rem;
  }

  .detail-title
  {
    font-size: 2rem;
  }

  .nav-container
  {
    justify-content: flex-start;
    /* Permitir scroll horizontal en móviles */
  }
}