/* ===== HERO ===== */

.hero-index {
  position: relative;
  height: 600px; /* o el alto que necesites */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  color: white; /* para que el texto resalte */
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  gap:3rem;
  align-items: center;
}

.hero-index .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity:1; /* opcional para dar contraste */
}

.hero-index .hero-cta,
.hero-index a {
  position: relative;
  z-index: 1;
}

.hero-index .hero-cta {
  margin-top: 4rem;
}

.hero-index .hero-cta h2{
  color:black;
  margin-bottom: 2rem;
}

.hero-index .container-buttons-hero{
  width: 100vw;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap:2rem;
  padding: 2rem;

}

.hero-index .container-buttons-hero a{
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.555);
}

/* ===== SECTION CANCEL CLASS ===== */
.section-cancel-class{
    display: flex;
    width: 100%;
    height: auto;
    padding: 2rem 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    background-color: var(--secondary-300);
}

/* ===== section localization ===== */
.section-localization{
    position:relative;    
    display: flex;
    width: 100%;
    height: auto;
    padding: 2rem 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    flex-shrink: 0;
    background-color: var(--primary-200);
}

.section-localization .localization-content{
    display: flex;
    flex-direction: column;
    gap:2rem;
    z-index: 4;

}

.section-localization .localization-bg{
    position: absolute;
    top: 0;
    right:-9rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity:0.4; /* opcional para dar contraste */
}

.section-localization .localization-bg img{
    width: 50%;

}

/* ================================     ABOUT US    ================================ */

.section-about {
  position: relative;
  top: -8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  z-index: -1;
  background-color: var(--primary-200);

}

/* Imagen */
.container-img-about img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Contenido */
.about-content {
  width: 100%;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap:2rem;
}



/* ================================     CONTACT    ================================ */

.section-contact-index{
  position:relative;
  top:-6rem;
  width: 100%;
  height: auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

.contact-wrapper{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-content{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:1rem;
  padding: 2rem 2rem;
  margin:-43rem auto 1rem;
 }

 .contact-content h2{
  text-align: center;
  line-height: 3rem;
 }

 .contact-content .btn{
  margin-top: 3rem;
 }
 

.contact-image {
  display: none; /* oculta en móvil */
}


/* ================================     vector bg    ================================ */

.vector-bg{
  display:none
}
