
.hero {
    position: relative;
    background: linear-gradient(to bottom, #00cefc8e , #0552c59b), url(../../img/acerca-de/sobre-noostros/portada.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    text-align: center;
    color: #fff;
    padding-top: 150px;
    min-height: 40vh;
    letter-spacing: 2px;
    border-radius: 0%;
  }
  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  .hero h1 span {
    font-size: 2rem;
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 12px;
    line-height: 3;
  }

  @media (max-width: 700px){
    .hero {
        position: relative;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        background-size: cover;
        text-align: center;
        color: #fff;
        padding-top: 110px;
        min-height: 400px;
        letter-spacing: 2px;
        font-family: "Montserrat", sans-serif;
        border-radius: 0 0 90% 90%/0 0 30% 30%;
      }
  }


/*** Seccion Acerca de ***/

/*** hay una seccion que tiene section left buscalo y corrigelo*/
section {
    position: relative;
    width: 100%;
    /*float: left;*/
}
.about-section {
    max-width: 1200px;
    margin: 0 auto !important; /* Esto centra horizontalmente */
    padding: 40px 20px;
    background-color: transparent;
  }
  
  .about-section h2{
    color: var(--color-principal);
  }
  .about-block {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    align-items: center;
  }

  .about-text, .about-image {
    flex: 1 1 100px;
    padding: 20px;
  }

  .about-text {
    order: 1;
  }

  .about-image {
    order: 2;
  }

  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  /* Alternar orden en bloques pares */
  .about-block:nth-child(even) .about-text {
    order: 2;
  }

  .about-block:nth-child(even) .about-image {
    order: 1;
  }

  @media (max-width: 768px) {
    .about-block {
      flex-direction: column;
    }

    .about-text, .about-image {
      order: unset !important;
    }
  }