html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
}

main {
    flex: 1;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* archivo header.ejs */
.navbar {
    background-color: #ffffff !important;
    border-bottom: 3px solid #333333;
}

.navbar .navbar-nav .nav-link {
    color: #333333;
}

.navbar .navbar-toggler-icon {
    background-color: #333333;
}

.navbar-brand img {
    width: 450px;
}

.navbar-dark .navbar-toggler-icon {
    background-color: #333333;
}

/* archivo footer.ejs */
footer {
    background-color: #ffffff !important;
    border-top: 5px solid #333333;/
}

/* archivo ubicacion.ejs */

.location-card {
  background-color: #fefefe;
  border: 1px solid #ccc;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-card h5 {
  font-size: 1.2rem;
  color: #2c3e50;
}

.location-card p {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: #444;
}

.ratio iframe {
  border-radius: 6px;
}

.ratio-custom {
  position: relative;
  width: 100%;
  padding-bottom: 45%; /* reduce esto para menos altura */
}

.ratio-custom iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  border: none;
}

