/*----------Archivo de estilos usado en las páginas web del Sistema Gestora Roja----------*/
/*----------Variables gloables de la paleta de colores usada en el sistema----------*/
:root{
  --colorPrincipal: #1068A7;
  --colorFondo: #D7E4F3;
  --colorFondoGris: /*#f0f0f0*/ #E8E8E8;
  --colorFondoAzulLigero: /*#e6fff5*/ #BEDAEC;
  --colorPrincipalOscuro: #1482D1;
  --colorAzulLigero: #E5F1FA;
}
/*---------- Estilos de las etiquetas generales en el sistema----------*/
html {
  box-sizing: border-box;
  font-size: 65%;   /** TYPICAL 1 rem = 10 px **/
  font-family: 'PT-Sans', sans-serif;
}
*, *:before,*:after {
  box-sizing: inherit;
}
* {
  margin: 0;
  padding: 0;
}
body{
  background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url('../img/Gestora_roja_06-1024.png');
  background-size: 100% auto;
  background-repeat: repeat-y;
  margin: 0;
  padding: 0;
  overflow: none;
}
header{
  background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, .1));
  height: 20vh;
}
header h2{
  font-size: 4rem;
  text-align: center;
  color: #1068A7;
}
header h3{
  font-size: 3rem;
  text-align: center;
  color: #FFFFFF;
}
.barra{
  display: flex;
  justify-content: space-between;
}
.logo{
  display: inline-flex;
}
.logo img{
  height: 7vh;
  width: 7vh;
}
.navegacion{
  font-size: 2.7rem;
  text-align: right;
  display: flex;
  flex-direction: row;
  align-content: space-evenly;
  gap: 1rem;
}
.navegacion a{
  text-decoration: none;
  background-image: linear-gradient(rgba(184, 202, 209, .3), rgba(184, 202, 209, .2));
  border-radius: .5rem;
  color: #1068A7;
  padding: 0.3rem;
}
navegacion a:link,
navegacion a:visited{
  text-decoration: none;
}
.informacion h3{
  font-size: 3rem;
  text-align: center;
  color:#1068A7;
  filter: brightness(.6);
  font-weight: bold;
}
.detallesInfo{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.tarjetaInfo,
.tarjetaPrecio{
  display:flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;
  /*background-image: radial-gradient(rgba(190, 218, 236, .2), rgba(190, 218, 236, .3));*/
  flex-basis: calc(33% - 1rem);
  padding: 1.3rem;
}
.tarjetaPrecio{
  background-color: #BEDAEC;
}
.tarjetaInfo img,
.tarjetaPrecio img{
  height: 33vh;
  width: 33vh;
}
.tarjetaInfo h4,
.tarjetaPrecio h4{
  font-size: 2.7rem;
  text-align: center;
  padding: .7rem;
}
.tarjetaInfo p,
.tarjetaPrecio p{
  font-size: 2rem;
  text-align: center;
}
.promocion{
  font-size: 10rem !important;
  color: red;
}
.precio{
  font-size: 5rem !important;
  text-decoration: line-through;
}
.llamada{
  font-size: 5rem !important;
}
.piePag{
  background-color: var(--colorPrincipal);
  font-size: 1.2rem;
  text-align: center;
  color: #ffffff;
  padding: 1rem;
  margin:0;
  grid-column: 1 / 3;
  /*height: 100%;*/
}
/*----------Media Query para cambiar el menú de nagevación en móvil intermedio----------*/
@media screen and (max-width:850px){
  div:where(.swal2-container) div:where(.swal2-popup) {
    font-size: 1.2rem;
  }
  header h2{
    font-size: 3.2rem;
  }
  header h3{
    font-size: 2.7rem;
  }
  .logo img{
    height: 6vh;
    width: 6vh;
  }
  .navegacion{
    font-size: 2.4rem;
    gap: 0.8rem;
  }
  .informacion h3{
    font-size: 2.7rem;
  }
  .tarjetaInfo,
  .tarjetaPrecio{
    flex-basis: calc(50% - 1rem);
    padding: 1rem;
  }
  .tarjetaInfo img,
  .tarjetaPrecio img{
    height: 25vh;
    width: 25vh;
  }
  .tarjetaInfo h4,
  .tarjetaPrecio h4{
    font-size: 2.2rem;
  }
  .tarjetaInfo p,
  .tarjetaPrecio p{
    font-size: 1.8rem;
  }
  .promocion{
    font-size: 7rem !important;
  }
  .precio{
    font-size: 4rem !important;
  }
  .llamada{
    font-size: 4rem !important;
  }
}
/*----------Media Query para cambiar el menú de nagevación en móvil chico----------*/
@media screen and (max-width:600px){
  html {
    font-size: 57%;
  }
  header h2{
    font-size: 2.7rem;
  }
  header h3{
    font-size: 2rem;
  }
  .logo{
    display:block;
  }
  .logo img{
    height: 5vh;
    width: 5vh;
  }
  .navegacion{
    font-size: 2.2rem;
    flex-direction: column;
    gap: 0.6rem;
  }
  .informacion h3{
    font-size: 2.4rem;
  }
  .tarjetaInfo,
  .tarjetaPrecio{
    flex-basis: calc(100% - 1rem);
    padding: 1rem;
  }
  .tarjetaInfo img,
  .tarjetaPrecio img{
    height: 20vh;
    width: 20vh;
  }
  .tarjetaInfo h4,
  .tarjetaPrecio h4{
    font-size: 2.2rem;
  }
  .tarjetaInfo p,
  .tarjetaPrecio p{
    font-size: 1.8rem;
    border-radius: .5rem;
    font-weight: bold;
  }
  .piePag{
    font-size: 1rem;
    padding: .5rem;
    grid-column: 1 / 3;
  }
  .promocion{
    font-size: 5rem !important;
  }
  .precio{
    font-size: 3rem !important;
  }
  .llamada{
    font-size: 3rem !important;
  }
  div:where(.swal2-container) div:where(.swal2-popup) {
    width: var(--swal2-width);
    font-size: 1rem;
  }
}