:root {
  --pri-col: #cdab3b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
  background-color: black;
} */

/* .content-general {
  background: black;
  width: 100vw;
  margin: 0 !important;
  min-height: auto !important;
  height: auto !important;
}

.navbar {
  background: white;
  margin: 10px 20px;
  min-height: 60px;
  border-radius: 16px;
  position: relative;
}

.navbar-nav {
  position: absolute;
  width: 100%;
  justify-content: center;
  left: 0;
}

.navbar-toggler {
  color: black;
  border: none;
  font-size: 1.25rem;
  z-index: 2;
} */

.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* .nav-link {
   color: black; 
 font-weight: 500; 
  padding: 0.5rem 0;
  border-radius: 10px;
  cursor: pointer;
} */

.nav-link:hover {
  background: #cdab3b;
}

/* .dropdown-menu {
  border: none;
  margin: 0.7rem;
  box-shadow: none;
} */

/* .dropdown-item {
  padding: 0.5rem 1rem;
  cursor: pointer;
} */

.dropdown-item:hover {
  background: #cdab3b;
  width: 90%;
  border-radius: 10px;
  margin: auto;
}

.btn-navbar {
  right: 20px;
  min-width: 100px;
  background-color: #cdab3b;
  color: black !important;
  font-size: clamp(1rem, 0.85rem + 0.303vi, 1.5rem);
  padding: 0.5rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
}

.btn-navbar:hover {
  background-color: black;
  border: 2px solid #cdab3b;
  color: white !important;
}

/* #logo-ex {
  height: 50px;
  left: 30px;
} */

/* .btn-close-red {
  font-weight: 900;
} */

/* .carousel-container {
  display: flex;
  flex-direction: row;
  margin: 0.5rem 0;
  position: relative;
} */

/* .div-texto-col {
  display: flex;
  width: 20%;
  justify-content: center;
  align-items: center;
  color: #cdab3b;
} */

/* .texto-col {
  font-size: 2vw;
  font-weight: 900; 
} */

/* .group {
  max-width: 80%;
  overflow: hidden;
} */

.carousel-track {
  /* display: flex; */
  /* width: max-content; */
  animation: scroll 30s linear infinite;
}

/*.card {
   flex: (0 0 auto);
  width: 8vw;
  height: 8vw; */
/* display: flex;
  align-items: center;
  justify-content: center; */
/* margin: 0 10px; */
/* background-color: transparent; 
}*/

/* .card img {
  width: 100%;
} */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.previous-card img {
  width: clamp(5rem, 4.5081rem + 2.0986vw, 6.25rem);
  height: clamp(5rem, 4.5081rem + 2.0986vw, 6.25rem);
}

.previous-card p {
  font-size: clamp(0.8rem, 0.6426rem + 0.6716vw, 1.2rem);
}

@media (max-width: 767px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    transition: right 0.4s ease-in-out;
    background-color: white;
    z-index: 100;
  }

  .navbar-nav {
    gap: 0 !important;
  }

  .nav-link {
    background-color: #cdab3b;
    border-radius: 0 !important;
    border: 1px solid black;
    padding: 1rem 0;
    text-align: center;
  }

  .card {
    width: 15vw !important;
    height: 15vw !important;
  }

  .dropdown-menu {
    margin: 0 !important;
    padding: 0 !important;
  }
}

@media (max-width: 440px) {
  .container {
    gap: 25px;
  }

  #logo-ex {
    width: 100% !important;
    height: 80% !important;
  }

  .btn-navbar {
    margin-right: 50px;
    margin-bottom: 15px;
  }

  .navbar-toggler {
    margin-left: 50px;
    margin-bottom: 15px;
  }
}
