/* =========================
   Section 1 – Hero
========================= */
.hero_section {
  position: relative;
  height: auto;
}
.hero-component {
  position: relative;
  z-index: 2;
}
.nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 4rem;
  margin-bottom: 0rem;
}
.nav a {
  font-weight: 500;
  font-size: var(--fs-6);
}
.nav a:hover {
  text-decoration: underline;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 5rem;
  height: auto;
}
.col1 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.col2 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-component .col2 img {
  width: 100%;
  height: auto;
  position: relative;
  top: 3rem;
}
.hero-component .col1 h1 {
  font-size: var(--fs-12);
  font-weight: bold;
  line-height: 1;
}
.hero-component .col1 p {
  font-size: var(--fs-10);
  font-weight: bold;
}
.hero-fondo {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  width: 100%;
  height: auto;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
@media screen and (max-width: 1300px) {
  .nav {
    margin-bottom: 2rem;
  }
  .hero-component h1 {
    font-size: var(--fs-11) !important;
  }
  .hero-component p {
    font-size: var(--fs-9) !important;
  }
}
@media screen and (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-gap: 0rem;
  }
  .hero-component .col2 img {
    width: 60%;
    height: auto;
    top: auto;
    left: 10%;
    bottom: 5rem;
  }
  .nav {
    column-gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .nav a {
    font-size: var(--fs-4);
  }
}
@media screen and (max-width: 500px) {
  .nav {
    column-gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .nav a {
    font-size: var(--fs-2);
  }
  .hero-component .col2 img {
    width: 70%;
    height: auto;
    top: auto;
    left: 10%;
    bottom: 2.5rem;
  }
}
@media screen and (max-width: 400px) {
  .nav a {
    font-size: var(--fs-1);
  }
}

/* =========================
   Section 2 – Intro
========================= */

.intro-component h1 {
  font-size: var(--fs-9);
  font-weight: 500;
}
.intro-component h2 {
  color: var(--naranja);
  font-size: var(--fs-7);
  font-weight: 500;
}

/* =========================
   Section 3 – Slider
========================= */

.slider-block {
  position: relative;
  width: 100%;
}
.mySwiper {
  width: 100%;
  height: auto;
  /* aspect-ratio: 16 / 9 !important; */
}
.mySwiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider-ui {
  position: relative;
  padding: 1.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
  width: 100%;
}
.slider-photographer {
  color: black;
  font-weight: 300;
  font-size: var(--fs-4);
  line-height: 1;
}
.slider-ui .swiper-pagination {
  position: static;
  width: auto !important;
}
.slider-ui .swiper-pagination-bullet {
  opacity: 1 !important;
  background-color: transparent !important;
  border: 1px solid var(--naranja);
  width: 0.75rem !important;
  height: 0.75rem !important;
}
.slider-ui .swiper-pagination-bullet-active {
  background-color: var(--naranja) !important;
}

@media screen and (max-width: 600px) {
  .slider-ui .swiper-pagination-bullet {
    width: 0.55rem !important;
    height: 0.55rem !important;
  }
  .slider-ui {
    position: relative;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    row-gap: 1rem;
    z-index: 5;
    width: 100%;
    flex-direction: column;
  }
}

.swiper-button-prev,
.swiper-button-next {
  color: #ffffff !important;
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: var(--animTransition);
  opacity: 0.9;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.2;
}

/* =========================
   Section 4 – Dots
========================= */
.dots-component {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 4rem;
}
.dot-wrapp {
  background-image: url(/images/circulo.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10% 10% 10% 10%;
}
.dot-wrapp p {
  color: white;
  font-weight: 500;
  font-size: var(--fs-6);
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .dot-wrapp p {
    font-size: var(--fs-4);
  }
  .dots-component {
    gap: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .dot-wrapp p {
    font-size: var(--fs-8) !important;
  }
  .dots-component {
    gap: 0rem;
    grid-template-columns: 1fr;
  }
}

/* =========================
   Section 5 – Info
========================= */
.info-component {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5rem;
}
.info-col1 {
  width: 60%;
}
.info-col1 img {
  width: 100%;
  transform: rotate(-65);
}
.info-component p {
  font-size: var(--fs-85);
  font-weight: bold;
  width: 40%;
}
@media screen and (max-width: 600px) {
  .info-component {
    flex-direction: column;
    row-gap: 2rem;
  }
  .info-col1 {
    width: 100%;
  }
  .info-col1 img {
    width: 100%;
    transform: rotate(-65);
  }
  .info-component p {
    font-size: var(--fs-85);
    width: 100%;
  }
}

/* =========================
   Section 6 – Video
========================= */
.video_section {
}

.video-component {
  background-color: black;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

/* =========================
   Section 7 – Banner
========================= */
.banner_section {
  position: relative;
}

.banner-component {
  width: 100%;
  display: flex;
  justify-content: center;
}

.banner-frame {
  width: min(1100px, 92vw);
  aspect-ratio: 2048 / 756;
  background-image: url("/images/banner2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: grid;
  place-items: center;
  padding: 8% 8%;
  transform: scale(1.1);
  transform-origin: center;
}

/* Texto */
.banner-text {
  margin: 0;
  text-align: center;
  color: var(--naranja-deem);
  font-size: clamp(14px, 3.4vw, 52px);
  line-height: 1.15;
  max-width: 28ch;
  font-weight: 500;
  position: relative;
  top: 5%;
}
.banner-text strong {
  font-weight: bold;
}

/* =========================
   Section 8 – Footer
========================= */
.footer_section {
  position: relative;
}
.footer-olas {
  position: absolute;
  z-index: 1;
  width: 100%;
  bottom: 0px;
  left: 0px;
  object-fit: cover;
}
.footer-component {
  position: relative;
  z-index: 2;
}
.footer-top-row {
  display: flex;
  column-gap: 5rem;
}
.footer-camaron {
  width: 35%;
}
.footer-c1 {
  width: auto;
}
.footer-c1 h2 {
  font-size: var(--fs-11);
  font-weight: bold;
  color: black;
}
.footer-c1 h3 {
  font-size: var(--fs-7);
  font-weight: 500;
  color: black;
  margin-right: 5%;
}
.footer-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 3.5rem;
  margin-bottom: 0rem;
}
.footer-nav a {
  font-weight: 500;
  font-size: var(--fs-5);
}
.footer-nav a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .footer-camaron {
    width: 35%;
    height: auto;
  }
  .footer-top-row {
    align-items: flex-start;
    column-gap: 2rem;
  }
  .footer-c1 h2 {
    font-size: var(--fs-10);
  }
  .footer-c1 h3 {
    font-size: var(--fs-7);
  }
  .footer-component .mobile-column {
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 1rem;
  }
  .footer-nav {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .footer-nav {
    column-gap: 1.5rem;
    margin-top: 5rem;
    align-items: center;
    justify-content: center;
  }
  .footer-nav a {
    font-size: var(--fs-2);
  }
}
@media screen and (max-width: 400px) {
  .footer-nav a {
    font-size: var(--fs-1);
  }
}
