.navbar{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background: var(--bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bg);
}

#hero {
  background-image: url("../../../carrusel/imagen-33.jpeg");
  height: 100vh; 
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center;
  animation: movebg 20s linear infinite;
}

@keyframes movebg {
  0% {
    background-position: center;
  }
  100% {
    background-position: bottom;
  }
}

#hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.viker-container {
  width: 100%;
  max-width: 1100px;
  height: 110px;
  margin: 15px;
  padding: 15px;
  background: linear-gradient(to right, #f3cb4a, #faab00, #fa6400);
  border: 5px solid #cecece;
  border-radius: 80px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.guide-title {
  color: rgb(7, 66, 175);
  font-size: 40px;
  font-weight: bold;
  margin-left: 20px;
  letter-spacing: 100px;
}

.viker-logo-circle {
  background-color: #ffffff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid #c00050; 
  position: relative;
  right: 30px; 
  z-index: 2;
}

.viker-logo-circle img {
  width: 60px; 
  height: auto;
}

.viker-logo-circle .viker-text {
  color: rgb(7, 66, 175);
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  font-weight: bold;
  margin-top: 5px;
}

.espacio{
  margin: 10px;
  padding: 10px;
}

.servicios {
  list-style: none;
  padding: 0;
}

.servicios li {
  margin: 15px 0;
  border-radius: 8px;
  overflow: hidden;
}

.tituloLi {
  background: linear-gradient(90deg, #f00ca4, #07e95e, #07bb8e, #ba54ce, #5489ce);
  height: 70px;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.tituloLi button {
  background: none;
  border: none;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

.descripcion {
  display: none;
  padding: 12px;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.colaboradores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columnas fijas */
  gap: 20px; /* espacio entre imágenes */
  justify-items: center;
  align-items: center;
  padding: 20px;
}

.colaborador {
  max-width: 300px;
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#colaboradores {
  max-width: 200px;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.colaborador:hover {
  transform: scale(1.1);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

#colaboradores:hover {
  transform: scale(1.1);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery {
  display: flex;
  flex-direction: column;
  align-items: center; 
}

#mainImage {
  width: 100%;
  max-width: 500px; 
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.thumbnail-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  gap: 10px;
}

.thumbnails {
  display: flex;
  overflow: hidden;
  width: 100%; 
}

.thumbnails img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
  margin: 5px;
}

.thumbnails img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.arrow {
  background-color: #ff9900;
  border: none;
  color: white;
  padding: 5px;
  font-size: 25px;
  border-radius: 10%;
  cursor: pointer;
}

.arrow:hover {
  background-color: #cc7a00;
}

#introVideo {
  width: 60%;         
  height: auto;       
  display: block;     
  margin: 0;     
}

.welcome-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease;
  z-index: 10;
}

.start #welcomeScreen {
  opacity: 0;
  pointer-events: none;
}

.start .welcome-screen {
  opacity: 0;
  pointer-events: none;
}

.start .welcome-screen img {
  transform: scale(0.4) translate(-350%, 350%);
}

.container-main {
  opacity: 0;
  padding: 40px;
  transition: opacity 1s ease;
}

.start .container-main {
  opacity: 1;
}