@import url(../css/fontawesome-free-6.5.1-web/fontawesome-free-6.5.1-web/css/all.css);
@import url("./variables.css");
* {
  margin: 0;
  padding: 0;
  font-family: "Source Sans Pro", sans-serif;
}

body {
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  user-select: none;
  background-color: var(--color-blanco) !important;
}

.buscador {
  width: 100%;
  height: auto;
  padding: 10px;
  box-sizing: border-box;
}

#searchInput {
  border-radius: 10px;
  padding: 10px 0;
  font-size: 22px;
  color: var(--color-negro);
  width: 100%;
  background: none;
  outline: none;
  font-weight: bolder;
  text-align: center;
}

#searchInput::placeholder {
  color: var(--color-principal);
  text-align: center;
}

#searchInput:focus {
  border: var(--color-secundario) 1.5px solid;
}

.fadeIn {
  opacity: 1;
  display: flex !important;
  animation: in 0.6s;
  animation-fill-mode: forwards;
}

@keyframes in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeOut {
  animation: out 0.6s;
  animation-fill-mode: forwards;
}

@keyframes out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
header {
  width: 100%;
  height: 14vh;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
}

header img {
  width: 450px;
}

.container {
  margin: 50px 0;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 10px 0;
  box-sizing: border-box;
}

.text {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 4%;
  background-color: var(--fondo-body);
}

.text-web {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 4%;
  background-color: var(--fondo-body);
}

.text h1 {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-principal);
}

.text p {
  color: var(--color-principal);
  font-size: 18px;
  margin-top: 35px;
}

.elg {
  z-index: 3;
  margin: 50px 0;
}

.elg a {
  font-size: 1.8rem;
  margin-right: 40px;
  text-decoration: none;
  border: 1.5px transparent solid;
  color: var(--color-principal);
  border: 2px var(--color-principal) solid;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.5s ease;
}

.elg a:hover {
  opacity: 0.7;
}

.login {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1;
  padding: 10 4%;
  justify-content: center;
  align-items: center;
}

.ocultar_login {
  display: none;
}

#periodo {
  top: 17vh;
  height: 65vh;
  position: absolute;
  width: 100%;
  overflow-y: auto;
  display: flex;
  background-color: var(--color-blanco);
}

#periodo h1 {
  margin-top: 10px;
  text-align: center;
  color: var(--color-principal);
  font-size: 30px;
}

