@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;900&display=swap");

:root {
  --color1: #0a100d;
  --color2: #640709;
  --color3: #b1a7a6;
  --color4: #731d2c;
  --white: #f2f2f2;
  --transparent-white: rgba(255, 255, 255, 0.5);
  --transparent-dark: rgba(0, 0, 0, 0.5);
  --glass-white: rgba(255, 255, 255, 0.1);
  --glass-white-plus: rgba(255, 255, 255, 0.3);
  --shadow-dark: 0 0 20px 5px rgba(0, 0, 0, 0.8);
  --color-alterno: rgba(7, 16, 23, 0.8);
  --color-alterno-denso: rgba(7, 16, 23);
  --dorado: rgba(255, 187, 0, 0.5);

  /* Colores Carreras */

  --color-desarrollo: #0d3996;
  --color-mecanica: #890f23;
  --color-enfermeria: #bed62f;
  --color-marketing: #fd7f27;
  --color-tributacion: #b57913;
  --color-comercio: #383578;
  --color-gastronomia: #fe2708;
  --color-administracion: #0d8b9b;
  --color-electro: #6d6d6c;
  --color-turismo: #b6b216;
  --color-dietetica: #43b2a9;
  --color-hoteleria: #008435;

  /* Cursores */
  --cursor-arrow: url(https://cur.cursors-4u.net/cursors/cur-7/cur686.cur), auto;
  --cursor-pointer: url(https://cur.cursors-4u.net/cursors/cur-7/cur683.cur),
    pointer;
  --cursor-text: url(https://cur.cursors-4u.net/cursors/cur-7/cur677.cur), text;
  --cursor-grab: url(https://shopify.github.io/draggable/assets/img/cursor-drag.png),
    auto;
  --cursor-rock: url(https://cur.cursors-4u.net/cursors/cur-7/cur687.cur),
    pointer;
}

/* Scroll Bar */

::-webkit-scrollbar {
  width: 5px;
  background-color: var(--transparent-dark);
}

::-webkit-scrollbar-thumb {
  background-color: var(--glass-white-plus);
  border-radius: 15px;
}

/* Body */

body {
  font-family: "Ubuntu", sans-serif;
  min-height: 100vh;
  min-width: 100vw;
  position: fixed;
  overflow: hidden;
  color: var(--white);
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  background-color: var(--color1);
  cursor: var(--cursor-arrow);
}

/* Estilos Base*/

a {
  text-decoration: none;
  color: inherit;
  margin: 0;
  padding: 0;
  cursor: var(--cursor-pointer);
}

img {
  display: block;
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

input[type="text"] {
  cursor: var(--cursor-text);
}

.container {
  background: url("../img/fondo1.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;

  position: relative;
  width: 100%;
  height: 100%;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
}

/* Preloader */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  background-color: var(--color-alterno-denso);
  transition: all 300ms;
}

.preloader__container {
  position: relative;
  padding: 15px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.preloader__container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 15px solid var(--glass-white);
  border-left-color: var(--glass-white-plus);
  animation: girarLoader 1.5s linear infinite;
}

.preloader__picture {
  width: 100%;
  height: 100%;
  animation: agrandarLoader 1s alternate infinite;
}

.preloader__img {
  width: 100%;
  height: 100%;
}

@keyframes girarLoader {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes agrandarLoader {
  0% {
    transform: scale(0.7);
  }
  100% {
    transform: scale(1);
  }
}

/* Desktop */

.desktop {
  position: relative;
  height: calc(100vh - 3rem);
  width: 100%;
}

.desktop__container {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  flex-wrap: wrap;
  padding: 10px 0 0 10px;
  gap: 10px;
  width: 100%;
  height: 100%;
}

/* Desktop Icons */
.desktop__icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 150px;
  width: 80px;
  height: 80px;
  cursor: var(--cursor-pointer);
  transition: 300ms;
}

.desktop__icon:hover {
  background-color: var(--transparent-white);
  border: 1px solid var(--white);
}

.desktop__img {
  width: 50%;
  pointer-events: none;
}

.desktop__title {
  font-size: 0.65rem;
  text-align: center;
  margin-top: 5px;
}

.desktop__icon--carreras {
  animation: saltar 700ms infinite 2s alternate;
}

.desktop__icon--carreras:hover {
  box-shadow: 0 0 3px 3px var(--glass-white-plus);
}

@keyframes saltar {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-4px);
  }
}

/* Menu */

.menu {
  opacity: 0;
  width: 25%;
  height: 400px;
  max-width: 600px;
  min-width: 300px;
  max-height: 400px;
  position: absolute;
  bottom: -100vh;
  left: 0;
  padding: 5px;
  z-index: 100;

  backdrop-filter: blur(10px);
  background-color: var(--glass-white);
  box-shadow: var(--shadow-dark);
  border-top: 1px solid var(--glass-white);
  border-right: 1px solid var(--glass-white);

  transition: opacity 300ms, bottom 200ms, width 200ms, height 200ms;
}

.menu__container {
  position: relative;
  width: 100%;
  height: 100%;
}

.menu__card {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.menu__title {
  display: block;
  width: 100%;
  height: 2rem;
  line-height: 2rem;
  padding-left: 5px;
  font-size: 1rem;
  font-weight: 400;
  font-variant: small-caps;
  letter-spacing: 2px;
  position: relative;
}

.menu__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--glass-white-plus);
}

.menu__items {
  width: 100%;
  height: calc(100% - 2rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 20px;
}

.menu__picture {
  width: 8vw;
  height: 8vw;
  border-radius: 8px;
  outline: 1.5px solid var(--glass-white-plus);
}

.menu__picture--grande {
  width: 16vw;
  height: 16vw;
}

.menu__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Politica de Calidad */

.menu__picture--politica {
  cursor: var(--cursor-pointer);
  transition: transform 300ms;
}

.menu__picture--politica:hover {
  transform: scale(1.1);
}

.politica {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: clip-path 1s;
  clip-path: circle(0 at 20px 100%);
  background-color: var(--transparent-dark);
}

.politica--show {
  clip-path: circle(200% at 20px 100%);
}

.politica__button {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: var(--cursor-pointer);
  position: absolute;
  top: 5px;
  right: 5px;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--color1);
}

.politica__picture {
  width: 420px;
  height: 600px;
  border-radius: 8px;
}

.politica__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 3px;
}

@media (max-height: 630px) {
  .politica__picture {
    height: 500px;
    zoom: 105%;
  }
}

@media (min-height: 650px) {
  .politica__picture {
    width: 600px;
    height: 800px;
  }
}

/* Swipper Custom */

.swiper-button-next,
.swiper-button-prev {
  color: var(--glass-white-plus);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

/* Buscador */

.buscador {
  opacity: 0;
  width: 30%;
  max-width: 700px;
  height: 400px;
  max-height: 400px;
  position: absolute;
  left: 0;
  bottom: -100vh;
  z-index: 100;

  backdrop-filter: blur(10px);
  background-color: var(--glass-white);
  box-shadow: var(--shadow-dark);
  border-top: 1px solid var(--glass-white);
  border-right: 1px solid var(--glass-white);

  transition: opacity 300ms, bottom 200ms, width 200ms, height 200ms;
}

.buscador__text {
  position: relative;
  width: 100%;
  height: 40px;
  line-height: 40px;
  margin-bottom: 8px;
}

.buscador__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--transparent-white);
}

.buscador__legend {
  text-indent: 1rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  font-size: 1.2rem;
  font-variant: small-caps;
}

.buscador__container {
  position: relative;
  width: 100%;
  height: calc(100% - 40px);
  padding: 5px;
  overflow: hidden;
  overflow-y: scroll;
}

.buscador__item {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  cursor: var(--cursor-pointer);
  border-radius: 10px;
  box-shadow: -1px -1px 3px rgb(255 255 255 / 0.1), 2px 2px 6px rgb(0 0 0 /0.8);
  transition: letter-spacing 300ms;
}

.buscador__item:hover {
  letter-spacing: 2px;
}

.buscador__item::before {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  box-shadow: inset -1px -1px 3px rgb(255 255 255 / 0.1),
    inset 2px 2px 6px rgb(0 0 0 /0.8);
}

.buscador__picture {
  width: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buscador__img {
  width: 80%;
  height: 80%;
}

.buscador__name {
  padding: 10px;
  margin-left: 15px;
  font-size: 0.9rem;
  font-weight: 400;
  font-variant: small-caps;
}

/* Social */

.social {
  opacity: 0;

  width: 10%;
  max-width: 350px;
  height: 20%;
  margin-bottom: 5px;
  margin-right: 5px;
  position: absolute;
  right: 0;
  bottom: -100vh;

  backdrop-filter: blur(10px);
  background-color: var(--glass-white);
  border-radius: 5px;
  z-index: 100;
  box-shadow: var(--shadow-dark);
  border-left: 1px solid var(--glass-white);

  transition: opacity 300ms, bottom 200ms, width 200ms, height 200ms;
}

.social__container {
  width: 100%;
  height: 100%;
  padding: 5px 2px;
  gap: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
}

.social__picture {
  width: 25%;
  height: 25%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: var(--cursor-pointer);
}

.social__img {
  object-fit: cover;
  transition: 300ms;
}

.social__img:hover {
  transform: scale(1.1);
}

/* Notification */
.notification {
  opacity: 0;
  width: 25%;
  height: 100%;
  max-width: 400px;
  position: absolute;
  right: 0;
  bottom: -100vh;
  overflow: hidden;
  z-index: 100;

  backdrop-filter: blur(10px);
  background-color: var(--glass-white);
  box-shadow: -20px 0 20px -10px rgba(0, 0, 0, 0.5);
  border-left: 1px solid var(--glass-white);

  transition: opacity 300ms, bottom 200ms, width 200ms, height 200ms;
}

.notification__title {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding-left: 10px;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.notification__title::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--glass-white-plus);
}

.notification__container {
  position: relative;
  width: 100%;
  height: calc(100% - 40px);
  padding: 5px 15px;
  overflow-y: scroll;
}

.notification__picture {
  width: 100%;
  height: 350px;
  margin-bottom: 8px;
  border-radius: 8px;
  box-shadow: 0 0 15px var(--color1);
}

.notification__img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  pointer-events: none;
}

