@font-face {
  font-family: "Avenir";
  src: url("./assets/fonts/Avenir\ LT\ Std\ 85\ Heavy.otf");
  font-display: swap;
}

@font-face {
  font-family: "Lulo";
  src: url("./assets/fonts/Lulo\ Clean\ One\ Bold.otf");
  font-display: swap;
}

@font-face {
  font-family: "Impact";
  src: url("./assets/fonts/impact.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Helvetica";
  src: url("./assets/fonts/Helvetica\ W01\ Roman.ttf");
}

:root {
  --color-black: #1a1a1a;
  --color-red: #ea2306;
  --color-white: #ffffff;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Avenir", sans-serif;
}

.gutenberg-content {
  margin: 1rem;
}

.nav-list__item.destacado a {
  background-color: var(--color-red);
  color: var(--color-white);
}

.nav-list__item.destacado a:hover {
  background-color: var(--color-black);
  color: var(--color-white);
  border-bottom: 5px solid var(--color-red);
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 2rem;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
  z-index: 15;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 50px;
  height: 50px;
  border: 1px solid var(--color-red);
  border-radius: 50%;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-red);
  transition: all 0.3s ease;
}

.hamburger.x span:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: 9px;
}

.hamburger.x span:nth-child(2) {
  opacity: 0;
}

.hamburger.x span:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  bottom: 7px;
}

.header__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.header__logo img {
  width: 186px;
  height: auto;
  position: relative;
  z-index: 15;
}

.header__nav {
  position: fixed;
  z-index: 10;
  top: 210px;
  left: 40px;
  padding: 10px;
}

.nav-list {
  list-style: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.2rem;
}

.nav-list__item a {
  background-color: var(--color-white);
  padding: 5px 10px;
  color: var(--color-black);
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Lulo";
  transition: all 350ms linear;
}

.nav-list__item a:hover {
  background-color: var(--color-red);
  color: var(--color-white);
}

.header__menu-button {
  position: fixed;
  z-index: 10;
  top: 55px;
  right: 85px;
  background-color: var(--color-red);
  padding: 10px;
  border-radius: 50%;
  color: var(--color-white);
  text-decoration: none;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  text-align: center;
  font-family: "Lulo";
}

/* Hero */
.hero__image {
  width: 100%;
  height: 65vh;
  min-height: 240px;
  object-fit: cover;
}

/* Descripción */
.description {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
  padding: 2rem 10% 0;
}

.description__text {
  width: 40%;
  padding: 20px;
}

.description__highlight {
  position: relative;
  width: 40%;
  height: 100%;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 0 5rem 5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}

.description__highlight h2 {
  font-family: "Lulo";
  font-size: 2rem;
  letter-spacing: -4px;
}

.description__highlight::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  background-color: var(--color-black);
  left: 0;
  /* Ajusta según sea necesario */
}

.description__highlight::before {
  top: -100px;
}

.highlight__button {
  background-color: var(--color-red);
  color: var(--color-white);
  padding: 10px 20px;
  text-transform: uppercase;
  font-family: "Lulo";
  text-decoration: none;
  transition: all 350ms linear;
}

.highlight__button:hover {
  background-color: dar var(--color-red);
}

/* Features */
.features {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* background: url("assets/img/caracteristicas.jpg") no-repeat top center; */
  background-size: cover;
  color: var(--color-white);
  padding: 4rem 10% 115px;
  height: 438px;
}

.features::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 82px;
  background-image: url("./assets/img/waves.png");
  background-size: contain;
  background-repeat: repeat-x;
  background-position: bottom;
  z-index: 2;
}

.overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.card__link {
  position: relative;
  width: 30%;
  z-index: 2;
  text-decoration: none;
  color: white;
}

.features__card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.card__icon {
  width: 50px;
  height: 50px;
}

.card__title {
  font-size: 1.5em;
  margin: 10px 0;
  text-transform: uppercase;
  transition: transform 0.3s ease;
  font-family: "Lulo";
}

.features__card:hover .card__title {
  transform: scale(1.3);
}

.card__description {
  text-align: center;
  padding: 0 10px;
}

/* Ubicación */
.location {
  background-color: var(--color-white);
  text-align: center;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.location__title {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 25px 20px;
  text-transform: uppercase;
  width: 80%;
  max-width: 500px;
  font-family: "Lulo";
}

.location__subtitle {
  font-weight: bold;
  font-family: "Lulo";
}

.location__details {
  width: 70%;
  display: flex;
  justify-content: space-around;
  padding: 20px 0;
  gap: 1rem;
}

.details__address,
.details__hours {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: "Helvetica";
}

.location__map {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.embed-container {
  position: relative;
  height: 300px;
  width: 65%;
  margin: 0 auto;
}

.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.location__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Footer */
.footer__banner {
  display: flex;
}

.footer__banner img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
  gap: 2rem;
}

.footer__content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer__column {
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  text-align: center;
  font-family: "Lulo";
}

.footer__column h3 {
  font-size: 1.8rem;
  letter-spacing: -0.2em;
}

.footer__column p {
  font-size: 0.75rem;
}

.footer__column a {
  text-decoration: none;
  color: var(--color-white);
  font-size: 0.7rem;
  transition: color 350ms linear;
}

.footer__column a:hover {
  color: var(--color-red);
  text-decoration: underline;
}

.footer__events a {
  color: var(--color-red);
}

.footer__events a:hover {
  color: var(--color-white);
}

.connect__social-links {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.connect__social-link {
  color: var(--color-white);
  text-decoration: none;
  margin: 5px;
}

.connect__social-link:hover {
  text-decoration: underline;
}

.connect__social-link img {
  width: 35px;
  height: auto;
}

.footer__policy {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__policy a {
  color: white;
  font-size: 14px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .menu-toggle {
    order: 3;
  }

  .hamburger {
    display: flex;
  }

  .header__logo {
    order: 2;
    width: auto;
  }

  .header__menu-button {
    position: static;
    order: 1;
    width: 50px;
    height: 50px;
    font-size: 0.6rem;
    z-index: 20;
  }

  .hamburger-menu {
    display: block;
    font-size: 30px;
  }

  .nav-list {
    align-items: center;
    padding-top: 5rem;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    display: none;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translateX(-100%);
  }

  .header__nav.show {
    transform: translateX(0);
  }

  .nav-list__item a {
    color: var(--color-red);
  }

  .close-menu {
    display: none;
  }

  .header__logo img {
    width: 120px;
  }

  .hero__image {
    height: 40vh;
  }

  .description {
    flex-direction: column;
    align-items: center;
    padding-bottom: 1rem;
  }

  .description__text,
  .description__highlight {
    position: static;
    width: 100%;
    padding: 2rem 1rem;
    align-items: center;
  }

  .description__highlight h2 {
    font-size: 1.5rem;
  }

  .description__highlight::before {
    display: none;
  }

  .features {
    flex-direction: column;
    height: 700px;
    gap: 2rem;
    padding: 4rem 10%;
  }

  .card__link {
    width: 80%;
  }

  .location__details {
    flex-direction: column;
    align-items: center;
    width: 90%;
    gap: 2rem;
  }

  .embed-container {
    width: 80%;
  }

  .details__address,
  .details__hours {
    width: 80%;
  }

  .footer {
    flex-direction: column;
    align-items: center;
  }

  .footer__content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .footer__contact,
  .footer__connect,
  .footer__jobs {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .header__logo img {
    width: 80px;
  }
}

@media (max-width: 350px) {
  .footer__column p {
    font-size: 0.55rem;
  }
}