@import url('assets/css/index.css');
@import url('assets/css/footer.css');
@import url('assets/css/howShouldIStore.css');
@import url('assets/css/WhoUseVictosa.css');
@import url('assets/css/pdfViewer.css');
@import url('assets/css/Question.css');
@import url('assets/css/whatVictoza.css');
@import url('assets/css/whatShouldIDo.css');
@import url('assets/css/typography.css');

body,
html {
  margin: 0;
  padding: 0;
  font-family: sans-serif !important;
}

.nav-static {
  position: fixed;
  /* Fija el navbar en su posición */
  top: 0;
  /* Coloca el navbar en la parte superior de la ventana */
  width: 100%;
  /* Ancho completo del navbar */
  z-index: 1000;
  /* Asegura que el navbar esté por encima de otros elementos */
}

.nav {
  display: flex;
  justify-content: flex-end;
  background-color: #004c50;
  align-items: center;
  padding: 15px 25px;
  height: 130px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 95px;
  height: auto;
  margin-right: 20px;

  /* Para breakpoint md (mínimo de md) */
  @media (min-width: 768px) {
    width: 120px;
  }
}

.custom-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.custom-link:hover {
  color: inherit;
  /* Mantiene el color del texto al pasar sobre el enlace */
}

.title {
  font-family: sans-serif;
  font-weight: bold;
  color: #5c6066;
}

.card {
  background-color: #004c50 !important;
}

.btn {
  border-radius: 20px !important;
}

.btn-pink {
  background-color: #cfd32b !important;
}

.btn-morado {
  background-color: #00166f !important;
}

.bg-orange {
  background-color: #eb6b03 !important;
}

.bg-vinotinto {
  background-color: #cfd32b !important;
}

.bg-morado {
  background-color: #00166f !important;
}


.Apis-Regular {
  font-family: "Apis Regular" !important;
}

.Apis-Light {
  font-family: "Apis Light" !important;
}

.Apis-Medium {
  font-family: "Apis Medium" !important;
}

.Apis-Bold {
  font-family: "Apis Bold" !important;
}

.text-pink {
  color: #cfd32b;
}

.text-pink {
  color: #cfd32b;
}

.text-blue {
  color: #001965 !important;
}

.text-morado {
  color: #004c50 !important;
}

.text-vinotinto {
  color: #01195E !important;
} 

.container-banner-general {
  border-top-right-radius: 2rem !important;
  border-bottom-right-radius: 0rem !important;

}

.custom-font {
  font-size: larger;
}

.text-justify {
  text-align: justify!important;
}

.img-novo {
  background: white !important;
  border-top-right-radius: 7rem;
  border-bottom-right-radius: 7rem;
  width: 35% !important;
}

.img-novo-2 {
  width: 15% !important;
}

.ul-punto {
  list-style-type: disc; /* Asegura que aparezcan viñetas */
}

.caja2-preguntas {
  margin-top: 100px !important;
}

@media (max-width: 992px) {
  .caja2-preguntas {
    margin-top: 0 !important;
  }
}

@media (max-width: 1000px) {
  .custom-font {
    font-size: large;
  }

  .img-novo {
    background: white;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 7rem;
    width: 100% !important;
  }
  
  .img-novo-2 {
    width: 100% !important;
  }


}

.full-width-object {
  position: absolute;
  left: 50%; /* Posiciona el elemento en el centro de la pantalla */
  transform: translateX(-50%); /* Mueve el elemento para que esté centrado */
  width: 100vw; /* Ancho del 100% del viewport */
  background-color: lightblue;
  height: 50px; /* Ajusta la altura del objeto */
}