.botones {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.ocultar_periodo {
  display: none;
}

.mostrar_nombres {
  transition: all 0.6s ease-out;
  height: 60vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 60px;
  overflow: hidden;
}

.scrollable-content {
  width: 100%;
  height: 60vh;
  overflow-y: auto;
  padding: 0 10px;
  user-select: none;
}

.scrollable-contentnew {
  width: 100%;
  height: 60vh;
  overflow-y: auto;
  padding: 0 10px;
  user-select: none;
}

scrollbar-hidden {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

.scrollable-content::-webkit-scrollbar {
  width: 8px;
  border-radius: 10px;
}

.scrollable-content::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.scrollable-content:hover {
  overflow-y: auto;
}

.scrollable-content:hover::-webkit-scrollbar-thumb {
  background-color: var(--color-principal);
  border-radius: 20px;
}

.periodos_nombres h6 {
  border-bottom: 0.5px #ccc solid;
  font-weight: 400;
  text-align: center;
  line-height: 70px;
  font-size: 1.5rem;
  color: #697580;
}

.divempre {
  width: 100%;
  height: 10vh;
  border-bottom: 0.5px #ccc solid;
  margin-top: 10px;
  transition: all 0.5s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.5%;
}
.divempre .perfil {
  width: 4vh;
  height: 4vh;
  border-radius: 50%;
  overflow: hidden;
}
.divempre .perfil img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.divempre .nombreempresa {
  width: 90%;
  height: 10vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.divempre .nombreempresa h6 {
  width: 100%;
  font-size: 1.5rem;
  color: #697580;
  font-weight: 400;
}
.divempre:hover {
  background: #ecf0f2;
  cursor: pointer;
}

.periodos_nombres h6:hover {
  background: #ecf0f2;
  cursor: pointer;
}

.periodos_seleccionado {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
  background: #ecf0f2;
}

.seleccion {
  background: var(--degradado);
  color: var(--color-blanco);
  padding: 10px 20px;
  border: none;
  font-size: 20px;
  border-radius: 10px;
  cursor: pointer;
  width: auto;
  margin: 10px 0;
}

.none {
  display: none !important;
}

h2 {
  font-size: 35px;
  text-align: center;
  color: var(--color-principal);
  margin: 20px 0;
}

.form-group {
  width: 100%;
  margin-top: 20px;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--color-blanco);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(32, 54, 99, 0.5);
  max-width: 450px;
  width: 100%;
  overflow: hidden;
  height: 400px;
}

input {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 15px;
  font-size: 20px;
}

input::placeholder {
  color: #bbb;
}

button {
  background: var(--degradado);
  color: var(--color-blanco);
  padding: 10px;
  border: none;
  font-size: 20px;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  margin: 0 10px;
  margin-top: 60px;
}

button:hover {
  opacity: 0.9;
}

.forgot-password {
  margin-top: 10px;
  text-align: center;
  color: var(--color-principal);
}

.forgot-password a {
  color: var(--color-principal);
  text-decoration: none;
  font-weight: bold;
}

.contenedor {
  top: 100px;
  width: 100%;
  overflow: hidden;
}

.slider-contenedor {
  width: 100%;
  display: flex;
}

.contenido-slider {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-shrink: 0;
}

.prueba .slider img {
  margin: 0;
  width: 400px;
  animation: move-vector 4s linear infinite;
}

.container__foot {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

footer {
  position: fixed;
  background-color: var(--color-principal);
  color: var(--color-blanco);
  text-align: center;
  padding: 20px 0;
  width: 100%;
  margin-bottom: 0;
  bottom: 0;
}

.modal {
  margin: auto;
  display: none;
  position: fixed;
  z-index: 201;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  padding: 0px 15px;
  background-color: #fefefe;
  margin: auto;
  border: 1px solid #888;
  width: 80%;
  box-sizing: border-box;
  height: auto;
  transform: translateY(100%);
  animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.close {
  color: #203020;
  float: right;
  font-size: 38px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 1366px) {
  footer {
    z-index: 200;
  }
  .fadeIn {
    margin-top: 6vh;
  }
  .box_content p {
    line-height: 19px !important;
    font-size: 0.7rem;
  }
  .text p {
    margin-top: 7px;
  }
}
@media screen and (max-width: 1280px) {
  footer {
    z-index: 200;
    display: none;
  }
  .fadeOut {
    top: 0vh;
  }
  .fadeIn {
    margin-top: 4vh;
  }
  .periodos_nombres h6 {
    font-size: 1rem;
  }
  #searchInput {
    font-size: 15px;
  }
  .text-web {
    display: none;
  }
  .mar {
    margin-top: 0vh;
  }
  #periodo {
    position: fixed;
    flex-direction: column;
  }
  #periodo h1 {
    font-size: 25px;
  }
}
@media screen and (max-width: 800px) {
  .boxing {
    gap: 20px;
    flex-direction: column;
  }
  footer {
    z-index: 200;
  }
  .fadeOut {
    top: 0vh;
  }
  form {
    position: absolute;
    top: 20vh;
  }
  .periodos_nombres h6 {
    font-size: 1rem;
  }
  #searchInput {
    font-size: 15px;
  }
  .text-web {
    display: none;
  }
  .mar {
    margin-top: 50vh;
  }
  #periodo {
    position: fixed;
    flex-direction: column;
  }
  #periodo h1 {
    font-size: 25px;
  }
  .modal {
    margin: auto;
    display: none;
    position: fixed;
    z-index: 201;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
  }
  .modal-content {
    padding: 10px 30px;
    background-color: #fefefe;
    margin: auto;
    width: 100%;
    height: auto;
  }
  .container {
    width: 100%;
    flex-direction: column-reverse;
    margin: 0;
    box-sizing: border-box;
  }
  .text {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 4%;
    box-sizing: border-box;
    background-color: #ecf0f2;
  }
  .elg2,
  .elg {
    text-align: center;
  }
  header img {
    width: 300px;
  }
}
.costos {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.costos h2 {
  color: var(--color-principal);
  font-size: 2rem;
}

.costos p {
  color: var(--color-principal);
  font-size: 1.5rem;
}

.boxing {
  width: 100%;
  height: auto;
  display: flex;
  align-items: baseline;
  padding: 20px 50px;
  margin: 5px 0;
}

.box_content {
  width: 100%;
  height: auto;
  box-shadow: 0 0 10px rgba(32, 54, 99, 0.5);
  margin: 0 10px;
  border-radius: 10px;
  padding: 25px 40px;
  display: flex;
  flex-direction: column;
  justify-content: baseline;
  transition: all 0.2s ease-in;
  cursor: pointer;
}

.dividir {
  height: 50vh;
  width: 100%;
}

.box_content:hover {
  transform: scale(0.98);
}

.box_content h6,
h4,
p {
  margin: 3px 0;
}

.box_content h6 {
  font-size: 1rem;
  text-align: center;
  color: #6c757d;
  font-weight: 400;
}

.box_content h4 {
  font-size: 1.5rem;
  text-align: center;
  color: var(--color-negro);
  font-weight: 800;
}

.box_content p {
  line-height: 2px;
  font-size: 1rem;
  color: #5b657e;
}

.box_content a {
  font-size: 1.2rem;
  margin-top: 20px;
  text-decoration: none;
  color: var(--color-blanco);
  background: var(--degradado);
  padding: 10px;
  border-radius: 10px;
  border: 1.5px transparent solid;
  transition: all 0.3s ease-in;
  text-align: center;
}

.box_content a:hover {
  background: var(--color-blanco);
  border: 1.5px var(--color-negro) solid;
  box-shadow: 0 0 10px rgba(32, 54, 99, 0.5);
  color: var(--color-principal);
}

@media screen and (max-width: 1366px) {
  .boxing {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 720px) {
  .boxing {
    flex-direction: column;
  }
  .box_content {
    margin: 5px 0;
    width: 100%;
  }
}
.mensaje {
  width: auto;
  height: auto;
  position: fixed;
  top: 2px;
  right: 22px;
  border-radius: 12px;
  background: #fff;
  padding: 20px 35px 20px 25px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transform: translateX(calc(100% + 30px));
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
  z-index: 11000000;
}

.mensaje.active {
  transform: translateX(0%);
  display: flex;
}

.mensaje .mensaje-content {
  display: flex;
  align-items: center;
}

.mensaje-content .check {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  min-width: 35px;
  background-color: #0beb0b;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
}

.mensaje-content .cancelred {
  display: flex;
  display: none;
  align-items: center;
  justify-content: center;
  height: 35px;
  min-width: 35px;
  background-color: #ff0000;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
}

.mensaje-content .atencion {
  display: flex;
  display: none;
  align-items: center;
  justify-content: center;
  height: 35px;
  min-width: 35px;
  background-color: #e5ff00;
  color: #ff0000;
  font-size: 20px;
  border-radius: 50%;
}

.mensaje-content .message {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}

.message .text {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
}

.message .text.text-1 {
  font-weight: 600;
  color: #333;
}

.mensaje .close:hover {
  opacity: 1;
}

.mensaje .progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #203663;
}

.mensaje .progress:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
}

