/*!
Valriables
*/
:root {
  --bg-color: #ffffff;
  --text-color: #222222;
  --bg-color-sidebar: #222222;
  --text-color-sidebar: #ffffff;
  --bg-color-navigationbar: #f8f9fa;
  --text-color-navigationbar: #ffffff;
  --bg-color-footer: #4caf50;
  --text-color-footer: #ffffff;
  --primary-color: #4C9A2A; /* Verde principal */
  --secondary-color: #D32F2F; /* Rojo secundario */
  --accent-color: #E0E0E0; /* Para detalles y bordes */
}



body{
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  width: 100%;
}

#content {
  background: #1e1e1e;
  margin: 10px;
  padding: 10px;
  border-radius: 8px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.info {
  margin-top: 5px;
  font-size: 12px;
}

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
  video {
    aspect-ratio: 1/1;
    width: 200px;
  }

}

@media (max-width: 767px) {
  .carousel-item img {
  max-height: 150px; /* Ajusta la altura para móviles */
  }
  .carousel-caption {
  display: none; /* Oculta los captions en móviles */
  }
  #command{
    opacity: 0;
  }
  }

.b-example-divider {
  height: 3rem;
  background-color: rgba(0, 0, 0, 0.1);
  border: solid rgba(0, 0, 0, 0.15);
  border-width: 1px 0;
  box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1),
    inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
}

@media (min-width: 992px) {
  .rounded-lg-3 {
    border-radius: 0.3rem;
  }
}

header {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  text-align: center;
}

header video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.overlay h1 {
  font-size: 3rem;
  margin: 0;
}

.overlay p {
  font-size: 1.2rem;
}

.btn {
  background: #4CAF50;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
}

.section {
  padding: 40px;
  text-align: center;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.card {
  /* Otras opciones: #333333, #1e293b, #064e3b */
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
}

.card h3 {
  color: #4CAF50;
}


.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5) !important; /* Fondo negro con 50% de opacidad */
}
video {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  aspect-ratio: 16/9;
}