/* Taksbar */

.taskbar {
  position: relative;
  z-index: 1000;
  width: 100%;
  height: 3rem;
  background-color: var(--glass-white);
  backdrop-filter: blur(10px);
}

.taskbar__logo {
  display: block;
  position: relative;
  float: left;
  width: 50px;
  height: 100%;
  padding: 8px;
  cursor: var(--cursor-rock);
  transition: 300ms;
}

.taskbar__logo:hover {
  background-color: var(--transparent-dark);
}

.taskbar__img {
  width: 100%;
  object-fit: cover;
  pointer-events: none;
}

/*  Active */
.active {
  height: 100%;
  display: inline-flex;
  position: absolute;
  top: 0;
  right: 0;
}

.active__picture {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  height: 100%;
  width: 50px;
  padding: 10px;
  cursor: var(--cursor-pointer);
  transition: 300ms;
}

.active__picture:hover {
  background-color: var(--transparent-dark);
  border-top: 1px solid var(--white);
}

.active__bell {
  position: relative;
}

.active__bell.new::after {
  content: "!";
  background-color: var(--color-mecanica);
  text-align: center;
  line-height: 12px;
  font-size: 11px;
  font-weight: bold;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid var(--white);

  position: absolute;
  right: -8px;
  top: -8px;
}

/* Search */
.search {
  height: 100%;
  display: block;
  position: relative;
  float: left;
}

.search__input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background-color: var(--glass-white);
  color: #fff;
  text-indent: 1.2rem;
}

.search__input:focus {
  background-color: var(--transparent-dark);
}

.search__input::placeholder {
  color: var(--white);
}

/* Anclados */

