@charset "UTF-8";


/* ===========================
   HERO INTERIOR � CONTACTO
   =========================== */

.section-full-bleed {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.section-full-bleed::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.35);
}

.section-full-bleed-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.section-full-bleed .hero-text {
  position: static;
  transform: none;
  margin: 0 auto;
  padding: 0;
}

#Contacto {
  position: relative;
  height: 65vh;
  min-height: 0;
  overflow: hidden;
}

#Contacto .section-full-bleed-bg {
  position: absolute;
  top: -2px;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

#Contacto .section-full-bleed-img {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 2px);
  object-fit: cover;
  object-position: center bottom;
  transform-origin: center bottom;
}

#Contacto .section-full-bleed-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0 80px;
  text-align: center;
}

#Contacto .hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

#Contacto .hero-title,
#Contacto .hero-text h1 {
  max-width: 600px;
  margin: 0;
  padding: 10px;
}

.hero-text h1 {
  margin: 0;
  font-family: "Retro Voice", serif;
  font-size: 60px;
  font-weight: 100;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: none;
}

/* ===========================
   SECCIONES GENERALES
   =========================== */

.section-general,
.section-general-crema {
  padding: 80px 0;
}


.section-general-inner {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  grid-template-areas:
    "text media"
    "actions media";
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  column-gap: 60px;
  row-gap: 20px;
}

.section-general-actions,
.section-centrado-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-general-actions {
  grid-area: actions;
  align-self: end;
}

.section-centrado-actions {
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  padding: 25px 40px;
}

.section-eyebrow {
  margin: 0 0 18px;
  color: #8b8f96;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-general-title,
.section-general-title-m {
  margin: 0 0 26px;
  color: #303642;
  font-family: "Retro Voice", serif;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.section-general-title {
  font-size: 40px;
}

.section-general-title-m {
  font-size: 30px;
}

.section-general-body {
  color: #303642;
  font-size: 14px;
  line-height: 1.5;
}

.section-general-body p {
  margin: 0 0 14px;
}

.section-general-body .section-eyebrow-sub {
  margin: 25px 0 5px;
  color: #8b8f96;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===========================
   BOTONES
   =========================== */

.btn-outline {
  border: 0.7px solid #303642;
  background-color: transparent;
  color: #303642;
}

/* ===========================
   BLOQUE CONTACTO
   =========================== */

.section-contacto .contacto-eyebrow {
  margin-bottom: 8px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.section-contacto .contacto-title {
  margin: 0 0 20px;
  font-family: "Retro Voice", serif;
  font-size: 32px;
  text-align: center;
}

.section-contacto .contacto-title-s {
  margin: 0 0 20px;
  font-family: "Retro Voice", serif;
  font-size: 24px;
  text-align: center;
}

.section-contacto .contacto-intro {
  margin-bottom: 40px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
}

/* ===========================
   MAPA CONTACTO
   =========================== */

.section-mapa-contacto {
  height: 500px;
  margin: 0;
  padding: 0;
  background-color: #f8f5f0;
}

.section-mapa-contacto iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===========================
   AJUSTES RESPONSIVE
   =========================== */

@media (min-width: 769px) and (max-width: 1024px) {
  .section-general-inner {
    grid-template-areas:
      "text media"
      "actions actions";
  }

  .section-general-actions {
    flex-wrap: nowrap;
  }

  .section-general-actions .btn-outline,
  .section-general-actions .btn-solid {
    padding: 15px 22px;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  #Contacto .section-full-bleed-inner {
    padding: 0 30px;
  }

  .hero-text h1 {
    font-size: 45px;
  }

  .section-general,
  .section-general-crema {
    padding: 60px 0;
  }

  .section-general-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 30px;
  }

  .section-general-text,
  .section-general-media,
  .section-general-actions {
    width: 100%;
  }

  .section-general-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-general-actions .btn-outline,
  .section-general-actions .btn-solid {
    align-self: flex-start;
    white-space: nowrap;
  }

  .section-centrado-actions {
    flex-wrap: wrap;
    justify-content: center;
    padding: 25px 0 0;
  }

  .section-contacto .contacto-inner {
    padding: 0 30px;
  }
}