/* CSS */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-container {
  position: absolute;
  top: 10%;
  left: 20%;
  transform: translate(-10%, -20%);
  background-color: rgba(255, 255, 255, 0.7);
}
.navbar {
  border-radius: 30px;
}

.text-container h1 {
  color: #fff;
  font-size: 3rem;
  text-shadow: 0 0 10px #000;
}

.zoom-img {
  transition: transform 0.3s ease;
  cursor: pointer;
}
.zoom-img:hover {
  transform: scale(1.3);
  overflow: hidden;
}

.zoom-container {
  display: inline-block;
  overflow: hidden;
  width: 400px;   /* Ajusta al tamaño deseado */
  height: 400px;  /* Ajusta al tamaño deseado */
}
.zoom-img-js {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.tabs {
  margin-bottom: 10px;
}
.tab-btn {
  background: #eee;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  outline: none;
  margin-right: 2px;
  font-size: 16px;
  transition: background 0.2s;
}
.tab-btn.active, .tab-btn:hover {
  background: #ccc;
}
.tab-content {
  display: none;
  padding: 15px;
  border: 1px solid #ccc;
  background: #fafafa;
}

.resena {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.7);
}

#btnTop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;      /* O usa left: 30px; para la izquierda */
  z-index: 99;
  font-size: 22px;
  border: none;
  outline: none;
  background: #0da9c4;
  color: #fff;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background 0.2s;
  display: inline-block;   /* Asegura que no ocupe todo el ancho */
  width: auto;             /* No uses width: 100% ni block */
  min-width: 0;            /* Opcional, para evitar expansión */
  max-width: 60px;         /* Opcional, limita el tamaño máximo */
}
#btnTop:hover {
  background: #555;
}