@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

main {
  display: flex;
  background-color: #f4f4f6;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%; /* Hace que el contenido dentro ocupe el 100% del ancho del body */
  box-sizing: border-box;
}

.columna-central {
  width: 80%;
  padding: 10vh 0;
  display: flex;
  flex-direction: column;
  background-color: #f4f4f6;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 900px) {
  .columna-central {
    padding: 5vh 0;
  }
}

.fecha {
  width: 90%;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1px, 0.9vw, 0.81rem);
  font-style: italic;
}
@media (min-width: 320px) and (max-width: 900px) {
  .fecha {
    font-size: 2vw;
  }
}

.columna-central h1 {
  width: 90%;
  margin: 2vh 0 5vh 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(1px, 3.3vw, 2.97rem);
  color: #000000;
}

.estructura {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (min-width: 320px) and (max-width: 900px) {
  .estructura {
    flex-direction: column;
  }
}

.sector-img {
  width: 40%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 900px) {
  .sector-img {
    width: 100%;
    justify-content: center;
  }
}

.sector-img img {
  width: 80%;
  height: auto;
}

.cuerpo-notica {
  width: 50%;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1px, 1.4vw, 1.26rem);
}
@media (min-width: 320px) and (max-width: 900px) {
  .cuerpo-notica {
    width: 100%;
    padding: 0.5em;
    margin-top: 2vh;
    font-size: 3vw;
  }
}

.btn-wsp {
  position: fixed;
  width: 60px;
  height: 60px;
  line-height: 63px;
  bottom: 25px;
  right: 25px;
  color: #FFF;
  text-align: center;
  font-size: 2.4vw;
  z-index: 100;
  border-radius: 50px;
  transition: all 300ms ease;
  transition: all 0.4s ease;
  border-radius: 50px;
  background-color: #25d366;
  box-shadow: 2px 2px 4px #c9c9c9, -2px -2px 4px #ffffff, inset 0 0 0 transparent, inset 0 0 0 transparent;
}
@media (min-width: 320px) and (max-width: 900px) {
  .btn-wsp {
    font-size: 6.4vw;
  }
}

.btn-wsp:active {
  transition: all 0.4s ease;
  border-radius: 50px;
  background-color: #25d366;
  box-shadow: 0 0 0 transparent, 0 0 0 transparent, inset 2px 2px 4px #1eac53, inset -2px -2px 4px #47df80;
}/*# sourceMappingURL=noticia.css.map */