
/* Cabecera de la sección de “Servicios” */
.tittle {
    position: relative;
    overflow: hidden;
    max-height: 190px;
    text-align: center;
  }
  .tittle .overlay {
    background-color: rgba(17, 60, 98, 0.3);
  }
  .tittle img {
    display: block;
    width: 115%;
    height: 100%;
    margin: 0 auto;
    margin-top: -50px;
  }
  .tittle h2 {
    position: absolute;
    top: 50%;
    left: 32%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-family: serif;
    margin: 0;
    font-size: 59px;
    font-weight: 300;
  }

  .space {
    background-color: #e5e5e5;
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 5%;
    min-height: 550px;
  }
  
  .space .box {
    background-color: #FFF;
    width: 25%;
    padding: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    color: #043B63;
    min-height: 400px;
    display: flex;
    flex-direction: column;
  }

  @media (max-width: 1430px) {
    .space .box {
      max-height: 500px;
      min-height: 500px;
    }
  }

  @media (max-width: 1000px) {
    .space .box {
      max-height: 550px;
      min-height: 550px;
    }
  }
  
  .space .box h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #043B63;
  }
  
  .space .box h4 {
    font-family: system-ui;
    font-weight: 100;
    font-size: 13px;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: normal;
    color: #333; 
    padding-top: 30px;
    letter-spacing: 1.2px;
  }
  
  .space .box p {
    font-size: 16px;
    font-family: system-ui;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: justify;
    padding-top: 20px;
    letter-spacing: 0.4px;
    color: #333;
  }

  .space .box .little{
    margin-top: auto; 
    font-family: system-ui;
    font-weight: 300;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #043B63;
    font-style: italic;
    letter-spacing: normal;
  }


  
  