.anclados {
  height: 100%;
  position: relative;
  float: left;
}

.anclados__picture {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 50px;
  padding: 10px;
  cursor: var(--cursor-pointer);
  transition: 300ms;
}

.anclados__picture:hover {
  background-color: var(--transparent-dark);
}

.anclados__img {
  width: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Windows */

.windows {
  width: 50%;
  height: 60%;
  min-width: 300px;
  min-height: 200px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;

  outline: 1px solid var(--transparent-white);
  background-color: var(--glass-white);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  opacity: 0;
  visibility: hidden;
  transform: scale(0.7);
  transition: all 180ms;
}

.windows--aparecer {
  opacity: 1;
  visibility: visible;
  transform: scale(100%);
}

.windows--juegos {
  width: 60%;
  height: 85%;
}

.windows--grande {
  width: 50%;
  height: 75%;
}

.windows--calendario {
  width: 700px;
  height: 500px;
}

.windows__maximizar {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 300ms;
}

.windows__close,
.windows__maximize {
  transition: 300ms;
}

.windows__bar {
  height: 2.5rem;
  display: flex;
  justify-content: space-between;
  background-color: var(--color3);
}

.windows__body {
  height: calc(100% - 2.5rem);
}

.windows__description,
.windows__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.windows__picture {
  width: 40px;
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.windows__img {
  width: 70%;
  object-fit: cover;
}

.windows__title {
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 0 5px;
}

.windows__icon {
  width: 50px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  cursor: var(--cursor-pointer);
}

.windows__close:hover {
  background-color: rgba(102, 7, 9);
}

.windows__maximize:hover {
  background-color: var(--transparent-dark);
}

.windows__wave {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.windows--telegram {
  width: 20%;
  height: 70%;
}

.windows--whatsapp {
  width: 25%;
  height: 25%;
}

.windows--convenios {
  width: 40%;
  height: 80%;
}

/* Ventana Body Configuracion */

.configuracion {
  width: 100%;
  height: 100%;
  padding: 5px;
  overflow: hidden;
}

.configuracion__backgrounds {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.configuracion__title {
  display: block;
  width: 100%;
  height: 1.5rem;
  font-size: 1rem;
  position: relative;
  font-variant: small-caps;
}

.configuracion__title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: var(--white);
}

.configuracion__grid {
  width: 100%;
  height: calc(100% - 1.5rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.configuracion__views,
.configuracion__preview {
  width: 100%;
  height: 100%;
  padding: 5px;
  position: relative;
  overflow: hidden;
}

.configuracion__preview {
  padding: 15px;
}

.configuracion__item {
  width: 4.5vw;
  height: 4.5vw;
  margin: 10px 15px;
  position: relative;
  float: left;
  cursor: var(--cursor-pointer);
}

.configuracion__item--active {
  outline: 5px solid var(--white);
}

.configuracion__picture {
  width: 100%;
  height: 100%;
}

.configuracion__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ventana Body Archivos  */

.archivos {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 30% 1fr;
}

.archivos__navegador {
  width: 100%;
  height: 100%;
  border-right: 2px solid var(--glass-white-plus);
}

.archivos__categoria {
  cursor: var(--cursor-pointer);
  display: block;
  width: 100%;
  min-height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 0.9rem;
  font-variant: small-caps;
  font-weight: 300;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--glass-white-plus);
  transition: background 300ms;
}

.archivos__categoria:hover {
  background: var(--transparent-dark);
}

.archivos__categoria--seleccionado {
  border-right: 3px solid var(--white);
}

.archivos__contenido {
  width: 100%;
  height: 100%;
  position: relative;
}

.archivos__seccion {
  gap: 5px;
  position: absolute;
  overflow-y: scroll;

  width: 100%;
  height: 100%;
  padding: 10px 5px;
  display: none;
}

.archivos__seccion--active {
  gap: 8px;

  display: grid;
  grid-auto-rows: 140px;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}

.archivos__item,
.normativas__item {
  cursor: var(--cursor-pointer);
  width: 100%;
  height: 100%;
  border: 2px solid var(--glass-white-plus);
  padding: 1px;
  display: flex;
  flex-direction: column;
  transition: 300ms;
}

.normativas__item:hover,
.archivos__item:hover {
  background-color: var(--transparent-dark);
}

.archivos__title {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  flex-grow: 1;
  font-size: 0.7rem;
  text-align: center;
  font-variant: small-caps;
  border-top: 2px solid var(--glass-white-plus);
}

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

.archivos__img {
  object-fit: cover;
  pointer-events: none;
}

/* Normativas 2025 */
.normativas {
  width: 100%;
  height: 100%;
}

.normativas__container {
  width: 100%;
  height: 100%;
  padding: 10px;
  gap: 8px;

  display: grid;
  grid-auto-rows: 140px;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}

/* Rendicion Cuentas */

.archivos__categoria--line {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: unset;
}

.rendicion {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Quienes somos */

.mvsion {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
  overflow-y: scroll;
}

.mvsion__container {
  width: 100%;
  height: auto;
  min-height: 100%;

  gap: 15px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
}

.mvsion__content {
  padding: 5px;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px 60px 8px 60px;
  border: 1px solid var(--transparent-white);
  background-color: var(--color-alterno-denso);
}

.mvsion__title {
  position: relative;

  width: 100%;
  height: 40px;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  letter-spacing: 3px;
  font-variant: small-caps;
}

.mvsion__title::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);

  width: 50%;
  height: 3px;
  background-color: var(--transparent-white);
}

.mvsion__body {
  width: 100%;
  padding: 15px 35px;
  height: calc(100% - 40px);
}

.mvsion__paragraph {
  font-weight: 300;
  font-size: 1.1rem;
  text-align: justify;
  line-height: 1.4;
}

.mvsion__list {
  width: 100%;
  height: 100%;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.3;
}

.mvsion__item::before {
  content: "✅";
}

/* Historia Ismac */

.historia {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
  overflow-y: scroll;
  background-color: var(--color-alterno);
}

.historia__container {
  width: 100%;
  height: auto;
  min-height: 100%;

  gap: 15px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 400px 250px;
}

.historia__title {
  position: relative;

  height: 40px;
  line-height: 40px;
  font-size: 1.4rem;
  letter-spacing: 4px;
  font-variant: small-caps;
}

.historia__title::after {
  position: absolute;
  left: 0;
  bottom: 0;

  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--transparent-white);
}

.historia__video {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.historia__paragraph {
  line-height: 1.5;
  text-align: justify;

  width: 100%;
  padding: 20px 0;
  height: calc(100% - 40px);
}

/* Mensaje Telegram */

.modal {
  width: 100%;
  height: 100%;
}

.modal__picture {
  width: 100%;
  height: 100%;
}

.modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mensaje Whatsapp */

.whatsapp {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
}

.whatsapp__container {
  width: 100%;
  height: 100%;
  padding: 15px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.whatsapp__picture {
  width: 3.5vw;
  height: 3.5vw;
}

.whatsapp__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whatsapp__title {
  display: block;
  width: 50%;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 400;
  font-variant: small-caps;
}

.whatsapp__form {
  width: 100%;
  height: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.whatsapp__input {
  font-family: "Ubuntu", sans-serif;
  width: 80%;
  height: 30px;
  border-radius: 8px;
  border: none;
  outline: none;
  text-indent: 1rem;
}

.whatsapp__input::placeholder {
  font-size: 0.9rem;
}

.whatsapp__send {
  cursor: var(--cursor-pointer);
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  outline: none;
  background-color: #4caf50;
  color: #fff;
  line-height: 30px;
  transition: transform 300ms;
}

.whatsapp__send:hover {
  transform: scale(1.1);
}

/* CARRERAS */
/* Tecnicas */

.tecnicas {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tecnicas__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.tecnicas__card {
  position: relative;
  overflow: hidden;
  width: 290px;
  height: 330px;
  background-color: var(--transparent-dark);
  display: grid;
  grid-template-rows: 1fr 3rem;
  border: 1px solid var(--glass-white-plus);
  filter: blur(4px);
}

.tecnicas--active {
  filter: blur(0);
  box-shadow: 0 0 20px -5px var(--glass-white-plus);
  pointer-events: unset;
}

.tecnicas__logo {
  pointer-events: none;
  width: 100%;
  height: 100%;
  pad: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--glass-white-plus);
}

.tecnicas__img {
  display: block;
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.tecnicas__texts {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: var(--cursor-pointer);
  transition: all 300ms;
  pointer-events: none;
}

.tecnicas__texts:hover {
  background-color: var(--glass-white-plus);
}

.tecnicas--active .tecnicas__texts {
  pointer-events: unset;
}

.tecnicas__title {
  font-variant: small-caps;
  font-weight: 400;
  font-size: 1rem;
}

.tecnicas--bullet {
  background-color: var(--white);
  opacity: 1;
}

/* Vistas Carreras */

.vistas {
  position: relative;
  width: 100%;
  height: 100%;
}

.vistas__container {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: 100%;
}

.vistas__documento {
  position: relative;
  width: 100%;
  height: 100%;
}

.vistas__picture {
  position: absolute;
  width: 90%;
  height: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.vistas__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: var(--cursor-rock);
  transition: transform 300ms;
}

.vistas__img:hover {
  transform: scale(1.6) translateY(-10px);
}

.vistas__content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.vistas__button {
  display: block;
  width: 60%;
  height: 22%;
}

.vistas__item {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 300ms;
  cursor: var(--cursor-pointer);
}

.vistas__item:hover {
  transform: scale(1.1);
}

.vistas__paragraph {
  position: relative;
  display: block;
  width: 100%;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  font-variant: small-caps;
}

.vistas__paragraph::after {
  content: "";
  display: block;
  position: absolute;
  width: 90%;
  height: 3px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: var(--glass-white-plus);
}

/* Universitarias */

.universitarias {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: scroll;
}

.universitarias__container {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.universitarias__card {
  position: relative;
  overflow: hidden;
  width: 290px;
  height: 330px;
  background-color: var(--transparent-dark);
  border: 1px solid var(--glass-white-plus);
  display: grid;
  grid-template-rows: 1fr 3rem;
  box-shadow: 0 0 20px -5px var(--glass-white-plus);
  margin-bottom: 10px;
}

.universitarias__logo {
  pointer-events: none;
  width: 100%;
  height: 100%;
  padding: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--glass-white-plus);
}

.universitarias__img {
  display: block;
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.universitarias__texts {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: var(--cursor-pointer);
  transition: all 300ms;
}

.universitarias__texts:hover {
  background-color: var(--glass-white-plus);
}

.universitarias__title {
  font-variant: small-caps;
  font-weight: 400;
  font-size: 1rem;
  pointer-events: none;
}

.universitarias__svg {
  pointer-events: none;
}

.universitarias__reproductor {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}

.universitarias__video {
  width: 100%;
  height: 100%;
}

/* Reproductor Carreras */

.reproductor {
  position: relative;
  width: 100%;
  height: 100%;
}

.reproductor__iframe {
  width: 100%;
  height: 100%;
}

/* Bienestar */

.bienestar {
  width: 100%;
  height: 100%;
}

/* Atmosferas */

.atmosferas {
  width: 100%;
  height: 100%;
}

.atmosferas__container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding: 8px;
}

.atmosferas__section {
  position: relative;
  margin: 20px auto 50px;
  width: 90%;
  height: 350px;
  background: linear-gradient(var(--glass-white-plus) 70%, transparent 80%);
  display: grid;
  grid-template-columns: 250px 1fr;
  column-gap: 10px;
  border-radius: 8px 8px 0 0;
}

.atmosferas__picture {
  width: 100%;
  height: 100%;
  box-shadow: 0 0 20px var(--color1);
  border-radius: 10px;
}

.atmosferas__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.atmosferas__content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10px;
}

.atmosferas__title {
  position: relative;
  font-variant: small-caps;
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.atmosferas__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--glass-white-plus);
  width: 100%;
  height: 2px;
}

.atmosferas__autor {
  font-variant: small-caps;
  font-weight: 300;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.atmosferas__description {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
  text-align: justify;
}

.atmosferas__cta {
  display: block;
  width: 150px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0 15px;
  background-color: #890f23;
  border-radius: 25px;
  position: absolute;
  left: 0;
  bottom: 50px;
  font-weight: 300;
  font-variant: small-caps;
  letter-spacing: 2px;
  font-size: 1rem;
  transition: transform 300ms;
  box-shadow: 0 0 15px -3px var(--color1);
}

.atmosferas__cta:hover {
  transform: scale(1.05);
}

/* Juegos */

.atropos {
  width: 250px;
  height: 415px;
}

.juegos {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: scroll;
}

.juegos__container {
  position: relative;
  padding: 10px;
  width: 100%;
  min-height: 100%;

  gap: 30px 10px;
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-rows: repeat(auto-fit, minmax(1fr, 1fr));
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.juegos__card {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 3px;
  cursor: var(--cursor-pointer);
  border: 5px solid var(--glass-white-plus);
}

.juegos__picture {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.juegos__picture--logo {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
}

.juegos__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 300ms;
  filter: grayscale(40%);
}

.juegos__logo {
  width: 80%;
  top: 20px;
  position: absolute;
  transition: all 300ms;
  filter: grayscale(40%);
}

.juegos__card:hover .juegos__img,
.juegos__card:hover .juegos__logo {
  filter: drop-shadow(3px 4px 1px var(--glass-white-plus)) grayscale(0);
}

/* Emulador Container */

.emulador {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--color-alterno);
}

/* Ventana de Emprendimientos */

.emprendimientos {
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: scroll;
}

.emprendimientos__container {
  position: relative;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 30px 15px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: repeat(auto-fit, minmax(380px, 1fr));
}

.emprendimientos__card {
  width: 280px;
  height: 380px;
  overflow: hidden;
  position: relative;
  background-color: var(--glass-white-plus);
  border-radius: 20px;
  box-shadow: 7px 13px 30px var(--color1);
  border: 1px solid var(--glass-white-plus);
  border-right: 2px solid var(--transparent-white);
}

.emprendimientos__picture {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
  padding: 5px;
}

.emprendimientos__img {
  width: 100%;
  height: 170px;
  border-radius: 15px;
}

.emprendimientos__content {
  padding: 10px;
  overflow: hidden;
  text-align: center;
}

.emprendimientos__title {
  font-variant: small-caps;
  font-weight: 500;
  margin: 0.5rem 0;
  font-size: 1.8rem;
}

.emprendimientos__subtitle {
  font-weight: 300;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.emprendimientos__item {
  display: inline-block;
  margin: 0.5rem 0.2rem;
}

.emprendimientos__cta {
  display: inline-block;
  background-color: var(--transparent-dark);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  transition: transform 300ms;
  transition-timing-function: ease-in-out;
  font-size: 1.5rem;
}

.emprendimientos__cta:hover {
  transform: scale(1.2);
}

.emprendimientos__inclinado {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30px;
  background-color: var(--transparent-dark);
  clip-path: polygon(50% 60%, 100% 0, 100% 100%, 0 100%, 0 0);
}

/* Galeria */

.galeria {
  position: relative;
  width: 100%;
  height: 100%;
}

.galeria__container {
  position: relative;
  overflow: hidden;
  overflow-y: scroll;
  margin: auto;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 10px 5px;
  justify-content: space-evenly;
  align-content: flex-start;
  align-items: center;
  gap: 8px 10px;
}

.galeria__picture {
  cursor: var(--cursor-pointer);
  width: calc(98% / 2);
  height: 250px;
  box-shadow: 0 0 5px 1px var(--color1);
}

.galeria__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galeria__lightbox {
  position: fixed;
  width: 100%;
  height: calc(100% - 40px);
  left: 0;
  bottom: 0;
  background-color: var(--transparent-dark);
  justify-content: space-between;
  align-items: center;
  display: none;
}

.galeria__interna {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galeria__active {
  width: 80%;
  height: 80%;
  outline: 1px solid var(--glass-white-plus);
}

.galeria__view {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galeria__button {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: var(--cursor-pointer);
}

.galeria__close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.galeria__direccion {
  margin: 0 10px;
}

/* Convenios Ismac */

.convenios {
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: scroll;
}

.convenios__container {
  width: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
  grid-auto-rows: 100px;
  grid-template-rows: repeat(auto-fit, minmax(100px, 1fr));
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.convenios__item {
  display: flex;
  align-items: center;

  transition: all 300ms;
  width: 90%;
  height: 50%;
  font-size: 1.5rem;
  padding: 10px 30px;
  border-radius: 20px 0 20px 0;
  cursor: var(--cursor-pointer);
  border: 1px solid var(--glass-white-plus);
  box-shadow: 2px 4px 5px var(--color-alterno);
  border-right: 2px solid var(--glass-white-plus);
  border-bottom: 2px solid var(--glass-white-plus);
  background: linear-gradient(
    45deg,
    var(--color-alterno),
    var(--glass-white-plus)
  );
}

.convenios__item:hover {
  letter-spacing: 1.5px;
}

.convenios__item:hover .convenios__icon {
  transform: scale(1.2);
}

.convenios__icon {
  font-size: 1.8rem;
  margin-right: 25px;
  transition: all 300ms;
}

.convenios__legend {
  font-size: 1.3vw;
  font-variant: small-caps;
}

/* Categorias Convenios */

.categorias {
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: scroll;
}

.categorias__container {
  width: 100%;
  padding: 10px;

  gap: 10px;
  display: grid;
  padding: 1rem;
  align-items: center;
  justify-items: center;
  grid-template-rows: repeat(auto-fit, minmax(100px, 1fr));
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.categorias__figure,
.categorias__img {
  width: 100%;
  height: 100%;
}

/* Spotify Widget */

.spotify {
  width: 100%;
  height: 100%;
  padding: 2px;
}

.spotify__frame {
  width: 100%;
  height: 100%;
}

/* Tedex */

.tedex {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 40px 1fr;
}

.tedex__title {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  font-variant: small-caps;
  font-weight: 400;
  text-indent: 0.5rem;
}

.tedex__title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--glass-white-plus);
}

.tedex__container {
  width: 100%;
  height: 100%;
  padding: 5px;
  overflow: hidden;
  overflow-y: scroll;
}

.tedex__box {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 400px;
  margin: 10px 0;
  display: grid;
  grid-template-rows: 40px 1fr;
}

.tedex__subtitle {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-variant: small-caps;
  font-weight: 300;
  text-indent: 0.5rem;
}

.tedex__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px 5px;
  margin: 10px 0;
}

.tedex__video {
  display: block;
  width: 40%;
  height: 200px;
  border-radius: 5px;
}

.tedex__video--2022 {
  width: 90%;
  height: 400px;
}

/* Windows Aviso*/

.windows--aviso {
  width: 510px; /* 510 */
  height: 400px; /* 510 */
}

.aviso {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #400e07;

  display: flex;
  align-items: center;
  justify-content: center;
}

.aviso__container {
  width: 100%;
  height: 100%;
  position: relative;
  background-size: 100% 100%; /*100% 100% */
  background-position: center; /* Center */
  background-repeat: no-repeat;
  background-image: url("https://res.cloudinary.com/di4ch4uw8/image/upload/v1750454215/extraAnticipadas_bv3194.jpg");
}

.aviso__button {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transition: all 300ms;
  transform: translateX(-50%);

  width: 300px;
  height: 50px;
  font-size: 18px;
  line-height: 50px;
  text-align: center;
  border-radius: 30px 0 30px 0;
  letter-spacing: 5px;
  font-variant: small-caps;
  background-color: var(--color4);
  border: 2px solid var(--glass-white-plus);
  box-shadow: 0 0 20px 5px var(--color-alterno-denso);
}

.aviso__button:hover {
  letter-spacing: 8px;
}

.aviso__video {
  width: 100%;
  height: 100%;
  padding: 3px;
}

/* Windows Academias */

.windows--academias:target {
  opacity: 1;
  visibility: visible;
  transform: scale(100%);
}

/* Politicas Y Privacidad */

.windows--privacidad {
  width: 75%;
}

.windows--privacidad:target {
  opacity: 1;
  visibility: visible;
  transform: scale(100%);
}

.privacidad {
  width: 100%;
  height: 100%;
  padding: 5px;
  gap: 0.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: auto;
}

.privacidad__card {
  height: 100%;
  margin: 0 auto;
  width: calc(98% / 3);

  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 50px;
  border-radius: 5px;
  background-color: var(--color-alterno);
  border: 1px solid var(--transparent-white);
}

.privacidad__picture {
  width: 100%;
  height: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.privacidad__img {
  width: 90%;
}

.privacidad__text {
  width: 100%;
  height: 50px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  background-color: var(--color4);
  border: 1px solid var(--transparent-white);
}

.privacidad__text:hover {
  opacity: 0.8;
}

.privacidad__title {
  text-align: center;
  line-height: 50px;
  font-size: 1.2vw;
  text-shadow: 1px 1px 4px var(--color1);
}

/* Politicas Privacidad Visualizador */

.ppvisualizor {
  width: 100%;
  height: 100%;
}

.ppvisualizor__view {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

/* Ubicacion */

.ubicacion {
  position: relative;
  width: 100%;
  height: 100%;
}

.ubicacion__container {
  width: 100%;
  height: 100%;
}

.ubicacion__frame {
  width: 100%;
  height: 100%;
}

/* Nosotros */

.nosotros {
  position: relative;
  width: 100%;
  height: 100%;
}

.nosotros__container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.nosotros__video {
  width: 100%;
  height: 100%;
}

/* Retorno */

.retorno {
  position: relative;
  width: 100%;
  height: 100%;
}

.retorno__container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Context Menu */

.context {
  position: absolute;
  width: 200px;
  height: 60px;
  padding: 3px;
  visibility: hidden;
  background-color: var(--glass-white);
  backdrop-filter: blur(16px);
  border: 2px solid var(--transparent-white);
  border-right: 1px solid var(--glass-white-plus);
  border-bottom: 1px solid var(--glass-white-plus);
  z-index: 10000;
}

.context__container {
  width: 100%;
  height: 100%;
}

.context__item {
  cursor: var(--cursor-pointer);
  width: 100%;
  height: 50%;
  padding: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;

  transition: background-color 300ms;
}

.context__item:hover {
  background-color: var(--transparent-dark);
}

.context__legend {
  font-variant: small-caps;
  letter-spacing: 1.5px;
}

/* Area Seleccion Mouse */
.selectbox {
  background: var(--glass-white);
  border: 2px solid var(--glass-white-plus);
}

/* Calendario */

.calendario {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.calendario__container {
  width: 100%;
  height: 100%;
}

/* Redes Sociales Ismac */

.redes {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10px;
  overflow: hidden;
  overflow-y: scroll;
}

.redes__card {
  width: 100%;
  height: 100px;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 30px 5px 30px 5px;
  background-color: var(--color-alterno);
  border: 1px solid var(--glass-white-plus);

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.redes__texts {
  width: 400px;
  padding-left: 10px;
  line-height: 1.5;
}

.redes__title {
  letter-spacing: 5px;
  font-variant: small-caps;
}

.redes__usuario {
  font-size: 12px;
  display: block;
  font-weight: 400;
}

.redes__ilustracion {
  color: goldenrod;
}

.redes__cta {
  text-shadow: 1px 1px 1px var(--color-alterno-denso);
  display: block;
  width: 120px;
  height: 35px;
  font-weight: 500;
  line-height: 35px;
  text-align: center;
  letter-spacing: 3px;
  border-radius: 20px;
  background-color: goldenrod;
}

/* Plataformas Virtuales */

.plataformas {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
  overflow: hidden;
  overflow-y: scroll;
}

.plataformas__emoji {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  font-size: 25px;
  border-radius: 50%;
  border: 1px solid var(--white);
  background-color: var(--glass-white-plus);

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.plataformas__container {
  width: 100%;

  display: grid;
  gap: 30px 15px;
  align-items: center;
  justify-items: center;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-rows: 150px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.plataformas__picture {
  position: relative;
  width: 150px;
  height: 150px;
  padding: 15px;
  box-shadow: 0 0 10px var(--glass-white-plus);
  border-radius: 15px 30px;
  background-color: var(--color-alterno);
  border: 2px solid var(--glass-white-plus);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.plataformas__picture::after {
  content: "";
  width: 90%;
  height: 90%;
  position: absolute;
  pointer-events: none;
  border-radius: 10px 25px;
  border: 1px solid var(--glass-white-plus);
}

.plataformas__img {
  transform: scale(0.8);
  filter: grayscale(50%);
  transition: all 300ms;
}

.plataformas__img:hover {
  filter: grayscale(0);
  transform: scale(1);
}

.plataformas__title {
  text-align: center;
  font-size: 12px;
  font-variant: small-caps;
}

/* TELEFONIA */
.telefonia {
  width: 100%;
  height: 100%;
  padding: 15px 10px;
  overflow-y: scroll;
}

.telefonia__categoria {
  margin-bottom: 1.3rem;
  display: none;
}

.telefonia__active {
  display: block;
}

.telefonia__controls {
  margin-block: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.8rem;
  border-bottom: 3px solid var(--glass-white-plus);
}

.telefonia__legend {
  font-size: 18px;
  display: block;
  width: 100%;
}

.telefonia__select {
  border: 0;
  padding: 5px;
  outline: none;
  cursor: pointer;
  border-radius: 3px;
  color: var(--white);
  background: rgb(242, 73, 104);
  background: linear-gradient(
    90deg,
    rgba(242, 73, 104, 1) 0%,
    rgba(191, 10, 94, 1) 50%,
    rgba(166, 13, 97, 1) 100%
  );
}

.telefonia__option {
  color: var(--white);
  background: rgba(191, 10, 94, 1);
}

.telefonia__text {
  height: 35px;
  display: flex;
  /* gap: 0.3rem; */
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;

  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.telefonia__cards {
  gap: 1rem;
  display: grid;
  grid-auto-rows: 250px;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.telefonia__asesor {
  width: 100%;
  height: 100%;
  padding: 16px 12px;
  border-radius: 2px;
  background-image: url("../img/fondoCards.png");
  background-size: cover;
  border: 1px solid var(--color3);
}

.telefonia__picture {
  width: 100%;
  height: 60%;
  overflow: hidden;
  margin-bottom: 0.8rem;

  display: flex;
  align-items: center;
  justify-content: center;
}

.telefonia__img {
  --color-border: #bd1057;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  outline: 5px solid var(--color-border);

  object-fit: cover;
}

.telefonia__info {
  width: 100%;

  gap: 1rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.telefonia__name {
  font-size: 19px;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 400;
}

.telefonia__btn {
  width: 100%;
  height: 35px;
  cursor: pointer;
  color: var(--white);
  border: 0;
  outline: none;
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  background: rgb(242, 73, 104);
  background: linear-gradient(
    90deg,
    rgba(242, 73, 104, 1) 0%,
    rgba(191, 10, 94, 1) 50%,
    rgba(166, 13, 97, 1) 100%
  );
  letter-spacing: 1.5px;
  transition: letter-spacing 300ms;
}

.telefonia__btn:hover {
  letter-spacing: 2.5px;
}

/* MOSTRAR PANELES */

.panelShow {
  opacity: 1;
  bottom: 0;
}

/* DESAPARECER */

.desaparecer {
  display: none;
}

/* Soporte Diseño Firefox */

@supports not ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .windows {
    background-color: var(--color-alterno);
  }

  .taskbar {
    background-color: var(--color-alterno);
  }

  .menu,
  .buscador,
  .notification,
  .social {
    background-color: var(--color-alterno);
    outline: 1px solid var(--color-alterno);
  }

  .search__input:focus {
    background-color: var(--glass-white-plus);
  }
}

/* RESPONSIVE 768PX */

@media (max-width: 768px) {
  /* Notificacion */
  .notification {
    width: 50%;
  }

  /* Taskbar */
  .taskbar {
    position: fixed;
    background-color: var(--color-alterno);
    bottom: 0;
    left: 0;
  }

  /* Panel Menu */
  .menu__items {
    flex-direction: column;
  }

  .menu__picture {
    width: 12vw;
    height: 12vw;
  }

  .menu__picture--grande {
    width: 25vw;
    height: 25vw;
  }

  /* Windows */
  .windows {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .windows__maximize {
    display: none;
  }

  .windows__wave {
    display: none;
  }

  .windows--whatsapp {
    width: 40%;
    height: 40%;
  }

  .windows--telegram {
    width: 20%;
    height: 70%;
  }

  /* Configuracion */
  .configuracion__item {
    width: 10vw;
    height: 10vw;
  }

  .configuracion__preview {
    padding: 25px;
  }

  /* Archivos */
  .archivos__categoria {
    font-size: 1rem;
  }

  .archivos__title {
    font-size: 0.9rem;
  }

  /* Politica  */
  .politica__picture {
    width: 330px;
    height: 410px;
  }

  /* Social Media */
  .social {
    width: 16%;
    height: 22%;
  }

  /* Search */
  .search {
    display: none;
  }

  /* SelectBox */

  .selectbox {
    background: none;
    display: none;
    border: none;
  }

  /* Desktop Icons */

  .desktop__icon--carreras {
    animation: none;
  }

  /* Windows Emulador */

  .desktop__icon--juegos,
  .windows--emulador,
  .windows--juegos {
    display: none;
  }

  /* Convenios Categorias */

  .convenios__legend {
    font-size: 1rem;
    letter-spacing: 0;
  }

  /* Aviso */

  .windows--aviso {
    display: none;
  }

  #btnIrAviso {
    display: none;
  }

  /* Privacidad */

  .privacidad__title {
    font-size: 2vw;
  }
}

/* RESPONSIVE 600PX */
@media (max-width: 650px) {
  /* Menu */
  .menu__picture {
    width: 16vw;
    height: 16vw;
  }

  .menu__picture--grande {
    width: 30vw;
    height: 30vw;
  }

  /* Configuracion */
  .configuracion__grid {
    grid-template-columns: 1fr;
    grid-template-rows: 160px 1fr;
  }

  .configuracion__preview {
    padding: 20px;
  }

  .configuracion__item {
    width: 10vw;
    height: 10vw;
  }

  /* Atmosferas */
  .atmosferas__section {
    background: none;
    display: grid;
    grid-template-columns: 1fr;
  }

  .atmosferas__picture {
    display: block;
    margin: 0 auto;
    width: 250px;
    height: 100%;
  }

  .atmosferas__img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .atmosferas__texts {
    display: none;
  }

  .atmosferas__cta {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }

  /* Politica */
  .politica__picture {
    width: 330px;
    height: 410px;
  }

  /* Social Media */
  .social {
    width: 20%;
  }

  /* Notificacion */
  .notification {
    width: 50%;
  }

  /* Anclados */
  .anclados {
    display: none;
  }

  /* SelectBox */

  .selectbox {
    background: none;
    display: none;
    border: none;
  }

  /* Aviso */

  .windows--aviso {
    width: 480px;
    height: 400px;
  }

  .aviso__container {
    background-size: cover;
  }

  /* Privacidad */

  .privacidad__title {
    font-size: 2.5vw;
  }

  /* Quienes somos */

  .mvsion__paragraph {
    text-align: left;
  }

  /* Historia Ismac */

  .historia__container {
    grid-template-rows: repeat(2, 1fr);
  }
}

/* RESPONSIVE 500PX */
@media (max-width: 500px) {
  /* Container */
  .container {
    position: fixed;
    top: 0;
    left: 0;
  }

  /* Desktop */
  .desktop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 3rem);
  }

  .desktop__icon--configuracion,
  .desktop__icon--juegos,
  .desktop__icon--calendario {
    display: none;
  }

  .desktop__container {
    padding: 10px;
    flex-direction: row;
    justify-content: space-evenly;
    align-content: flex-start;
  }

  /* Menu */
  .menu {
    width: 100%;
    height: 100%;
    max-height: unset;
  }
  .menu__items {
    flex-direction: row;
    justify-content: space-evenly;
    align-content: center;
  }

  .menu__picture {
    width: 30vw;
    height: 30vw;
  }

  .menu__picture--grande {
    width: 60vw;
    height: 60vw;
  }

  /* Taskbar */

  .taskbar {
    border-top: 1px solid var(--glass-white);
  }

  .taskbar__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Windows */
  .windows--configuracion,
  .windows--calendario {
    display: none;
  }

  /* Context */

  .context {
    height: 30px;
  }

  .context__item:nth-child(1) {
    height: 100%;
  }

  .context__item:nth-child(2) {
    display: none;
  }

  /* Archivos */
  .archivos__title {
    font-size: 0.7rem;
  }

  .archivos__categoria {
    font-size: 12px;
  }

  /* Active */

  .active {
    width: 100%;
    pointer-events: none;
    justify-content: space-between;
  }

  .active__picture {
    pointer-events: all;
  }

  /* Social */
  .social {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 80px;
    position: absolute;
    left: 50%;
    margin-bottom: 10px;
    transform: translateX(-50%);
    border-radius: 50px;
    z-index: 10;
    box-shadow: unset;
  }

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

  /* Notificacion */
  .notification {
    width: 100%;
    height: 100%;
  }

  .notification__container {
    width: 100%;
    height: calc(100% - 3rem);
    padding: 15px 20px;
    overflow-y: scroll;
  }

  /* Galeria */
  .galeria__picture {
    width: 90%;
  }

  .galeria__active {
    width: 90%;
    height: 40%;
    z-index: -1;
  }

  /* Vistas */

  .vistas {
    overflow-y: scroll;
  }

  .vistas__container {
    display: grid;
    grid-auto-flow: row;
    grid-template-rows: 2fr 1fr;
    grid-template-columns: 1fr;
  }

  .vistas__picture {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 5px;
  }

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

  .vistas__button {
    display: block;
    width: 250px;
    height: 100px;
  }

  .vistas__img:hover {
    transform: scale(1);
  }

  /* Tedex */

  .tedex__video {
    width: 100%;
  }

  /* Redes Sociales */
  .desktop__icon--redes {
    display: none;
  }

  .windows__redes {
    display: none;
  }

  /* SelectBox */

  .selectbox {
    background: none;
    display: none;
    border: none;
  }

  /* Aviso Tedx */

  .windows--aviso {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
  }

  .aviso__container {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url("https://res.cloudinary.com/cloudpozo/image/upload/v1665086545/Sismac/tedxWallpaperMobile_zpxj5z.jpg");
  }

  .aviso__container::before {
    content: "Sic Parvis Magna";
    display: block;
    width: 100%;
    font-size: 3rem;
    font-weight: 900;
    margin-top: 60px;
    text-align: center;
    color: var(--white);
    font-variant: small-caps;
    text-decoration: underline;
  }

  .aviso__container::after {
    content: "Postulacion desde el 1ero al 30 de Octubre 🤓";
    display: block;
    font-size: 1.6rem;
    text-align: center;
    color: var(--white);
    font-weight: 300;
    font-variant: small-caps;
    text-shadow: 0 0 1px var(--white);
    margin: 10px 0;
  }

  /* Privacidad */

  .privacidad {
    gap: 20px;
    align-items: center;
    justify-content: center;
  }

  .privacidad__card {
    width: 80%;
    min-height: 400px;
  }

  .privacidad__img {
    width: 100%;
  }

  .privacidad__title {
    font-size: 4vw;
  }
}
