body {
  font-family: Menlo Regular, "Roboto", sans-serif;
  background: #ffffff;
  margin: 0;
  font-family: roboto, sans-serif;
  z-index: 1;
  font-style: normal;
}

#pdfRendering {
    position: relative;
}
#firmarBtn {
    position: fixed;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    z-index: 10;
    height: 50px;
}

body::-webkit-scrollbar {
  width: 6px;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
  background-color: #3B8DB7;
}

/* Menú de navegación */
#primary-menu {
  display: flex;
  list-style: none;
}

#primary-menu .menu-item {
  margin: 0;
}

#primary-menu .nav__link {
  text-decoration: none;
  color: #000; /* Color del texto, ajusta según el diseño */
  font-size: 16px; /* Ajusta según el diseño */
  text-transform: capitalize;
}

#primary-menu .nav__link:hover {
  color: #3B8DB7; /* Color al pasar el ratón, ajusta según el diseño */
}

/* Menu burger para pantallas pequeñas */
#burger {
  display: none; /* Ocultar por defecto */
}


/* Estilos iniciales para la lista de banderas */
.flags_languages {
  list-style: none;
  margin: 0;
  padding: 10px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  margin-left: auto; /* Alinear las banderas a la derecha */
  gap: 15px; /* Espacio entre las banderas */
  position: fixed;
  top:0;
  right: 20px;
  background-color: #fff;
}


.flags_languages .flag {
  display: none;
}


.flags_languages .flag-active {
  cursor: pointer; /* Cambia el cursor al pasar por encima para indicar que es clickeable */
}

.flags_languages .flag-menu {
  display: none; /* Oculta el menú de banderas desplegable por defecto */
  position: absolute;
  top: 100%; /* Justo debajo de la bandera activa */
  right: 0; /* Alineado a la derecha de la bandera activa */
  background-color: #fff; /* Fondo del menú desplegable */
  border: 1px solid #ccc; /* Borde del menú desplegable */
  padding: 10px; /* Espaciado dentro del menú desplegable */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra para darle profundidad */
  z-index: 1000; /* Asegurarse de que esté por encima de otros elementos */
  list-style: none;
  margin: 0;
  padding: 0;
  width: max-content; /* Ajustar el ancho del menú según su contenido */
}

.flags_languages .flag-menu .flag {
  display: block;
  margin-bottom: 5px; /* Espacio entre las banderas en el menú desplegable */
}

.flags_languages .flag-menu .flag:last-child {
  margin-bottom: 0; /* Eliminar el margen inferior para el último elemento */
}

.flags_languages img{
  width: 30px; /* Ajustar el ancho de las banderas según el diseño */
  height: 20px; /* Ajustar el alto de las banderas según el diseño */
  border-radius: 4px; /* Bordes redondeados de las banderas */
}


.flags_languages .flag-menu .flag a {
  text-decoration: none; /* Eliminar subrayado de los enlaces */
  color: #000; /* Color del texto, ajusta según el diseño */
}

.flags_languages a{
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer-partner{
  display: flex;
  flex-direction: column;
  align-items: center;
}

#footer #section-contact-form h2 {
  color: #3B8DB7;
  font-size: 30px;
  margin-top: 50px;
  text-align: center;
}

#footer #section-contact-form #contact-form input, #footer #section-contact-form #contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #3B8DB7;
  outline: none;
}
#footer #section-contact-form #contact-form input:focus, #footer #section-contact-form #contact-form textarea:focus {
  border: 1px solid #8ECAE6;
}


#footer #section-contact-form #contact-index #contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#footer #section-contact-form #contact-index #contact-form input, #footer #section-contact-form #contact-index #contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #3B8DB7;
  outline: none;
}
#footer #section-contact-form #contact-index #contact-form input:focus, #footer #section-contact-form #contact-index #contact-form textarea:focus {
  border: 1px solid #8ECAE6;
}

#footer section ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
}
#footer section ul a {
  text-decoration: none;
  color: #888888;
}
#footer section ul a:hover {
  color: #3B8DB7;
}

* {
  box-sizing: border-box;
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

.pointer{
  cursor: pointer;
}

.nav-link{
  cursor:pointer;
}

.signature-pad-container {
  position: relative;
  width: 100%;
  height: 200px; /* Puedes ajustar la altura */
}
#signature-pad {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: white;
}

@font-face {
  font-family: "Menlo Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Menlo Regular"), url("Menlo-Regular.woff") format("woff");
}

@keyframes animate {
  from {
    transform: scale(1.1) rotateY(10deg);
  }
  to {
    transform: scale(1) rotateY(0deg);
  }
}

#whatsappWidget {
  background-color: #25D366;
  padding: 10px 13px;
  position: fixed;
  z-index: 999;
  bottom: 20px;
  left: 20px;
  box-shadow: 2px 2px 3px #999 !important;
  border-radius: 50%;
}
#whatsappWidget i {
  transform: translate(1px);
}

.parpadea {
  animation-name: parpadeo;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-name: parpadeo;
  -webkit-animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}
@keyframes parpadeo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}