/* ---------------- General ---------------- */
body {
  background: url('Fondo2.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Arial', sans-serif;
  color: #222;
  margin: 0;
  padding: 0;
}

/* ---------------- Navbar ---------------- */
.navbar {
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* Links navbar */
.nav-link {
  font-weight: 500;
  transition: color 0.3s;
}
.nav-link:hover {
  color: #ff4d4d !important;
}

/* ---------------- Logo ---------------- */
.logo {
  width: 200px;
  height: 200px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  border-radius: 0; /* cuadrado perfecto */
  overflow: hidden; /* evita que sobresalga el contenido */
}

.logo img,
.logo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------------- Cards ---------------- */
.card {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-bottom: 20px;
}

/* ---------------- Lists ---------------- */
.list-group-item {
  border: none;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: transform 0.2s, background 0.2s;
}
.list-group-item:hover {
  transform: translateY(-3px);
  background-color: #ffe6e6;
}

/* ---------------- Footer ---------------- */
footer {
  margin-top: 50px;
  padding: 20px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
}

/* ---------------- Imágenes fluidas ---------------- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------------- Títulos ---------------- */
h2 {
  font-family: 'Verdana', sans-serif;
  font-weight: bold;
}
