@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Poppins, Arial, sans-serif;
  background-color: #080a0d;
  color: #d4dbe4;
  font-size: 16px;
  font-weight: 500;
}

#header {
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}

.header-section {
  background-image: url('Imagenes/head-image.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.title {
  margin-top: -125px;
}

h1 {
  font-size: 40px;
  letter-spacing: 10px;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 2.25;
}

p {
  font-size: 17.5px;
  letter-spacing: 2px;
}

.tabs-container {
  position: absolute;
  bottom: 0px;
  display: flex;
  width: 100%;
  height: 140px;
  background-color: #062D61;
}

.tabs-container a:hover {
  background-color: #d3ac00;
  color: #000000;
}

.sticky {
  position: fixed;
  top: 0;
}

.image-container {
  width: 60%;
  min-width: 810px;
  overflow: hidden;
  margin-left: -230px;
  margin-right: -230px;
  margin-top: 5px;
}

.image-container img {
  width: 25%;
  height: auto;
}

.tabs-container a {
  text-decoration: none;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  letter-spacing: 2px;
}

.tabs-container button:hover a{
  color: #000000;
}

.section-1 {
  height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #062D61;
  color: #ffffff;
}

.section-2 {
  height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #D7DEDC;
  color: #292F36;
}

.section-3 {
  height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #0b0f05;
  color: white;
}

.section-4 {
  height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(250, 249, 249);
  color: #000000;
}

.section-5 {
  height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(250, 249, 249);
  color: #191a24;
}

.btn-container {
  text-align: left;
  width: auto;
  padding: 50px 0px 0px 0px;
}

.btn-info {
  background-color: #000d1e;
  color: #fff;
  padding: 16px 36px;
  border: none;
  border-radius: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-info:hover {
  background-color: #d3ac00;
}

.content-columns {
  display: flex;
  align-items: center;
}

.media-section {
  flex: 1;
}

.media-section img {
  max-width: 100%;
  height: auto;
  max-height: 500px; /* Agrega esta línea para establecer un tamaño máximo vertical */
  margin-left: 100px;
}

.info-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* DROPDOWNS */
button {
  border: 0;
  background: none;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
}

.dropdowns {
  display: flex;
  align-self: stretch;
}

.dropdown {
  position: relative;
  padding: 26px;
}

.dropdown-button {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 70px;
}

.dropdown:hover {
  background-color: #d3ac00;
  cursor: pointer;
}

.dropdown-button span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #ffffff;
  margin-left: 40px;
}

.dropdown-button:hover span {
  color: #000000;
}

.dropdown-button:hover i {
  color: #000000;
}

.dropdown-button i {
  font-size: 14px;
  color: rgb(255, 255, 255);
  margin-left: -55px;
  margin-right: 45px;
}

.dropdown:hover > .dropdown-menu {
  display: flex;
  flex-direction: column;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  background-color: #062D61;
  display: none;
}

.dropdown-menu button {
  padding: 12px 24px;
}

.dropdown-menu button:hover {
  background-color: #d3ac00;
}

/* BOTON MENU */

.menu-btn {
  width: 68px;
  height: 68px;
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: rgb(0, 0, 0);
  cursor: pointer;
  scale: 0;
  transition: background-color 0.3s ease;
  z-index: 3;
  margin-left: auto;
  margin-right: 24px;
} 

.menu-btn i {
  font-size: 24px;
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  background-color: #062D61;
  color: white;
  padding: 10vh 11vw 8vh 11vw;
  display: flex;
  flex-direction: column;
  font-size: 35px;
  transform: translateX(100%);
  z-index: 2;
  inset: 0;
}

.menu-head {
  font-size: 12px;
  color: #ffffff;
  padding: 16px 0;
  border-bottom: 1px solid white;
  margin-bottom: 56px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.close-menu-button {
  font-size: 25px;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.menu-item {
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
}

.menu-item:hover {
  transform: translateY(-10px);
}

.menu.active + .menu-btn {
  background-color: #000d1e;
}

/* DESACTIVAR SCROLL */

.no-scroll {
  overflow: hidden;
}

/*? footer containers */

footer {
  bottom: 0px;
  background-color: rgb(250, 249, 249);
  min-width: 300px;
  bottom: 0px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 1320px;
  padding: 16px;
  color: #000000;
}

/*? footer columns */
.footer-columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
  align-items: start;
  flex: 2 0 140px;
  width: 100%;
  gap: 50px;
  padding: 24px 8px 16px 8px;
  margin: 0 auto;
  border-top: 1px solid var(--text-gray);
}

.footer-columns ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-columns ul a {
  color: var(--text-color);
  text-decoration: none;
}

.footer-columns ul a:hover{
  text-decoration: none;
}

.footer-columns ul li {
  margin-bottom: 16px;
}

.footer-columns h3 {
  color: var(--footer-heading-gray);
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 1.125rem;
}

.footer-centering {
  margin: 0 auto;
}

.footer-columns > section {
  min-width: 150px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  gap: 8px;
}

.footer-logo h2 {
  font-family: serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 5;
  letter-spacing: 20px;
}

/* CAMBIO DE TAMAÑO*/
@media screen and (max-width: 1255px) {
  .media-section img {
    max-height: 400px;
  }

  .section-5 .info-column h1 {
    font-size: 30px;
  }
}

@media screen and (max-width: 1100px) {
  .dropdowns {
    flex-direction: column;
  }
  
  .dropdown {
    padding: 50px;
  }
  
  .dropdown-button {
    gap: 20px;
  }
  
  .dropdown-button i {
    display: none;
  }

  .dropdown-button span {
    margin-left: 10px;
  }

  .section-1 {
    height: 100vh;
  }

  .section-2 {
    height: 100vh;
  }
  
  .section-3 {
    height: 100vh;
  }
  
  .section-4 {
    height: 100vh;
  }

  .section-5 {
    height: 100vh;
  }

  .info-column h1 {
    font-size: 25px;
  }

  .info-column p {
    font-size: 15px;
  }

  .content-columns {
    flex-direction: column;
    text-align: center;
  }

  .media-section {
    margin: 20px 0;
  }

  .media-section img {
    max-width: 80%;
    margin: 0 auto;
  }

  .info-column {
    order: 1;
    margin-bottom: 0px;
  }

  .tabs-container {
    height: 100px;
  }

  .tabs-container a {
    display: none;
  }


  .image-container {
    width: 10%;
    min-width: 500px;
    margin-left: -150px;
    margin-right: none;
    margin-top: 25px;
  }

  .dropdown {
    display: none;
  }  
  
  .menu-btn {
    display: flex;
    color: white;
    margin-top: 25px;
  }
  
  .title h1 {
    font-size: 30px;
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 2.25;
  }
}

@media screen and (max-width: 450px) {

  .media-section img {
    max-width: 50%;
    max-height: none;
  }

  .section-1 {
    height: 90vh;
  }

  .section-2 {
    height: 90vh;
  }
  
  .section-3 {
    height: 90vh;
  }

  .section-3 .info-column h1 {
    font-size: 18px;
    letter-spacing: 5px;
  }
  
  .section-4 {
    height: 90vh;
  }
  
  .section-5 {
    height: 90vh;
  }

  .btn-info {
    padding: 10px 25px;
 }
}
/*? mobile */

@media (max-width: 800px) {
  .footer-top {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 16px 8px 32px 8px;
  }

  .footer-bottom {
      display: flex;
      align-items: space-between;
      justify-content: center;
      margin: 0 auto;
  }

  .section-3 .info-column h1 {
    font-size: 16px;
  }
}

@media screen and (max-width: 1200px) {
  .info-column {
    margin-left: 45px;
    margin-right: 45px;
  }
}

@media screen and (max-width: 575px) {
  h1 {
    font-size: 25px;
    margin-bottom: 15px;
  }

  p {
    font-size: 12.5px;
    letter-spacing: 1.5px;
  }

  .info-column h1 {
    font-size: 20px;
  }

  .info-column p {
    font-size: 12.5px;
  }
  
  .section-5 .info-column h1 {
    font-size: 18px;
    letter-spacing: 5px;
  }
}

@media screen and (min-width: 1100px) {
  .menu {
    display: none;
  }
}

@media screen and (max-width: 400px) {
  .title h1 {
    font-size: 25px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .info-column h1 {
    font-size: 17.5px;
  }

  .info-column p {
    font-size: 12.5px;
  }
}