/*fuentes*/
@font-face {
	font-family: 'chopin-medium';
	src: url('/Chopin-Trial-Medium.fd0a4508.otf') format('truetype');
	font-style: normal;
	font-weight: normal;
}

@font-face {
	font-family: 'chopin-medium-italic';
	src: url('/Chopin-Trial-MediumItalic.9a497d1b.otf') format('truetype');
	font-style: normal;
	font-weight: normal;
}

@font-face {
	font-family: 'chopin-bold';
	src: url('/Chopin-Trial-Bold.309d38ca.otf') format('truetype');
	font-style: normal;
	font-weight: normal;
}

@font-face {
	font-family: 'chopin-extra-light';
	src: url('/Chopin-Trial-ExtraLight.c4ed5e0a.otf') format('truetype');
	font-style: normal;
	font-weight: normal;
}

@font-face {
	font-family: 'chopin-light-italic';
	src: url('/Chopin-Trial-LightItalic.e95b5c83.otf') format('truetype');
	font-style: normal;
	font-weight: normal;
}

@font-face {
	font-family: 'chopin-regular';
	src: url('/Chopin-Trial-Regular.dad2ff09.otf') format('truetype');
	font-style: normal;
	font-weight: normal;
}

@font-face {
	font-family: 'chopin-medium-italic';
	src: url('/Chopin-Trial-RegularItalic.f96c338e.otf') format('truetype');
	font-style: normal;
	font-weight: normal;
}


/* estilos ventana modal */
@import url("https://fonts.googleapis.com/css?family=Roboto");
.debug {
  /*
  usando la consola para agregar un borde a los elementos y ver sus limites
  */
  border:1px dashed red;
}


body {
  background-color: #121a27;
  font-family: "Roboto", "sans-serif";
  /*
  para tener una referencia y poder trabajar con em y rem (ver el breakpoint)
  */
  font-size: 16px;
}

/*
es el div de fondo negro
*/
.close-button {
  z-index: 3000;
}

.modal-wrapper {
  background-size: cover;
  background-image: url('/fondo-gris.fa748f37.jpg');
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
  /*
  si bien con estos estilos se centra verticalmente usando flex, al hacer mas pequeña (en altura) la ventana
  del navegador se mantiene centrado pero se pierde la parte superior e inferior por eso mejor se usa grid
    */
  /* justify-content: center; */
  align-items: center;
  overflow: scroll;
  
}

.modal-show {
  display: grid;
  animation: anim-show .5s;
}

@keyframes anim-show {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-hide {
  z-index: -1; /*hace que no se quede una capa sobre el boton de apertura que no permite hacer click*/
  opacity: 0; /*esto permite que despues de la animacion se quede oculto*/
  animation: anim-hide .5s;
}

@keyframes anim-hide {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0);
    opacity: 0;
  }
}

/*
modal-dialog es la caja blanca donde va el contenido. El modal en sí.
*/



.modal-dialog {
  width: 100%;
  height: 100vh;
  border-radius: 1%;
}

.modal-dialog-grid {
  display: grid;
  grid-template-rows: 3.44em calc(90vh - 3.44em);
  grid-template-areas:
  "area-header"
  "area-body"
}

aside {
  width: 25vw;
  height: 100vh;
  position: fixed;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 2%;
  background-color: mintcream;
}


.area-header {
  position: relative;
  width: 75vw;
  left: 0;
  grid-area: area-header;
  justify-content: space-between;
  align-items: center;
}

.area-header button {
  position: fixed;
  top: 10px;
  right: 30px;
  background: #F15A24;
  color: white;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  border: #F15A24;
  cursor: pointer;
  transition: all .5s ease-in-out;
}
.area-header button:hover {

  background: white;
  color: #F15A24;
  border: white;
  cursor: pointer;
}

.area-header h2 {
  margin: 0;
  padding: 0;
  padding-top: 0.15em;
  position: sticky;
  top:0;
}

.area-body {
  position: relative;
  width: 75vw;
  left: 0;
  grid-area: area-body;
  margin: 0;
  padding: 0 5vw;
}

/*
breakpoints de referencia que usa bootstrap
dejo de ejemplo solo este pero habria que tratarlo para los otros bp
*/
@media (max-width:575.98px){
  body {
    font-size: 14px;
  }
  .modal-dialog {
    width: 30.63em;
  }
}

@media (max-width:767.98px){
  /*to-do*/
}

@media (max-width:991.98px){
  /*to-do*/
}

@media (max-width:1399.98px){
  /*to-do*/
}

@keyframes resplandor {
  0% {
    box-shadow: 0 0 5px rgba(195, 39, 41, 0.5);
  }
  50% {
    box-shadow: 0 0 15px rgba(195, 39, 41, 1);
  }
  100% {
    box-shadow: 0 0 5px rgba(195, 39, 41, 0.5);
  }
}

