@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  display: none;
}

html {
  font-size: 13px;
  background-color: var(--color-white);
}

:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-nav-font: rgba(0, 0, 0, 0.6);
  --color-nav-font-hover: #ff8a00;
  --color-black-opacity: #00000079;
  --color-secondary: #f4f4f4;
  --color-btn-hover: #ffa43d;
  --font-family-main: "Lato", sans-serif;
  --font-family-secondary: "Poppins", sans-serif;
}

/*HEADER*/

.header {
  width: 100vw;
  height: 4.5rem;
  position: fixed;
  left: 0;
  top: 0;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-white);
  z-index: 100;
}

.header-btn {
  display: none;
}

/*HEADER LOGO*/

.header-logo {
  height: 100%;
  overflow: hidden;
}

.header-logo img {
  height: 100%;
  width: auto;
}

a {
  text-decoration: none;
  color: var(--color-white);
}

a:visited {
  color: var(--color-white);
}

/*HEADER NAV*/

.header-nav {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-nav a {
  text-decoration: none;
  padding: 0.5rem;
  margin-right: 0.2rem;
  font-family: var(--font-family-main);
  position: relative;
  color: var(--color-black);
  text-align: center;
  font-size: 1.2rem;
}

.header-nav a::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -5px;
  border-bottom: 2px solid var(--color-nav-font-hover);
  width: 0;
  transition: 0.5s ease-in-out;
}

.nav-item.active::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -5px;
  border-bottom: 2px solid var(--color-nav-font-hover);
  width: calc(100% + 10px);
  color: var(--color-nav-font-hover);
}

.nav-item.active {
  color: var(--color-nav-font-hover);
}

.header-nav a:hover:before {
  width: calc(100% + 10px);
}

.header-nav a:hover {
  color: var(--color-nav-font-hover);
  transition: 0.2s ease-in-out;
}

/*HEADER CONTACT*/

.header-contact {
  background-color: var(--color-nav-font-hover);
  padding: 0.75rem 1.25rem;
  border-radius: 2rem;
}

.header-contact:hover {
  background-color: var(--color-btn-hover);
  cursor: pointer;
}

.header-contact a {
  text-decoration: none;
  font-family: var(--font-family-main);
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.mobile {
  display: none;
}
/*PRESENTATION*/

.presentation {
  width: 100vw;
  height: calc(100vh - 0.5rem);
  display: flex;
  position: relative;
}

/*PRESENTATION IMG*/

.presentation img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/*PRESENTATION DESCRIPTION*/

.presentation-description__opacity {
  position: absolute;
  left: 0;
  top: 25%;
  width: 50%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-black-opacity);
  border-radius: 0 15rem 15rem 0;
}

.description {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  justify-content: center;
}

