* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.h1_global {
  font-size: 60px;
  text-align: center;
  color: #f5f5f5;
}
.h2_global {
  font-size: 40px;
  text-align: center;
}
.h3_global {
  color: white;
}
.span_global {
  text-align: center;
  color: black;
  padding: 10px;
}
.global_p {
  padding: 20px 10px;
  font-size: 20px;
  text-align: center;
  color: #f5f5f5;
}
.color_p {
  color: black;
}
.img_global {
  width: 100%;
  height: 80%;
  border-radius: 10px;
  box-shadow: 5px 5px 10px;
}

.header_container {
  width: 100%;
  height: 75px;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  position: fixed;
  z-index: 10;
  background-color: rgb(22, 22, 22);
}
.header_logo {
  width: 100px;
  height: 75px;
}
.nav_container {
  width: 50%;
  height: auto;
}
.nav_list {
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-evenly;
}
.nav_link {
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  color: #c5a46d;
  transition: transform 0.3s;
}
.nav_link:hover {
  transform: scale(1.2);
}
.header_container_movile {
  display: none;
}
.main_container {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.hero_container {
  width: 100%;
  height: 100vh;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-items: center;
  background-image: url("assets/Hombre-caza-menor.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero_container::before {
  width: 100%;
  height: 100vh;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}


.hero_container > * {
  position: relative;
  z-index: 2;
}
.hero_content {
  width: 100%;
  height: 200px;
  display: grid;
  place-items: center;
}
.wrapper {
  display: flex;
  flex-direction: column;
  height: 100px;
  justify-content: space-evenly;
  align-items: center;
}
.action_btn {
  position: relative;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 6px;
  letter-spacing: 3px;
  color: #fff;
  background: transparent;
  border: 1px solid black;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.action_btn::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 30%;
  width: 140%;
  height: 200%;
  border-radius: 50%;
  background-color: black;
  z-index: -1;
  transition: top 0.6s, left 0.6s;
}

.action_btn:hover::before {
  top: -35%;
  left: -20%;
}

.info_section {
  width: 100%;
  height: auto;
  display: grid;
  place-items: center;
  padding: 100px 20px;
}
.container_info_global {
  width: 100%;
  height: auto;
  display: grid;
  place-items: center;
  grid-template-columns: repeat(2, 1fr);
}
.separator_sections {
  width: 90%;
  display: grid;
  place-items: center;
  gap: 20px;
  padding: 30px 0;
}
.images_galery {
  width: 60%;
  height: auto;
  gap: 5px;
  padding: 20px;
  display: grid;
  place-items: center;
}
.img_main_carousel {
  width: 100%;
  border-radius: 10px;
  height: 500px;
}
.img_list {
  width: 100%;
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(3, 1fr);
}
.images_carousel {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}
.images_carousel:hover {
  transform: scale(1.1);
}
.videos_container {
  width: 90%;
  height: auto;
  display: grid;
  padding: 20px 0;
  gap: 10px;
  place-items: center;
  grid-template-columns: repeat(2, 1fr);
}
.video {
  width: 100%;
  height: 600px;
}
.territory_section {
  width: 100%;
  height: auto;
  display: grid;
  padding: 100px 20px;
  place-items: center;
  grid-template-columns: repeat(2, 1fr);
}
.container_btn {
  width: 100%;
  height: auto;
  display: grid;
  place-items: center;
}
.btn_maps {
  display: inline-block;
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease-in-out;
}
.btn_maps:hover {
  background: linear-gradient(135deg, #66bb6a, #388e3c);
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.logos_companies_container {
  width: 100%;
  height: auto;
  gap: 10px;
  display: grid;
  place-items: center;
  grid-template-columns: repeat(6, 1fr);
}
.logos {
  width: 100%;
  border-radius: 10px;
  box-shadow: 5px 5px 10px;
  transition: transform 0.3s;
}
.logos:hover {
  transform: scale(1.1);
}
.info_section_contact {
  width: 100%;
  height: 400px;
  display: grid;
  padding-top: 30px;
  place-items: center;
  background-color: rgb(216, 216, 216);
}
.contact_info {
  width: 80%;
  height: auto;
  display: grid;
  place-items: center;
}
.btn_contact {
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}
.btn_contact:hover {
  background: #1ebe5b;
  transform: scale(1.05);
}
.container_footer {
  width: 100%;
  height: auto;
  display: grid;
  place-items: center;
  background-color: rgb(0, 0, 0);
}
.footer_info {
  width: 90%;
  height: auto;
  display: grid;
  place-items: center;
  grid-template-columns: repeat(2, 1fr);
}
.contact_info_footer {
  display: grid;
  place-items: center;
  padding: 10px;
}
.span_footer {
  color: white;
}
.social_info_footer {
  display: grid;
  place-items: center;
  padding: 10px;
}
.icons_social_media {
  width: 50%;
  display: flex;
  justify-content: space-between;
}
.icons {
  font-size: 30px;
  color: white;
}
.copyright {
  width: 100%;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #888;
  background-color: rgb(49, 49, 49);
}
.spam {
  color: #888;
  text-decoration: none;
}
.spam:hover {
  color: var(--dorado);
}

@media screen and (max-width: 860px) {
  .header_container {
    display: none;
  }
  .hero_container {
    grid-template-columns: 1fr;
  }
  .h1_global {
    font-size: 30px;
  }
  .h2_global {
    font-size: 20px;
  }
  .global_p {
    font-size: 13px;
  }
  .img_global {
    width: 100%;
    height: 100%;
  }
  .container_info_global {
    grid-template-columns: 1fr;
  }
  .images_galery {
    width: 100%;
  }
  .img_main_carousel {
    width: 100%;
    height: 400px;
  }
  .img_list {
    width: 100%;
  }
  .videos_container {
    height: auto;
    grid-template-columns: 1fr;
  }

  .video {
    height: 200px;
  }
  .territory_section {
    grid-template-columns: 1fr;
  }
  .logos_companies_container {
    grid-template-columns: repeat(3, 1fr);
  }

  .header_container_movile {
    width: 100%;
    height: 75px;
    display: flex;
    z-index: 20;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    background-color: black;
    position: fixed;
  }

  .logo_img_movile {
    width: 100px;
    height: 75px;
  }

  #label_icon {
    display: none;
  }

  .label_icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 2;
  }

  .label_icon .line {
    width: 100%;
    height: 4px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .nav_list_movile {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background-color: black;
    flex-direction: column;
    list-style: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }

  .nav_item_movile {
    text-align: center;
    padding: 15px 0;
  }

  .nav_link_movile {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
  }

  #label_icon:checked ~ .nav_list_movile {
    max-height: 500px;
  }

  #label_icon:checked + .label_icon .line:nth-child(1) {
    transform: rotate(50deg) translateY(14px);
  }

  #label_icon:checked + .label_icon .line:nth-child(2) {
    opacity: 0;
  }

  #label_icon:checked + .label_icon .line:nth-child(3) {
    transform: rotate(-50deg) translateY(-14px);
  }
}
@media screen and (max-width: 630px) {
  .footer_info {
    display: grid;
    grid-template-columns: 1fr;
  }
}

html, body {
  overflow-x: hidden;
}
