@import url("https://fonts.googleapis.com/css2?family=Raleway&display=swap");
* {
  margin: 0;
  font-family: "Raleway", sans-serif;
}
/* Menu hamburguesa */
.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #FF00FF;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-icon:hover .bar {
  transform: scaleX(1.1);
}

#menu-toggle:checked + .header .header_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .menu-icon {
    display: flex;
  }
  .header_container {
    flex-direction: column;
  }
  .header .header_container {
    display: none;
    position: absolute;
    top: 10vh;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    z-index: 0;
  }

  #menu-toggle:checked + .header .header_container {
    display: flex;
  }
}

.header {
  height: 10vh;
  width: 78%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: white;
  position: sticky;
  top: 20px;
  z-index: 4;
  border-radius: 26px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  /* align-self: self-start; */
  transition: background-color 0.4s ease-in;
  padding: 11px;
  background-color: #000000d6;
}

header.scrolled {
  background-color: white;
  opacity: 0.98;
  transition: background-color 0.4s ease-in;
}
header.scrolled nav a {
  color: #4e7fc7;
}
.header__logo {
  height: 100%;
  margin-left: 4%;
  border-radius: 35%;
}

.header_container-a {
  font-size: 1em;
  color: #ff00ff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.4s ease-in-out;
}
/* .header_container-a:hover {
  color: white;
} */

.header_container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  height: 160%;
  gap: 25px;
  padding: 7%;
}

.first__container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* background: url(./img/beach-video.mp4) no-repeat fixed; */
  background-size: cover;
  position: relative;
}
video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.capa {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1c1c1d;
  opacity: 0.3;
  mix-blend-mode: overlay !important;
}
.first__container-logo {
  margin: auto;
  align-self: center;
  max-width: 380px;
  max-height: 60%;
  z-index: 3;

  border-radius: 34%;
  margin-top: inherit;
}

.second__container {
  height: 65vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #4e7fc7;
}

/* .footer {
  height: 20vh;
  background: url(./img/beach-6292382_1920.jpg) no-repeat fixed;
  background-size: cover;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.footer__img {
  height: 100%;
}
.footer__contact-h1 {
  color: white;
  font-size: 1em;
  align-self: flex-start;
  margin-right: 5%;
}
.footer__contact {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer__contact__container-p > p {
  font-size: 0.5em;
  color: white;
  padding-left: 3px;
  border-left: 1px solid white;
} */

/* General footer styling */
.footer {
  display: flex;
  background: url(./img/beautiful-tropical-beach-sea-ocean-with-coconut-palm-tree-umbrella-chair-blue-sky.jpg)
    no-repeat fixed;
  background-size: cover;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #f8f8f8;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.footer__img {
  max-width: 150px; /* Ajusta según sea necesario */
  height: auto;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer__contact-h1 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer__contact__container-p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* QR container styling */
.qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.qr-title {
  font-size: 10rem;
  color: black;
  margin: 0;
}
@media (max-width: 767px) {
  .qr-title {
    font-size: 1rem;
  }
}

.qr-container img {
  max-width: 147px; /* Ajusta el tamaño del QR */
  height: auto;
  border: 2px solid #adb5bd; /* Opcional: Estilo del borde */
  border-radius: 10px;
}

/* Desktop layout */
@media (min-width: 768px) {
  .footer {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }

  .footer__contact {
    align-items: flex-start;
    text-align: left;
    /* width: 47%; */
    height: 140px;
  }

  .qr-container {
    align-items: flex-end;
    text-align: right;
  }

  .footer__contact__container-p {
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }
}

.body-link {
  background-color: aliceblue;
  min-height: 100vh;
  gap: 5px;
  flex-direction: column;
  display: flex;
}
.body-link > * {
  margin: auto;
}
.denuncias-link {
  max-width: 800px;
  /* margin: 0 auto; */
  height: 800px;
}
@media (min-width: 767px) {
  .footer__contact__container-p > p {
    font-size: 1.3em;
  }
  .footer__contact-h1 {
    font-size: 2em;
  }
  .header_container-a {
    font-size: 1.5em;
  }
  .first__container-logo {
    max-width: 80%;
    max-height: 80%;
    /* background-color: #0000008f; */
    border-radius: 34%;
  }
}
.container-nosotros {
  display: flex;
  height: 500px;
  color: azure;
  background-color: rgb(13, 13, 13);
  justify-content: center;
  gap: 50px;

  align-items: center;
}
.container-nosotros__vertical {
  writing-mode: vertical-lr;
  transform: rotate(180deg);

  font-size: 60px;
}

/* Indicador visual */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  width: 30px;
  height: 30px;
  border: 2px solid #edeaea;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  animation: bounce 1.5s infinite;
}

.scroll-indicator::before {
  content: "";
  width: 10px;
  height: 10px;
  border: solid #ede5e5;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: block;
  margin-top: 5px;
  animation: arrow-blink 1.5s infinite;
}

/* Animaciones */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes arrow-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.firma {
  background: #023e8a;
  padding: 0rem 0;
  text-align: center;
  color: white;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-around;
  height: 1.5rem;
}

.container-header-subtitulo {
  font-family: "Raleway";
  font-size: 1.8rem;
  color: #ff00ff;
}
.container-header-subt {
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-start;
  margin-left: 1%;
}
@media (max-width: 1180px) {
  .container-header-subtitulo {
    font-family: "Raleway";
    font-size: 1.2rem;
    color: #ff00ff;
  }
}
@media (max-width: 500px) {
  .container-header-subtitulo {
    font-family: "Raleway";
    font-size: 0.8rem;
    color: #ff00ff;
  }
}
@media (max-width: 520px) {
  .firma {
    font-size: 0.6rem;
    display: flex;
    justify-content: space-around;
    height: 1.5rem;
  }
}
.seccion-first-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 20px;
}