.description-title {
  width: 80%;
  min-height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.description h2 {
  color: var(--color-white);
  font-family: var(--font-family-main);
  text-transform: uppercase;
  text-align: center;
  line-height: 2rem;
  font-size: 1.8rem;
  overflow: hidden;
  font-weight: 800;
}

.description-text {
  min-height: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.description p {
  color: var(--color-white);
  font-family: var(--font-family-secondary);
  font-size: 1.5rem;
  width: 100%;
  text-align: center;
  padding: 0.5rem;
  overflow: hidden;
}

.description-btn {
  width: 50%;
  min-height: 10%;
  margin: 0 20% 0 20%;
  background-color: var(--color-nav-font-hover);
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 2rem;
  text-transform: uppercase;
  color: var(--color-white);
  font-family: var(--font-family-main);
  font-weight: 700;
  font-size: 1.3rem;
}

.description-btn:hover {
  background-color: var(--color-btn-hover);
  cursor: pointer;
}

.custom-shape-divider-bottom-1717470886 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1717470886 svg {
  position: relative;
  display: block;
  width: calc(135% + 1.3px);
  height: 100px;
}

.custom-shape-divider-bottom-1717470886 .shape-fill {
  fill: var(--color-white);
}

/*SERVICES*/

.services {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background-color: var(--color-white);
  width: 100%;
  min-height: 500px;
  padding: 0 1rem 6.5rem 1rem;
  overflow: hidden;
}

.title-service {
  width: 100%;
  text-align: center;
  font-family: var(--font-family-main);
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 500;
  padding: 0 0 2rem 0;
}

.service {
  display: flex;
  width: 30%;
  min-width: 25rem;
  margin: 0 auto 0.5rem auto;
  padding: 1rem 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-img {
  width: 100%;
  max-width: 20rem;
  height: 20rem;
  margin: 0;
  padding: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 10px 8px 15px var(--color-black-opacity);
}

.service-img.center {
  display: flex;
}

.service-img img {
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 1.5rem;
}

.service-description {
  display: flex;
  margin-top: 2rem;
  flex-direction: column;
}

.description-container-title {
  display: flex;
  margin-bottom: 1rem;
  justify-content: center;
  align-items: center;
}

.description-container-title i {
  font-size: 2rem;
  padding: 0 1.25rem 0 0;
  border-right: 2px solid var(--color-black);
}

.description-container-title h2 {
  padding: 0.5rem 0.5rem;
  font-family: var(--font-family-main);
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}

.service-description p {
  text-align: center;
  min-height: 10rem;
  font-family: var(--font-family-secondary);
  font-weight: 300;
  font-size: 1.25rem;
}

/*ABOUT US*/

.about-us {
  width: 90%;
  min-height: 20rem;
  margin: 2.5rem auto;
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
  background-color: var(--color-secondary);
  justify-content: center;
  align-items: center;
  border-radius: 2rem 0;
  box-shadow: 0 0 5px var(--color-black);
}

.container-text {
  min-width: 5rem;
  text-align: center;
}

.container-text p {
  font-family: var(--font-family-secondary);
  font-size: 1.5rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.container-img img {
  width: 100%;
}

.experiences {
  width: 100%;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.experience {
  width: 18%;
  min-width: 10rem;
  display: flex;
  margin: 1rem auto;
  flex-direction: column;
  align-items: center;
}
.experience-title {
  width: 100%;
  padding: 0.5rem;
  text-align: center;
}

.experience-title h2 {
  font-family: var(--font-family-secondary);
  overflow: hidden;
  font-size: 2rem;
  text-transform: capitalize;
}

.experience-description p {
  font-family: var(--font-family-secondary);
  overflow: hidden;
  font-size: 1.25rem;
  text-align: center;
}

.custom-shape-divider-bottom-17174708861 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-17174708861 svg {
  position: relative;
  display: block;
  width: calc(135% + 1.3px);
  height: 100px;
}

.custom-shape-divider-bottom-17174708861 .shape-fill {
  fill: var(--color-nav-font-hover);
}

.custom-shape-divider-top-1717566952 {
  margin-top: -0.5rem;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-top-1717566952 svg {
  position: relative;
  display: block;
  width: calc(134% + 1.3px);
  height: 100px;
}

.custom-shape-divider-top-1717566952 .shape-fill {
  fill: var(--color-nav-font-hover);
}

/*LAUNCHS*/

.news {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background-color: var(--color-nav-font-hover);
  width: 100%;
  min-height: 500px;
  margin: 0;
  padding: 3rem 1rem;
  overflow: hidden;
}

.title-news {
  width: 100%;
  text-align: center;
  font-family: var(--font-family-main);
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  padding: 0 0 2rem 0;
}

.new-launch {
  background-color: var(--color-white);
  position: relative;
  width: 25%;
  min-width: 20rem;
  margin: 1rem auto;
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 10px 8px 15px var(--color-black-opacity);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.launch-img {
  width: 80%;
  height: auto;
}

.launch-img img {
  width: 100%;
  height: auto;
}

.launch-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.launch-description h2 {
  font-size: 1.5rem;
  font-family: var(--font-family-main);
  font-weight: 500;
  overflow: hidden;
}

.launch-description i {
  font-size: 2.5rem;
  display: flex;
  padding: 1rem;
  color: var(--color-nav-font-hover);
}

.launch-description i:hover {
  scale: 1.05;
  cursor: pointer;
  color: var(--color-btn-hover);
}

.new {
  position: absolute;
  width: 5rem;
  height: 5rem;
  top: 10px;
  left: 10px;
  overflow: hidden;
}

.new img {
  width: 100%;
  height: auto;
}

/*MAP*/

.map {
  width: 100%;
  min-height: 500px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
}

.map-description {
  padding: 2rem;
  width: 40%;
  min-width: 25rem;
}

.map-description h3 {
  font-size: 2rem;
  font-family: var(--font-family-main);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.map-description p {
  font-size: 1.5rem;
  font-family: var(--font-family-secondary);
  overflow: hidden;
}

.map-ubication {
  padding: 2rem;
  width: 40%;
  min-width: 25rem;
}

.map-ubication iframe {
  width: 100%;
  height: 500px;
}
/*FOOTER*/

footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: rgb(255, 255, 255);
  background: var(--color-nav-font-hover);
  align-items: center;
  margin: 0 auto;
  margin-top: 1.5rem;
  box-shadow: 0 0 10px var(--color-black);
}

.footer-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}

.footer-container-info {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info h6 {
  font-size: 1.5rem;
  font-weight: 900;
  padding: 5px;
  font-family: var(--font-family-main);
}

.info p {
  font-size: 1.25rem;
  padding: 5px;
  font-family: var(--font-family-secondary);
}

.footer-section {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-section-info img {
  display: flex;
  width: 80%;
  height: 66x;
  margin: 0 auto;
}

.social-media-icons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-media-icons a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  margin: 10px;
  border: 2px solid #000000;
  border-radius: 50%;
  transition: all 0.2s ease-in;
}

.social-media-icons i {
  color: #000000;
  font-size: 1.3rem;
  transition: all 0.2s ease-in;
}

.social-media-icons a:hover {
  background-color: #000000;
  box-shadow: 0px 0px 10px #000000;
  scale: 1.1;
}

.social-media-icons a:hover i {
  color: #ffffff;
  scale: 1.1;
}

.footer-texto {
  font-family: var(--font-family-main);
  font-weight: 700;
}

.nav-btn {
  display: none;
}

@media screen and (max-width: 900px) {
  .header {
    box-sizing: border-box;
    position: fixed;
    width: 100vw;
    height: auto;
    z-index: 15;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    z-index: 1;
  }

  .header-logo {
    width: 100vw;
    height: auto;
    z-index: 10;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .header-logo img {
    width: 300px;
    height: 75px;
  }

  .header-nav {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .mobile {
    display: flex;
    width: 100vw;
    flex-direction: column;
    align-items: center;
    height: 0;
  }

  .mobile .header-nav {
    display: flex;
    flex-direction: column;
    width: 100vw;
    justify-content: center;
    align-items: center;
  }

  .mobile .header-contact {
    display: flex;
    width: 50%;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0;
  }

  .mobile.mobile-menu {
    height: auto;
    transition: 3s;
  }

  .nav-btn {
    display: flex;
    position: absolute;
    top: 10px;
    right: 0;
    font-size: 3rem;
    padding: 5px;
    margin: 0 15px 0 0;
    z-index: 25;
  }

  /* PRESENTATION */
  .presentation-description__opacity {
    width: 90%;
  }
  footer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background: rgb(255, 255, 255);
    background: var(--color-nav-font-hover);
    align-items: center;
    margin: 0 auto;
    margin-top: 1.5rem;
    box-shadow: 0 0 10px var(--color-black);
  }

  .footer-container {
    width: 100%;
    display: block;
    flex-wrap: wrap;
    padding: 10px;
  }

  .footer-container-info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    text-align: center;
  }

  .info h6 {
    font-size: 1.5rem;
    font-weight: 900;
    padding: 5px;
    font-family: var(--font-family-main);
  }

  .info p {
    font-size: 1.25rem;
    padding: 5px;
    font-family: var(--font-family-secondary);
  }

  .footer-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-section-info img {
    display: flex;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .social-media-icons {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .social-media-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    margin: 10px;
    border: 2px solid #000000;
    border-radius: 50%;
    transition: all 0.2s ease-in;
  }

  .social-media-icons i {
    color: #000000;
    font-size: 1.3rem;
    transition: all 0.2s ease-in;
  }

  .social-media-icons a:hover {
    background-color: #000000;
    box-shadow: 0px 0px 10px #000000;
    scale: 1.2;
  }

  .social-media-icons a:hover i {
    color: #ffffff;
    scale: 1.1;
  }

  .service-img {
    width: 100%;
    max-width: 20rem;
    height: 20rem;
    margin: 0;
    padding: 0;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 10px 8px 15px var(--color-black-opacity);
  }

  .service-img.center {
    display: flex;
  }

  .service-img img {
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 1.5rem;
  }
}
