/* === Base === */
body {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.container {
  padding: 20px;
}

.hidden {
  display: none;
}

/* === Encabezado === */
header {
  background-color: #0955a1cb;
  color: white;
  padding: 20px;
  text-align: center;
}

.titulo-principal {
  font-size: 35px;
  font-weight: bold;
  margin: 0;
}

/* === Navegación === */
.barra-navegacion {
  background-color: #021425cb;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px 0;
}

.pestana {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  transition: background-color 0.3s ease;
  cursor: pointer;
  min-width: 180px;
}

.pestana:hover {
  background-color: #575757;
}

/* Colores personalizados */
.pestana-inicio {
  background-color: #0955a1cb;
}
.pestana-inicio:hover {
  background-color: #0a66c2;
}

.pestana-verifactu {
  background-color: #0955a1cb;
}
.pestana-verifactu:hover {
  background-color: #0a66c2;
}

.pestana-verde {
  background-color: #2e7d32;
}
.pestana-verde:hover {
  background-color: #388e3c;
}

/* === Listas de descarga === */
.download-list {
  list-style: none;
  padding: 0;
}

.download-list li {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #f6f8fa;
  border: 1px solid #d1d5da;
  border-radius: 6px;
}

.download-link {
  font-weight: bold;
  color: #0366d6;
  text-decoration: none;
  font-size: 1.1em;
}

.download-link:hover {
  text-decoration: underline;
}

.meta {
  display: block;
  font-size: 0.9em;
  color: #586069;
  margin-top: 5px;
}

/* === Sección VCIMA Hermes === */
.logistica-dos-columnas {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}

.columna,
article.columna {
  flex: 1 1 45%;
  min-width: 300px;
}

.columna ul {
  list-style: none;
  padding-left: 0;
}

.columna li {
  margin-bottom: 8px;
}

.columna p {
  margin-bottom: 15px;
}

.vcima-hermes h3,
.vcima-hermes h4 {
  text-decoration: underline;
  text-decoration-color: #0955a1;
  text-decoration-thickness: 2px;
}

.vcima-final {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.botones-vcima {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.boton-descarga {
  background-color: #2e7d32;
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  text-align: left;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.boton-descarga:hover {
  background-color: #388e3c;
}
