/*? 1 Hero Section*/
.hero-component {
  width: 100%;
  height: 70svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  padding-bottom: 25rem;
}

.hero-component h1 {
  color: white;
}

.hero-img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.credito-intro {
  color: white;
  text-transform: uppercase;
  position: absolute;
  right: 2rem;
  bottom: 4dvh;
  font-size: var(--fs-4);
  z-index: 10;
}

@media (max-width: 500px) {
  .hero-component {
    height: 50svh;
    padding-bottom: 18rem;
  }
  .credito-intro {
    right: 1rem;
    bottom: 1dvh;
    font-size: var(--fs-2);
  }
}

/*? 2 Introduction Section*/
.introduction_section {
  position: relative;
  width: 100%;
}
.introduction-component {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.introduction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 6em;
  max-width: 900px;
}
.ballenota {
  position: relative;
  width: 100%;
}
.ballenota-wrapp,
.desktop-block,
.mobile-block {
  position: relative;
  width: 100%;
}

.desktop-block img,
.mobile-block img {
  width: 100%;
}

.grafico-img {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2;
}

.desktop-block {
  display: block;
}
.mobile-block {
  display: none;
}

@media (max-width: 900px) {
  .introduction-grid {
    grid-template-columns: 1fr;
    grid-gap: 4em;
  }
  .desktop-block {
    display: none;
  }
  .mobile-block {
    display: block;
  }
}
@media (max-width: 450px) {
  .introduction-grid {
    grid-gap: 2.5em;
    text-align: center;
  }
}

/*? 3 Golfo Component*/
.golfo-component {
  text-align: center;
}
.golfo-ballena-component {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/*? 5 Megasoducto*/
.fabrica-wrapper {
  position: relative;
}
.megasoducto-grafico {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2;
}
.megasoducto-texto {
  position: absolute;
  top: 12%;
  right: 6%;
  z-index: 5;
  text-align: right;
  width: 240px;
}
.megasoducto-texto img {
  width: 100%;
}

@media (max-width: 1100px) {
  .megasoducto-texto {
    top: 10%;
    right: 0%;
  }
}
@media (max-width: 865px) {
  .megasoducto-texto {
    top: 5%;
    width: 200px;
  }
}

@media (max-width: 560px) {
  .megasoducto-texto {
    top: -8%;
    width: 140px;
  }
}

/*? 6 Megaplanta*/
.megaplanta {
  position: relative;
}
.megaplanta-mensaje {
  position: absolute;
  top: 18%;
  right: 4%;
  z-index: 5;
  width: 400px;
}

@media (max-width: 550px) {
  .megaplanta-mensaje {
    top: -10%;
    right: 4%;
    text-align: center;
    width: 50%;
  }
}

/*? 7 MegaBuque */
.mega-buque {
  position: relative;
}
.mega-buque-grafico {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2;
}

/*?8 Ruta*/
.rutas-grid {
  display: grid;
  grid-template-columns: 1fr 0.35fr;
  grid-template-rows: 1fr;
  width: 100%;
  gap: 2rem;
  margin-top: 5rem;
}
.ruta-capa-wrapper {
  position: relative;
}
.ruta-capa {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 5;
  opacity: 0;
  transition: var(--animTransition);
}
.activa {
  opacity: 1;
}
#ruta1 {
  z-index: 5;
}
#ruta2 {
  z-index: 4;
}
#ruta3 {
  z-index: 1;
}
#ruta4 {
  z-index: 3;
}
#ruta5 {
  z-index: 2;
}
.filtros-ruta {
  column-gap: 3rem;
  row-gap: 2rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.filter-item {
  display: flex;
  column-gap: 0.5rem;
}
.filter-item p {
  width: 200px;
}
.check {
  width: 22px;
  height: 22px;
  border: 2px solid black;
  cursor: pointer;
  transition: var(--animTransition);
}
#check1.active-check {
  background-color: #bc584c;
}
#check2.active-check {
  background-color: #33637e;
}
#check3.active-check {
  background-color: #d8ada9;
}
#check4.active-check {
  background-color: #39523d;
}
#check5.active-check {
  background-color: #9e8867;
}

@media (max-width: 900px) {
  .rutas-grid {
    grid-template-columns: 1fr;
    margin-top: 0rem;
  }
  .filtros-ruta {
    row-gap: 2rem;
    justify-content: center;
    align-items: center;
  }
}

.buttons-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 1.5rem;
  column-gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.buttons-row a {
  display: flex;
  column-gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border: 2px solid black;
  align-items: center;
  border-radius: 0.5rem;
  transition: all ease-in-out 0.2s;
  text-align: center;
}
.buttons-row svg {
  width: 1.5rem;
  height: 1.5rem;
}
.buttons-row a:hover {
  border-color: white;
  background-color: white;
}

/*? 9 el proyecto*/
.proyecto-row {
  gap: 2rem;
}
.proyecto-row img {
  width: 8%;
  min-width: 50px;
  max-width: 90px;
}
.proyecto-row .center {
  max-width: 30rem;
}
@media (max-width: 550px) {
  .proyecto-row {
    gap: 0rem;
  }
}

/*? 10 Organizate*/
/* .organizate-grid {
  display: grid;
  grid-template-columns: 1fr 0.35fr;
  grid-template-rows: 1fr;
  column-gap: 2rem;
}
.sliders-wrappers {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.slider-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.slider-index-wrapp {
  width: 100%;
  height: 100%;
}
.slider-index {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 5rem;
}
.slider-index a {
  font-family: "Costra" !important;
  font-size: var(--fs-5);
}

.pleca-index {
  opacity: 0;
  transition: var(--animTransition);
}

.activa-sect .pleca-index {
  opacity: 1 !important;
} */

#organizate .padding-global {
  padding-right: 0px !important;
  padding-left: 5%;
}
#organizate .container-large {
  max-width: none;
}

.organizate-slider-container {
  width: 100%;
}

.organizate-swiper {
  padding-left: 2rem;
  padding-right: 2rem;
}

.organizate-swiper .swiper-slide {
  width: 300px; /* ajusta según tu diseño */
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.organizate-swiper img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: none;
  height: 50vh;
}
.contain img {
  object-fit: contain !important;
}

.organizate-swiper p,
.organizate-swiper a {
  margin-top: 1rem;
  font-size: var(--fs-3);
  font-family: "Costra";
  color: black;
  text-align: left;
  width: 100%;
}
.organizate-swiper a {
  text-decoration: underline;
}

/* Opcional: personaliza el estilo de las flechas */
.swiper-button-next,
.swiper-button-prev {
  color: var(--azul); /* o el color que combine con tu paleta */
  width: 40px !important;
  height: 40px !important;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.swiper-button-next {
  right: 10% !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px !important;
  font-weight: bold;
  color: black !important;
}

.swiper-pagination {
  position: relative !important;
  padding-top: 40px !important;
  display: block !important;
  text-align: left !important;
  top: 0px !important;
}

.swiper-pagination-bullet-active {
  background-color: black !important;
}

@media (max-width: 768px) {
  #organizate .padding-global {
    padding-right: 5% !important;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  .swiper-pagination {
    padding-top: 24px !important;
  }
}

/*? Ballenas component*/
@media (max-width: 900px) {
  .descargas-component .btn-acccion {
    width: 100% !important;
    margin-bottom: 20px !important;
    max-width: 500px;
  }
  .organizate-swiper img {
    height: 30vh;
  }
}

/*contacto-component*/
.contacto-component p {
  max-width: 40rem;
}
