/* ===========================
   ENLACES DE INTERÉS - ESTILO TARJETA SIMPLE
   =========================== */

/* Header de enlaces */
.noticias-header {
  text-align: center;
  margin-bottom: 60px;
}

.noticias-header h2 {
  color: var(--color-text);
  font-family: var(--font-title);
  font-size: 3rem;
  margin-bottom: 25px;
  font-weight: 800;
  background: linear-gradient(135deg, #b8860b 0%, #daa520 25%, #ffd700 50%, #ffeb3b 75%, #b8860b 100%);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s ease-in-out infinite;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.noticias-descripcion {
  color: var(--color-text-light);
  font-family: var(--font-elegant);
  font-size: 1.3rem;
  font-style: italic;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Estructura de la sección */
.enlaces-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.enlaces-grid {
  display: flex;
  flex-direction: column;
}

/* ESTILO TARJETA SIMPLE */
.enlace-oficial {
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.enlace-oficial:hover {
  box-shadow: 0 4px 16px rgba(44, 90, 160, 0.2);
  transform: translateY(-3px);
}

.enlace-icono {
  margin-right: 16px;
  font-size: 1.5rem;
  color: #2c5aa0;
  flex-shrink: 0;
}

.enlace-contenido {
  flex: 1;
}

.enlace-contenido h3 {
  margin: 0 0 4px 0;
  font-size: 1.1rem;
  color: #2c5aa0;
  font-weight: 600;
}

.enlace-contenido p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.enlace-arrow {
  margin-left: auto;
  color: #2c5aa0;
  opacity: 0.7;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.enlace-oficial:hover .enlace-arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* Animaciones suaves */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.enlace-oficial {
  animation: slideIn 0.6s ease-out;
}

.enlace-oficial:nth-child(1) { animation-delay: 0.1s; }
.enlace-oficial:nth-child(2) { animation-delay: 0.2s; }
.enlace-oficial:nth-child(3) { animation-delay: 0.3s; }

/* Efectos de focus para accesibilidad */
.enlace-oficial:focus {
  outline: 2px solid #2c5aa0;
  outline-offset: 2px;
}

/* Responsivo */
@media (max-width: 768px) {
  .enlaces-container {
    padding: 0 16px;
  }
  
  .enlace-oficial {
    padding: 16px;
    margin-bottom: 12px;
  }
  
  .enlace-icono {
    margin-right: 12px;
    font-size: 1.3rem;
  }
  
  .enlace-contenido h3 {
    font-size: 1rem;
  }
  
  .enlace-contenido p {
    font-size: 0.85rem;
  }
  
  .noticias-header h2 {
    font-size: 2.5rem;
  }
  
  .noticias-descripcion {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .enlace-oficial {
    padding: 14px;
    border-radius: 10px;
  }
  
  .enlace-icono {
    margin-right: 10px;
    font-size: 1.2rem;
  }
  
  .enlace-contenido h3 {
    font-size: 0.95rem;
  }
  
  .enlace-contenido p {
    font-size: 0.8rem;
  }
  
  .enlace-arrow {
    font-size: 0.9rem;
  }
  
  .noticias-header h2 {
    font-size: 2rem;
  }
  
  .noticias-descripcion {
    font-size: 1rem;
  }
}