#btn-open {
  padding: 0 15px;
    width: auto;
    height: 50px;
    border-radius: 20px;
    font-family: chopin-medium;
    font-size: 1.2rem;
    background-color: #c32729;
    border: 1px solid rgba(195,39,41,0);
    color: aliceblue;
    cursor: pointer;
    border: none;
    transition: all .5s ease-in-out;
    animation: resplandor 2s infinite 
  }
  
  #btn-open:hover {
    color: #2D2D38;
    background-color: rgba(116,21,21,0);
    border: 1px solid rgba(195,39,41,1);
}


.area-body {
  position: relative;
  top: 20%;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
}


.modal-title {
  font-family: chopin-bold;
  font-size: 5vw;
  color: #2D2D38;
  text-align: center;
  width: 100%;
}

.impresora-icon {
  position: relative;
  width: 5vw;
  margin: 0 auto 30vh;
}

.subtitulo1 {
  text-align: center;
  font-family: chopin-light-italic;
  font-size: 3vw;
  Color: #F15A24;
  line-height: 1;
}
.subtitulo2 {
  text-align: center;
  font-family: chopin-bold;
  font-size: 3vw;
  Color: #F15A24;
  margin-bottom: 30vh;
}
.modal-text, li {
  font-family: chopin-regular;
  font-size: 1.5vw;
  margin-bottom: 5vh;
  text-align: justify;
}
li {
  margin-left: 5vw;
}
.last-modal-text {
  margin-bottom: 30vh;
}
.modal-img {
  width: 50%;
  margin: 0 auto;
  margin-bottom: 5vh;
}

.modal-logo {
  width: 80%;
}
.modal-aside-slogan {
  font-family: chopin-light-italic;
  font-size: .9rem;
  margin-top: 3vh;
  margin-bottom: 20px;
}
.modal-aside-text {
  font-family: chopin-regular;
  font-size: .9rem;
  margin-bottom: 20px;
}

.modal-icon {
  width: 1.5rem;
  margin: 0 4px 5px 4px;
  position: relative;
  cursor: pointer;
}


.modal-icon .tooltip-text {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
/* .modal-icon:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
} */

.modal-redes {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.modal-video {
  width: 80%;
}



@media screen and (max-width: 600px) {
  body {
      background-color: #121a27;
  }

  h1 {
      font-size: 24px;
  }

  p {
      font-size: 14px;
  }
  li {
    font-size: 14px;
  }
}








/***********************************  boton mas info  ********************************/




.button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px; /* Margen superior ligero */
}

.button-container .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -180px;
  /* top: 50%; */
  /* transform: translateY(-50%); */
  font-size: 24px;
  color: #ff6b6b; /* Color rojo del botón */
  animation: slideAndBounce 4s infinite;
  width: 90px;
}


@keyframes slideAndBounce {
  0%, 20% {
      left: -180px;
      opacity: 0;
      /* transform: translateY(-50%); */
  }
  40% {
      left: -105px;
      opacity: 1;
  }
  50% {
      left: -120px;
  }
  60% {
      left: -105px;
  }
  70% {
      left: -110px;
  }
  80% {
      left: -105px;
  }
  90% {
      left: -108px;
  }
  100% {
      left: -105px;
      opacity: 0;
  }
}

.my-button {
  padding: 10px 20px;
  background-color: #ff6b6b; /* Color rojo */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.red-arrow {
  width: 100%;
}





/* Estilo específico para dispositivos con un ancho máximo de 480px */
@media screen and (max-width: 700px) {
  .modal-dialog {
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }
  aside {
    width: 100vw;
    position: relative;
    width: auto;
    height: auto;
  }
  .area-body {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100vw;
  }
  .modal-title {
    margin-top: 10vh;
    font-size: 10vw;
    line-height: 2.5rem;
    color: #2D2D38;
    text-align: center;
  }
  
  .impresora-icon {
    position: relative;
    width: 15vw;
    margin: 0 auto 15vh;
  }
  
  .subtitulo1 {
    font-size: 10vw;
    Color: #F15A24;
    line-height: 1;
  }
  .subtitulo2 {
    text-align: center;
    font-family: chopin-bold;
    font-size: 8vw;
    line-height: 2rem;
    margin-bottom: 15vh;
  }
  .modal-text {
    font-size: 4.5vw;
    margin-bottom: 5vh;
    padding: 0 5vw;
    text-align: justify;
  }
  .modal-img {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 5vh;
  }
  .modal-logo {
    width: 50%;
    margin-top: 15vh;
  }
  .modal-video {
    width: 100%;
    margin-bottom: 15vh;
    z-index: 10000;
  }

  .button-container {
    top: 0px; /* Margen superior ligero */
  }

  #btn-open {
    height: 5vh;
    width: 40vw;
    font-size: 1rem;
    padding: 5px 0;
    margin: 0;
  }
  
  #btn-open:hover {
    color: #2D2D38;
    background-color: rgba(116,21,21,0);
    border: 1px solid rgba(195,39,41,1);
  }
}



/*# sourceMappingURL=/modal.5b5f56f0.css.map */