.navbar1 {
  padding: 1rem 2rem;
  border-radius: 6px;
  border-bottom: 3px solid #D7C20A; /* línea amarilla dorada */
  backdrop-filter: blur(3px); /* efecto suave si hay fondo detrás */
}

.navbar1 a {
  color: #000000 !important; /* color negro */
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s ease-in-out;
}

.navbar1 a:hover {
  color: #D7C20A;
}

/* === IMPRESIÓN === */
@media print {
  body * {
    visibility: hidden;
  }

  .print-content, .print-content * {
    visibility: visible;
  }

  .print-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 1rem;
  }
}
.contact-sidebar {
  background-color: #fbfbfb;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #D7C20A;
  border-radius: 6px;
  padding: 1.5rem;
  text-align: left;
}
.contact-sidebar p {
  text-align: center;
  font-size: 14px;
  color: #333;
  margin-bottom: 1rem;
}
.contact-sidebar .button {
  margin-top: 0.5rem;
  font-size: 14px;
  border: 1px solid #ccc;
  background-color: white;
  color: #1E3857;
  transition: all 0.3s ease;
}
.contact-sidebar .button:hover {
  background-color: #D7C20A;
  color: #1E3857;
  border-color: #D7C20A;
}

/* === ENCABEZADO DE ARTÍCULO === */
.article-header {
  background-color: #fdfdfd;
  padding: 1rem;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 8px;
}
.article-header img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* === CUERPO DE ARTÍCULO === */
.article-content {
  text-align: justify;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.8;
  color: #2d2d2d;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.article-content h1 {
  font-size: 1.8rem;
  color: #1E3857;
  margin-bottom: 1.5rem;
  font-family: 'Actor', sans-serif;
  text-align: left;
}
.article-content p {
  margin-bottom: 1rem;
}

/* === IMAGEN EN ARTÍCULO === */
.article-content img {
  margin: 1rem auto;
  border-radius: 4px;
  display: block;
  max-width: 100%;
}

/* === IMAGEN ANCHA === */
.fullwidth-image img {
  width: 100%;
  height: auto;
}

/* === COMPARTIR === */
share-buttons {
  position: relative;
  display: inline-block;
}
.share-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  z-index: 10;
  border-radius: 4px;
}
.share-dropdown a {
  display: block;
  padding: 10px 14px;
  color: #1E3857;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}
.share-dropdown a:hover {
  background-color: #f7f7f7;
}

/* === SPAN PARA ÍCONOS Y TEXTO === */
span {
  vertical-align: middle;
}

/* === BOTÓN MODERNO === */
.boton {
  font-family: 'Actor', sans-serif;
  font-size: 15px;
  background-color: transparent;
  color: #1E3857;
  padding: 0.75rem 1.2rem;
  border: 1px solid #1E3857;
  border-radius: 5px;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.boton:hover {
  background-color: #D7C20A;
  color: #ffffff;
  border-color: #D7C20A;
}
