@import url("base.css");

/* Float Modal */
.floatModal {
  margin: auto;
  border-radius: 6px;
  border: transparent;
  width: 86%;
  text-align: justify;
  background-color: transparent;
}

@media screen and (min-width: 540px) {
  .floatModal--home {
    width: 40%;
  }
}

@media screen and (min-width: 768px) {
  .floatModal--home {
    width: 45%;
  }
}

@media screen and (min-width: 1200px) {
  .floatModal--home {
    width: 25%;
  }
}

.floatModal::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.head__modal {
  display: flex;
  justify-content: space-between;
  padding: 15px 5px;
  background-color: var(--bg-blue);
}

.head__modal__title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: var(--white-color);
  font-size: 18px;
}

.close__modal {
  padding: 5px 10px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  font-size: 20px;
  color: var(--white-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.15s ease-in-out;
}

.close__modal:hover {
  background-color: var(--white-color);
  color: var(--bg-blue);
}

.body__modal {
  padding: 25px 20px;
  background-color: var(--white-color);
}

.form__modal {
  display: flex;
  flex-direction: column;
  padding: 15px 0px;
}
.form__modal__mensaje{
  padding-block: 10px;
  font-size: 1.15rem;
}

.form__modal__mensaje--error{
  color: #c61b1b;
}

.form__modal__mensaje--ok{
  color: #53c61b;
}

.form__modal input {
  margin-bottom: 10px;
  height: 32px;
  padding-left: 5px;
  border: 1px solid var(--bg-blue);
  border-radius: 6px;
}

.form__modal__seccion{
  display: grid;
}

.form__modal__seccion--hidden{
  display: none;
}

.form__modal__seccion__wrapper{
  display: grid;
  gap: .3rem;
}
.form__modal__seccion__wrapper__btn{
  display: flex;
  justify-content: space-between;
}

.btn__modal {
  cursor: pointer;
  border: 1px solid transparent;
  transition:all 150ms ease;
  border-radius: 5px;
  padding: .3rem .5rem;
}

.btn__modal--submit{
  background-color: var(--bg-blue);
  color: var(--white-color);
}

.btn__modal--submit:hover {
  border: 1px solid var(--bg-blue);
  background-color: transparent;
  color: var(--bg-blue);
}

.btn__modal--back{
  border-color: red;
  background-color: transparent;
}

.btn__modal--back:hover{
  background-color: red;
  color: #FFF;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 100;
}

/* Nav Styles */
.nav {
  width: 100%;
  background-color: var(--bg-blue);
  height: 100px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 3px solid #fff;
  transition: all.2s ease-in-out;
}

.nav__cont_img {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5px;
}

.nav__img {
  height: 100%;
  width: 100%;
  padding: 5px 0px;
}

.nav__links {
  list-style: none;
  width: 100%;
  position: absolute;
  top: 105px;
  left: 0px;
  background-color: var(--bg-blue);
  transform: translateY(-200vh);
  transition: transform 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 10px 15px 10px #00000040;
}

.line {
  height: 100%;
  width: 31px;
  background-color: #fff;
  position: relative;
  display: none;
  box-shadow: 5px 0px 7px 0px #0000005c;
}

.line::before {
  content: "";
  width: 10px;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 1;
  left: -10px;
  box-shadow: -5px 0px 7px 0px #00000061;
}

.line::after {
  content: "";
  background-color: var(--yellow-color);
  width: 10px;
  height: 50%;
  display: block;
  position: absolute;
  z-index: -1;
  top: 22px;
  right: -10px;
}

.nav__link {
  color: var(--white-color);
  text-decoration: none;
  background-color: transparent;
  padding: 1rem 0.5rem;
  font-size: 16px;
  width: 100%;
  height: 100%;
  transition: all 0.05s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.nav__link:hover {
  background-color: var(--white-color);
  color: var(--bg-blue);
  text-decoration: dashed;
}

.dropdown__btn {
  display: none;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-width: 6%;
  padding-inline: 10px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  font-size: 25px;
  color: var(--white-color);
}

.dropdown__btn:hover {
  background-color: var(--white-color);
  color: var(--bg-blue);
}

.dropdown__links {
  right: 0px;
  top: 100px;
  background-color: var(--bg-blue);
  box-shadow: 0px 6px 10px -2px #00000050;
  transition: all 200ms ease-in-out;
}


.nav[style] .dropdown__links {
  top: 75px;
}

/* Hamburger Button */
.checkIn {
  -webkit-appearance: none;
  display: none;
  visibility: hidden;
}

.bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 46px;
  cursor: pointer;
}

.bar span {
  width: 100%;
  height: 6px;
  background: #f1faee;
  border-radius: 100px;
  transition: all 0.2s ease;
  transform-origin: left;
}

.checkIn:checked~span.top {
  transform: rotate(45deg);
}

.checkIn:checked~span.middle {
  transform: translateY(20px);
  opacity: 0;
}

.checkIn:checked~span.bottom {
  transform: rotate(-45deg);
  box-shadow: 0 0 5px #495057;
}

/* Main Styles */

.main {
  margin-top: 100px;
}

/* Principal styles of secction */
.secction {
  background-color: var(--bg-blue);
  color: var(--white-color);
  min-height: 170px;
}

.secction>h2 {
  text-align: center;
}

/* Principal styles of article */
.article {
  width: 100%;
}

.article__title {
  font-size: 28px;
  position: relative;
  z-index: 0;
}

.article__title::before {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  width: 3px;
  background-color: var(--yellow-color);
  top: 0px;
  left: -10px;
  bottom: 0px;
}

.article__descrip {
  font-size: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 560px;
}

/* Secction Video */
.secction--video,
.secction--video--wrap {
  position: relative;
  z-index: 0;
}

.secction--video--wrap {
  display: flex;
  scroll-behavior: smooth;
  scroll-snap-type: x;
  overflow: hidden;
}

.secction--video--item {
  scroll-snap-align: center;
}

.secction--video--show::after {
  content: "";
  /* background-color: var(--bg-blue); */
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 1;
  top: 0px;
}

.player__img {
  position: absolute;
  width: 80px;
  margin: auto;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 2;
  cursor: pointer;
}

.video__info {
  width: 100vw;
  height: calc(100vh - 100px);
}

.btn__video__actions {
  position: absolute;
  inset: 25% auto;
  z-index: 2;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.btn__video__actions:hover {
  filter: sepia();
}

.btn__video__actions img {
  width: 50px;
  height: 100%;
  padding: 0px 10px;
}

.btn__video__next {
  right: 0px;
}

.btn__video__prev {
  left: 0px;
}

/* Secction actions btns */
.secction__actions__btns {
  background-color: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.btn__action {
  border: none;
  background-color: transparent;
  color: var(--bg-blue);
  font-size: 22px;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.btn__action:hover {
  background-color: var(--bg-blue);
  color: var(--white-color);
}

.limiter__line {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--bg-blue);
}

.limiter__line2 {
  display: block;
  height: 5px;
  width: 100%;
  background-color: var(--white-color);
}

.btn__action--mas__servicios {
  position: relative;
}

.secction__actions__btns__submenu {
  position: absolute;
  list-style: none;
  top: 60px;
  right: 0px;
  display: none;
  flex-direction: column;
  width: 100%;
  border-color: var(--white-color);
  border-top: 1px solid;
  border-bottom: 1px solid;
  align-items: center;
  background-color: var(--white-color);
  z-index: 15;
  box-shadow: 0px 7px 6px 3px #00000085;
}

.secction__actions__btns__submenu--show {
  display: flex;
}

/* Article notice styles */
.secction__notice {
  padding: 50px 0px;
  background-color: var(--bg-blue);
  position: relative;
  background-image: url("/img/fondos/wallpaper-noticias.jpg");
  background-position: center;
  background-repeat: no-repeat;
}

.secction__notice h2 {
  color: var(--white-color);
  font-size: 30px;
}

.article__notices {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  /* grid-template-rows: repeat(2, 1fr); */
  grid-auto-rows: minmax(auto, 1fr);
  justify-items: center;
  gap: 30px;
}

.article__notice {
  min-width: 350px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  color: var(--bg-blue);
  background-color: var(--white-color);
  padding: 10px;
}

.article__notice__content {
  width: 170px;
  /* text-align: justify; */
}

.article__notice__content__descrip {
  margin-top: 10px;
  max-height: 75px;
  overflow: hidden;
}

.article__notice img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.categories__cont {
  margin-top: 20px;
}

.categorie {
  display: inline-block;
  padding: 0px 5px;
  border-radius: 4px;
  background-color: var(--bg-blue);
  color: var(--white-color);
}

/* Secction Call to Action */
.secction--cta {
  padding: 60px 40px;
  position: relative;
}

.article--cta {
  position: relative;
}

.secction--cta>img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.article__cont__btn {
  margin: auto;
  margin-top: 15px;
  width: 100%;
}

.btn {
  width: 100%;
}

/* Secction Twiter */
.secction--twitter {
  display: none;
}

.article--twitter {
  position: relative;
  display: flex;
  justify-content: space-between;
}

#contenedor {
  height: 300px;
  width: 800px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contenedor_section-one {
  width: 800px;
  height: 300px;
  position: absolute;
  z-index: 20;
}

.contenedor-section-one a {
  z-index: 50;
}

.contenedor-section-one-noactive {
  background-color: transparent;
  width: 800px;
  height: inherit;
  position: absolute;
  top: 0px;
  z-index: 40;
  backface-visibility: visible;
}

.contenedor-section-one-noactive:hover {
  backdrop-filter: blur(3px);
}

.contenedor-section-one-noactive:hover .contenedor_section-one-active {
  opacity: 0.85;
}

.contenedor-section-one-noactive:hover .contenedor_section-one-active-element {
  animation-play-state: running;
  animation-fill-mode: both;
}

.contenedor_section-one-active {
  background-color: var(--color-one);
  width: 800px;
  height: inherit;
  position: absolute;
  z-index: 30;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contenedor_section-one-active::after {
  content: "";
  width: 200px;
  height: 0px;
  height: 0;
  border-width: 20px;
  border-style: dotted;
  border-color: white;
  position: absolute;
  animation: houdini 2s ease-in-out alternate infinite;
}

.contenedor_section-one-active-element {
  font-size: 50px;
  text-align: center;
  display: block;
  background-color: var(--color-two);
  border-radius: 100px;
  width: 100px;
  height: 100px;
  color: var(--color-one);
  padding: 22px 0px;
  position: absolute;
  animation: housdini 2s ease-in-out alternate infinite;
  transform: scale(1, 1);
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out,
    transform 0.5s ease-in-out;
  z-index: 200;
}

@keyframes houdini {
  0% {
    transform: scale(0.9, 0.9);
  }

  100% {
    transform: scale(1, 1);
  }
}

.contenedor_section-one-active-element:hover {
  width: 300px;
  height: 100px;
}

.twitter__cta {
  width: 420px;
  height: 300px;
  background-color: rebeccapurple;
  position: relative;
  right: 2%;
  z-index: 22;
}

/* Secction sliders */
.secction__sliders {
  padding: 30px 0px;
  background-color: var(--white-color);
  position: relative;
}

.title__sliders {
  display: flex;
  justify-content: center;
}

.title__sliders span {
  margin-top: 30px;
  font-size: 22px;
  color: var(--bg-blue);
  text-align: center;
}

.mark {
  padding: 3px 6px;
  background-color: var(--bg-blue);
  color: var(--white-color);
}

.content__slider {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.slider__imgs {
  width: max-content;
  display: flex;
  align-items: center;
  padding: 30px;
  gap: 50px;
  animation: sliderMove 25s forwards linear infinite;
}

.slider__imgs:has(img:hover) {
  animation-play-state: paused;
}

.slide__img {
  width: 230px;
  -webkit-filter: grayscale(90%);
  -webkit-filter: grayscale(0.9);
  filter: grayscale(90%);
}

.slide__img:hover{
  -webkit-filter: grayscale(0%);
  -webkit-filter: grayscale(0);
  filter: grayscale(0%);
}


@keyframes sliderMove {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

/* Secction Actions Mision,Vision and More */
.secction--actions {
  display: grid;
  position: relative;
  /* padding: 20px; */
}

.article__actions {
  text-align: justify;
  position: relative;
  z-index: 0;
  min-height: 250px;
  max-height: 260px;
}

.wrap__actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.wrap__actions--1 {
  background-image: url("/img/fondos/foto-uno.jpg");
}

.wrap__actions--2 {
  background-image: url("/img/fondos/foto-dos.jpg");
}

.wrap__actions--3 {
  background-image: url("/img/fondos/foto-tres.jpg");
}

.wrap__actions--4 {
  background-image: url("/img/fondos/foto-cuatro.jpg");
}

.wrap__actions h2 {
  margin-bottom: 10px;
}

.wrap__actions__ul {
  padding: 0px 30px;
}

.wrap__actions>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img__actions {
  position: absolute;
  margin: auto;
  display: none;
  width: 18%;
  inset: 0px;
  z-index: 1;
}

.btns__actions {
  display: flex;
  flex-direction: column;
  height: fit-content;
}

.btn__action--2 {
  color: var(--white-color);
}

.btn__action--2:hover {
  color: var(--bg-blue);
  background-color: var(--white-color);
}

/* Secction Gobernador */
.secction--gobernador {
  display: flex;
  flex-direction: column;
  position: relative;
}

.secction--info {
  color: var(--bg-blue);
  padding: 20px;
}

.article--gobernador {
  position: relative;
  height: auto;
  padding: 50px 20px;
  z-index: 1;
  background-color: #003b67e8;
}

.article--gobernador>h2 {
  text-align: center;
  margin: 20px auto;
}

.article--gobernador>p {
  text-align: justify;
}

.secction--left {
  display: flex;
  justify-content: start;
  position: relative;
}

.secction--right {
  display: flex;
  justify-content: end;
  position: relative;
}

.social__icons__gobernador {
  display: flex;
  justify-content: space-evenly;
  margin: 15px auto auto auto;
  width: 70%;
}

.social__icons__gobernador img {
  height: 70px;
}

.cont__img__gob {
  background-color: var(--white-color);
  padding: 40px 0px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

.cont__img__gob>img {
  display: block;
  margin: auto;
  width: 100%;
  padding: 20px;
}

/* Article info */

.article--info {
  text-align: justify;
}

.article--info>h2 {
  text-align: center;
}

.article--info>h2,
.article--info>h3 {
  margin-bottom: 15px;
}

.article--info>p {
  text-align: justify;
}

/* Secction legend */

.secction--legend {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 60px 0px;
}

.article--legend--img {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0%;
}

.article--legend--header,
.article--legend--hero {
  text-align: justify;
  padding: 75px 20px;
  position: relative;
}

.article--legend--header a {
  color: var(--yellow-color);
  text-decoration: none;
}

.article--legend--header h1,
.article--legend--hero h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 30px;
}

.article--legend--header p,
.article--legend--hero p {
  font-size: 20px;
}

/* Secction Show News Styles */
.secction__top__news {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: var(--bg-blue);
  padding-top: 50px;
  position: relative;
}

.secction__top__news__title {
  font-size: 45px;
  text-transform: uppercase;
  padding-bottom: 5px;
  text-align: center;
}

.secction__top__news__category {
  font-size: 22px;
  text-transform: uppercase;
  padding-bottom: 1.5rem;
  color: var(--bg-blue);
}

.secction__top__news__img {
  max-width: 70%;
  max-height: 400px;
  object-fit: cover;
}

/* Todas las noticias */

.noticias__container {
  display: flex;
  flex-direction: column;
}

.noticias__container__meta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 100vh;
  background-image: url("/img/fondos/wallpaper-noticias.layout.jpg");
  background-position: center;
  padding: 2.5rem 0rem;
}

.noticias__container__meta__img {
  position: relative;
  width: 60%;
  z-index: 1;
}

.wrapper__meta__btns {
  width: 60%;
  position: relative;
}

.noticias__container__meta__btns {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  overflow: hidden;
  scroll-snap-type: x;
  scroll-behavior: smooth;
  transition: all 0.2s ease-in-out;
}

.control__meta__btn {
  position: absolute;
  height: 100%;
  width: 10%;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.control__meta__btn--left {
  left: -25%;
}

.control__meta__btn--right {
  right: -25%;
}

.noticias__container__meta__btn {
  padding: 0.3rem;
  border: 1px solid transparent;
  color: var(--white-color);
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  width: 8.5rem;
  scroll-snap-align: center;
  border-radius: 0.5rem;
}

.wrapper__noticias {
  min-height: 100vh;
  display: grid;
  align-items: start;
}

.wrapper__noticias__link {
  text-decoration: none;
}

.wrapper__noticia__img {
  width: 25%;
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.wrapper__noticia {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  transition: all 0.2s ease-in-out;
  color: var(--bg-blue);
  cursor: pointer;
}

.wrapper__noticia:hover {
  background-color: var(--bg-blue);
  color: var(--white-color);
}

.wrapper__noticias__seacrh {
  position: relative;
}

.wrapper__noticias__seacrh input {
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
}

.wrapper__noticias__pagination {
  width: 70%;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 10px;
}

.wrapper__noticias__pagination nav div:nth-child(1) {
  display: flex;
  margin: auto;
  width: 100%;
  gap: 30px;
  justify-content: center;
  padding: 10px 0px;
  align-items: center;
}

.wrapper__noticias__pagination nav:nth-child(1) a {
  text-decoration: none;
  display: inline-block;
  padding: 5px;
  border: 1px solid;
  border-radius: 6px;
}

.wrapper__noticias__pagination nav:nth-child(1) a:nth-child(1) {
  border-color: red;
  color: red;
}

.wrapper__noticias__pagination nav:nth-child(1) a:nth-child(2) {
  color: green;
  border-color: green;
}

.wrapper__noticias__pagination span {
  background-color: var(--bg-blue);
  border-radius: 8px;
  color: var(--white-color);
  padding: 5px;
}

/* Footer */

/*Secction info styles */
.secction__footer__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white-color);
  background-color: var(--white-color);
  gap: 5px;
  position: relative;
}

.article__footer {
  background-color: var(--bg-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 30px;
}

.btn__action--3 {
  background-color: var(--white-color);
  color: var(--bg-blue);
  padding: 20px;
  margin: 10px 0px;
  margin-left: 30px;
  position: relative;
  z-index: 0;
}

.btn__action--3:hover {
  background-color: var(--white-color);
  color: var(--bg-blue);
}

.btn__action--3::before {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  width: 8px;
  height: 100%;
  top: 0px;
  left: -18px;
  background-color: #fff;
  box-shadow: 18px 0px 8px 1px #00000085;
}

.socials__btn {
  display: flex;
  align-items: center;
}

.social__icon {
  display: block;
  width: 80px;
}

/* Secction info plus */
.secction__info__plus {
  position: relative;
  background-color: var(--bg-blue);
  padding: 45px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__links {
  margin: auto;
  width: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.footer__link {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social__plus {
  width: 70px;
  height: 70px;
  text-decoration: none;
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.text__plus {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.text__plus li {
  list-style: none;
}

.text__plus a {
  text-decoration: none;
  color: var(--white-color);
  display: block;
  margin: 0px 10px;
}

/* Footer secction copy */
.secction__copy {
  background-color: var(--white-color);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.logo__sistema {
  display: block;
  margin: auto;
  width: 35vh;
}

/* Media querys Responsive */
@media screen and (min-width: 520px) {
  .nav__link a {
    font-size: 16px;
  }

  .article__title {
    font-size: 50px;
  }

  .title__sliders span {
    font-size: 30px;
  }

  /* Secction gobernador */
  .article--gobernador--legend {
    width: 55%;
  }

  /* Secction legend */
  .article--legend--header {
    width: 70%;
  }

  .article--legend--hero {
    width: 80%;
  }

  .article--legend--colum {
    display: flex;
    gap: 40px;
  }

  .article--legend--colum p {
    width: 50%;
  }

  .footer__links {
    width: 70%;
    padding: 25px;
  }

  .social__plus {
    width: 80px;
    height: 80px;
  }

  .text__plus {
    font-size: 25px;
  }

  .btn {
    width: 45%;
  }

  .wrapper__meta__btns {
    width: 70%;
  }

  .cont__img__gob>img {
    height: 100%;
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .player__img {
    width: 110px;
  }

  .limiter__line {
    height: 100%;
    width: 2px;
  }

  .article__actions {
    font-size: 18px;
    max-height: 400px;
  }

  .secction--actions {
    grid-template-columns: repeat(2, 1fr);
    min-height: 420px;
  }

  .article__actions::after {
    content: "";
    display: block;
    position: absolute;
    right: -10px;
    height: 100%;
    width: 20px;
    background: var(--yellow-color);
    top: 0px;
    box-shadow: 6px 0px 9px -2px black, inset 5px 0px 10px 0px black;
  }

  .secction__actions__btns {
    height: 100px;
    flex-direction: row;
  }

  .secction__actions__btns__submenu {
    top: 100px;
  }

  .secction__footer__info {
    flex-direction: row;
    gap: 10px;
  }

  .article__footer {
    margin-top: 20px;
    width: 50%;
  }

  .img__actions {
    display: block;
  }

  .btns__actions {
    height: initial;
  }

  /* Secction Gobernador */
  .secction--gobernador {
    flex-direction: row;
    height: 360px;
  }

  .article--gobernador {
    width: 50%;
    z-index: 1;
    background-color: transparent;
  }

  .article--gobernador::after {
    content: "";
    display: block;
    position: absolute;
    right: -10px;
    height: 100%;
    width: 10px;
    background: var(--yellow-color);
    top: 0px;
    box-shadow: 5px 0px 5px -2px black, inset 4px 0px 6px 0px black;
  }

  .cont__img__gob {
    width: 50%;
    position: static;
  }

  /* Secction legend */
  .article--legend--header h1,
  .article--legend--hero h2 {
    font-size: 50px;
  }

  .wrap__actions {
    padding: 20px 90px 20px 10px;
  }

  .noticias__container {
    flex-direction: row;
  }

  .noticias__container__meta {
    width: 50%;
  }

  .control__meta__btn--left {
    left: -18%;
  }

  .control__meta__btn--right {
    right: -18%;
  }

  .wrapper__noticias {
    width: 50%;
  }
}

@media screen and (min-width: 1024px) {
  .nav__links {
    position: initial;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 85%;
    height: 100%;
    background-color: transparent;
    transform: translateY(0vh);
    box-shadow: none;
  }

  .dropdown__btn {
    display: flex;
  }

  .dropdown__links {
    position: absolute;
    box-shadow: 0px 6px 10px -2px #00000050;
    visibility: hidden;
    transition: all 200ms ease-in-out;
  }

  .dropdown__links--show {
    visibility: visible;
  }

  .line {
    display: block;
  }

  .bar {
    display: none;
  }

  .wrap__actions {
    padding: 20px 120px 20px 30px;
  }

  /* Secction info */
  .secction--info {
    padding: 50px 140px;
  }
}

@media screen and (min-width: 1200px) {
  .article__title {
    font-size: 50px;
  }

  .article__descrip {
    width: 560px;
    max-height: 140px;
  }

  .secction--twitter {
    display: block;
  }

  .wrap__actions {
    padding: 20px 120px 20px 50px;
  }

  .article__actions {
    font-size: 20px;
  }

  .img__actions {
    width: 16%;
  }

  .secction__footer__info {
    grid-template-columns: repeat(2, 1fr);
  }

  .control__meta__btn {
    display: none;
  }

  /* Secction gobernador */
  .secction--right,
  .secction--left {
    padding: 60px 0px;
  }
}

@media screen and (min-width: 1400px) {
  .img__actions {
    width: 13%;
  }

  .wrapper__noticia__img {
    width: 25%;
    object-fit: cover;
  }
}

/* Utilitis */
.btn {
  display: block;
  border: 5px solid var(--white-color);
  background-color: transparent;
  color: var(--white-color);
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--white-color);
  color: var(--bg-blue);
}

.nav__links--show {
  transform: translateY(0vh);
}

.d-none {
  display: none;
}

.m-auto {
  margin: auto;
}

/*.grayscale {
  -webkit-filter: grayscale(90%);
  -webkit-filter: grayscale(0.9);
  filter: grayscale(90%);
}*/

.blur__body {
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0px;
  bottom: 0px;
  margin: auto;
  background-color: #00000075;
  backdrop-filter: blur(4px);
}

.shadow__top {
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  z-index: 10;
  width: 100%;
  height: 20px;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.55),
      rgba(255, 255, 255, 0));
}

.shadow__bottom {
  position: absolute;
  right: 0px;
  left: 0px;
  bottom: 0px;
  z-index: 10;
  width: 100%;
  height: 20px;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.55),
      rgba(255, 255, 255, 0));
}