/* Colores del proyecto */
:root {
  --azulFooter: #2F00A3;
}

/* @font-face {
  font-family: Nunito;
  src: url(assets/fonts/Nunito-Regular.ttf);
} */
@font-face {
  font-family: 'Nunito';
  /* URL de Google Fonts para la fuente Nunito */
  src: url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
}
a {
  text-decoration: none;
}

body {
  font-family: Nunito, sans-serif;
  font-size: 1.6rem;
}

.FlexCenter {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.5rem;
}

/* Inicio Header */
header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.headerEvento {
  background-image: url("https://imagenes.blackfridaycol.com/assets-web/microeventos/Header.png");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem 1rem 1rem;
  flex-wrap: wrap;
  width: 100%;
  box-shadow: 1px 1px 20px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  /* border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px; */
}

.headerEvento__Organiza {
  width: 160px;
}

.headerEvento__LoEncontraste {
  width: 380px;

}

.headerEvento__Redes {
  width: 200px;
  display: flex;
  flex-direction: column;
  color: white;
  align-items: center;
  row-gap: 0.5rem;
}

.headerEvento__Redes div {
  display: flex;
  font-size: 2rem;
}

.headerEvento__Redes div a {
  height: 22px;
  width: 22px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-inline: 2rem;
}

.redes {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 0;
}

/* Fin Header */



/* Inicio del Footer */
.footerEvento {
  background-color:#f2f2f2;
  color: var(--azulFooter);
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  padding: 1.5rem;
  font-size: 1.6rem;
  position: relative;
  overflow: hidden;
}
.footerEvento a{
  text-transform: uppercase;
}

.floating-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  /* background: url(https://bfstgstorimg01.blob.core.windows.net/assets-web/microeventos/footer-pantalla-grande.png) no-repeat center bottom / 100% 40%; */
  z-index: 1;
}

.footerEvento__sobreEvento {
  width: 40%;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  overflow: unset;
  padding: 2.5rem;
  z-index: 3;
}

.footerEvento__Evento {
  width: 35%;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  padding: 2.5rem;
  z-index: 3;
}

.footerEvento__Evento ul {
  list-style-type: none;
}

.footerEvento__Contacto {
  width: 25%;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  padding: 2.5rem;
  z-index: 3;
}

.footerEvento .title {
  font-weight: bold;
  font-size: 2.4rem;
}

.footerEvento__Contacto p {
  width: 100%;
}

.footerEvento__Contacto div {
  display: flex;
  font-size: 2rem;
}

.footerEvento__Contacto div a {
  height: 22px;
  width: 22px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-inline: 2rem;
}

.redes:hover {
  box-shadow: 0px 0px 10px 5px var(--azulFooter);
}

.logosFooter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  justify-content: right;
  right: 250px;
  position: relative;
}

.logosFooter img {
  top: 30px;
  position: relative;
}

.logoFooter {
  border-right: 4px solid white;
}

/* Fin del Footer */

.imagenPostevento {
  width: 90%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*TV y Pantallas extra grandes */
@media only screen and (min-width: 1200px) {
  .footerEvento {
    height: 300px;
  }
}

/*Pantallas  desktop y laptos*/
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .floating-background{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    /* background: url(https://bfstgstorimg01.blob.core.windows.net/assets-web/microeventos/footer-pantalla-grande.png) no-repeat center bottom / 100% 40%; */
    z-index: 1;
  }
  .footerEvento{
    height:300px;
  }
}

/*iPads y tables */
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .footerEvento {
    /* background-size: 100% 30%; */
    height: 400px;
  }
  .floating-background{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    /* background: url(https://bfstgstorimg01.blob.core.windows.net/assets-web/microeventos/footer-tablet.png) no-repeat center bottom / 100% 40%; */
    z-index: 1;
  }
  .headerEvento {
    justify-content: center;
    height: auto;
    padding-bottom: 2rem;
  }

  .headerEvento picture {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .headerEvento__Organiza {
    width: 100%;
  }

  .headerEvento__LoEncontraste {
    width: 100%;
  }

  .headerEvento__Redes {
    width: 100%;
    margin-bottom: 1rem;
  }

  .footerEvento__sobreEvento {
    width: 60%;
  }

  .footerEvento__Evento {
    width: 40%;
  }

  .footerEvento__Contacto {
    width: 40%;
    padding: 0 2.5rem 2.5rem 2.5rem;
  }

  .logosFooter {
    right: 0px;
    align-items: initial;
    justify-content: center;
    width: 100%;
    height: max-content;
  }

  .logosFooter img {
    width: 100%;
    top: 0;
  }
}

/* Teléfonos moviles*/
@media only screen and (max-width: 481px) {

  .footerEvento {
    /* background-size: 100% 30%; */
    height: 650px;
    padding-bottom: 3rem;
    flex-direction: column;
    justify-content: space-around;
  }
  .floating-background{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    /* background: url(https://bfstgstorimg01.blob.core.windows.net/assets-web/microeventos/footer-celular.png) no-repeat center bottom / 100% 40%; */
    z-index: 1;
  }

  .headerEvento {
    justify-content: center;
    height: auto;
    padding-bottom: 2rem;
  }

  .headerEvento picture {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .headerEvento__Organiza {
    width: 40%;
  }
  .headerEvento__Organiza img{
    width: 100%;
  }

  .headerEvento__LoEncontraste {
    width: 60%;
  }

  .headerEvento__LoEncontraste img{
    width: 100%;
  }

  .headerEvento__Redes {
    width: 100%;
    display: none;
  }

  .footerEvento__sobreEvento {
    width: 100%;
    padding: 0rem 2.5rem 0rem 2.5rem;
  }

  .footerEvento__Evento {
    width: 100%;
    padding: 0rem 2.5rem 0rem 2.5rem;
  }

  .footerEvento__Contacto {
    width: 100%;
    padding: 0rem 2.5rem 0rem 2.5rem;
  }

  .logosFooter {
    right: 0px;
    align-items: initial;
    justify-content: center;
    width: 100%;
    height: max-content;
  }

  .logosFooter img {
    width: 100%;
    top: 0;
  }
}