.progress.active:before {
  animation: progress 5s linear forwards;
}

@keyframes progress {
  100% {
    right: 100%;
  }
}
.globo {
  width: 1.5vw;
  height: 3vh;
  background-color: rgb(255, 0, 0);
  position: absolute;
  top: -10px;
  right: 0;
  z-index: 100000000000;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  animation: jumpig 1s ease infinite;
}

@keyframes jumpig {
  0% {
    transform: translateY(-25%);
  }
  100% {
    transform: translateY(0%);
  }
}
.dialog-overlayconfirm {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.dialogconfirm {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 90%;
  overflow: hidden;
  animation: slideIn 0.2s ease-out;
}

.dialog-headerconfirm {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid #f1f5f9;
}
.dialog-headerconfirm .dialog-iconconfirm {
  width: 40px;
  height: 40px;
  background-color: var(--color-tabla);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.dialog-headerconfirm .dialog-titleconfirm {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.2;
}

.dialog-contentconfirm {
  padding: 16px 24px 24px;
}
.dialog-contentconfirm .dialog-descriptionconfirm {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.dialog-actionsconfirm {
  display: flex;
  gap: 12px;
  padding: 0 24px 24px;
  justify-content: flex-end;
}

.buttonconfirm {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  min-width: 80px;
}
.buttonconfirm:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--color-principal), 0.2);
}
.buttonconfirm:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.button-cancelconfirm {
  background-color: #f8fafc;
  color: #64748b;
  border: 1px solid #e2e8f0;
}
.button-cancelconfirm:hover:not(:disabled) {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
}
.button-cancelconfirm:active {
  transform: translateY(1px);
}

.button-confirmconfirm {
  background-color: var(--color-principal);
  color: white;
}
.button-confirmconfirm:hover:not(:disabled) {
  background-color: var(--color-dashboard);
}
.button-confirmconfirm:active {
  transform: translateY(1px);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 480px) {
  .dialogconfirm {
    margin: 16px;
    width: calc(100% - 32px);
  }
  .dialog-actionsconfirm {
    flex-direction: column-reverse;
  }
  .dialog-actionsconfirm .buttonconfirm {
    width: 100%;
  }
}
.redes {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.bott {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.redes ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.item a {
  text-decoration: none;
  width: 4.8rem;
  height: 4.8rem;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  border: 3px solid #f0faff;
  overflow: hidden;
}

.item a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  scale: 1 0;
  transform-origin: bottom;
  transition: scale 0.5s ease;
  background: var(--bg-color);
}

.item:hover a::before {
  scale: 1 1;
}

.icon1 {
  font-size: 2rem;
  color: #25d366;
  transition: 0.5s ease;
  z-index: 2;
}

.icon2 {
  font-size: 2rem;
  color: #0077b5;
  transition: 0.5s ease;
  z-index: 2;
}

.item a:hover .icon1 {
  color: #f0faff;
  transform: rotateX(360deg) scale(1.15);
}

.item a:hover .icon2 {
  color: #f0faff;
  transform: rotateX(360deg) scale(1.15);
}

.item:nth-child(1) {
  --bg-color: #25d366;
}

.item:nth-child(2) {
  --bg-color: #0077b5;
}

@media screen and (max-width: 600px) {
  .contacto {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
