body {
  font-family: 'Segoe UI', sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 0;
  color: #333;
}

.site-header {
  background: #114B73;
  color: white;
  text-align: center;
  padding: 25px 0;
  font-size: 1.5em;
  font-weight: 600;
}

.filters-container {
  background: #fff;
  padding: 15px 0;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.filters select {
  margin: 0 8px;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f8f8f8;
  font-size: 15px;
  transition: all 0.2s ease-in-out;
}

.filters select:hover {
  border-color: #999;
}

.ordenamiento-container {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
}

#orden-arrow {
  font-weight: bold;
  margin-left: 5px;
  color: #114B73;
}

.contenedor-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 300px;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 15px;
}

.card-title {
  margin: 0 0 10px;
  font-size: 18px;
}

.badge {
  background-color: #114B73;
  color: white;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 13px;
  margin-right: 5px;
}

.badge.gray {
  background-color: #777;
}

.card-sub {
  margin-top: 10px;
  font-size: 14px;
}

.btn {
  display: inline-block;
  background-color: #114B73;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #114B73;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand .logo{
  height:32px;
  width:auto;
  display:block;
}

.brand-link { color: inherit; }
.brand-link:hover { opacity: .85; }
.logo { height: 40px; width: auto; display:block; }
.logo-text { font: inherit; color: inherit; }


.footer {
  background-color: #114B73;
  color: #eee;
  text-align: center;
  padding: 2rem 1rem;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-brand h3 {
  margin: 0;
  font-size: 1.4rem;
  color: #fff;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #bbb;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #eee;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #00bfa6;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  margin: 0 6px;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}

.footer-social a img:hover {
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 1.5rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #888;
}

/* Estructura general para footer pegado al final */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
}

/* El contenido ocupa todo el espacio disponible */
.contenido {
  flex: 1;
}


