/* ============================================================
   ELLIPSE HERO (decorativo)
   ============================================================ */
.ellipse-hero {
    position: absolute;
    right: 5%;
    z-index: 0;
    TOP: 10%;
}

/* ============================================================
   HERO GLOBAL – Para todas las páginas con hero
   ============================================================ */

/* === CONTENEDOR GLOBAL === */
.hero-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  align-items: center;
}

/* === HERO PRINCIPAL === */
.hero-section {
  position: relative;
  flex: 1 1 auto;
  height: 475px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  border-bottom-right-radius: 200px;
  overflow: hidden;
  z-index: 1;
}
.hero-section-no-border {
  border-bottom-right-radius: 0 !important;
}

/* === CONTENIDO === */
.hero-section .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    display: grid;
    align-items: center;
    height: 100%;
    padding-left: 7%;
}

/* === RRSS === */
.hero-social {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 0 8% 0 40px;
    z-index: 2;
}

.hero-social__link {
  color: #fff;
  font-size: 10px;
  opacity: 0.7;
  transition: opacity .2s ease;
}

.hero-social__link:hover {
    opacity: 1;
    color: #fff;
}



.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}



.hero-section .hero-content h1 {
    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1.2;
    margin: 0;
    font-weight: 700;
    color: #fff;
    max-width: 95%;
}



@media (max-width: 992px) {
  .hero-section {
    height: 380px;
    border-bottom-right-radius: 100px;
    width: 100%;
  }
  .hero-section .hero-content {
    left: 0;
    padding: 0 20px;
  }
  .hero-wrap .hero-social {
    padding: 0 20px 0 20px;
  }
}


@media (max-width: 768px) {
  .bloque-hero-text p {
    text-align: center;
  }
}





