@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: #00166f;
  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: #00166f !important;
}

.btn {
  border-radius: 20px !important;
}

.btn-pink {
  background-color: #ee2c86 !important;
}

.btn-morado {
  background-color: #00166f !important;
}

.bg-orange {
  background-color: #eb6b03 !important;
}

.bg-vinotinto {
  background-color: #6c0832 !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: #ee2c86;
}

.text-morado {
  color: #00166f !important;
}

.text-vinotinto {
  color: #6c0832 !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;
}


@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;
  }


}