
 /*HEADER - barra blanca*/
 header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 3;
    background-color: rgba(255,255,255,0.7);
    padding-top: 50px;
    padding-bottom: 0;
    /*padding: 3% 0.1% 3% 0.1%;*/
    transition: 0.2s;
}
/*Cuando haces scroll el fondo del header cambia de color:*/

header.abajo {
    background-color: #fff;
    box-shadow: 1px 1px 7px 1px rgba(178, 178, 178, 0.427);
    transition: 0.2s;
    padding: 10px 0.1% 20px 0.1%;
    height: 50px;
}
 
 
 /*   TEXTO PRINCIPAL  */
 #texto-principal {
   justify-content: center;
   text-align: justify;
   display: flex;
   flex-direction: column;
   width: 100%;
   height: auto;
   margin: 1%;
   align-items: center;
   box-sizing: border-box;
   margin-bottom: 5%;
 }
 .titulo {
   color: #000;
   font-family: 'josefine';
   font-size: 1.2em;
   padding-bottom: 20px;
   text-align: justify;
 }
 .subtitulo{
   color: #000;
   font-family: 'josefine';
   font-size: 2.5em;
   padding-bottom: 20px;
   text-align: left;
 }
 .destacado{
   background: rgba(210,255,82,1);
 }
 .parrafo {
   font-family: 'metropolis';
   font-size: 1.3em;
   font-weight: lighter;
   line-height : 30px;
   color: #000;
   text-align: justify;  
 }

 .boton {
   width: 50%;
   background-color: #171717;
   padding: 3%;
   border: none;
   border-radius: 5px;
   margin-top: 10%;
   font-size: 1.3em;
 }
 .boton a {
   color: white;
   font-family: 'metropolis';
   font-size: 1em;
 }
 .flecha {
   color: #DA0037
 }
 .titulo2 {
  color: #000;
  margin-left: 4%;
  font-family: 'metropolis';
  font-size: 2.5em;
  margin-top: 2%;
  margin-bottom: 2%;
  text-align: center;
  margin-bottom: 5%;
 }
 #img-clients {
   width: 70%;
   min-width: 350px;
   height: auto;
   align-self: center;
   border-radius: 10px;
   padding: 2%;
   -webkit-box-shadow: -1px 3px 5px 0px rgba(0,0,0,0.75);
   -moz-box-shadow: -1px 3px 5px 0px rgba(0,0,0,0.75);
   box-shadow: -1px 3px 5px 0px rgba(0,0,0,0.75);
 }
 
/*  NUEVO */

.contenedor1 {
   display: flex;
   flex-wrap: nowrap;
   width: 70%;
   justify-content: center;
   text-align: center;
   gap: 5em;
   padding: 2em 0 2em 0;
   margin-top: 10%;
   
 }
 
 .contenedor1a {
   width: 50%;
   max-width: 500px;
   margin-right: 0;
   margin-bottom: 2em;
 }
 
 .contenedor1b {
   
   width: 100%;
   max-width: 500px;
   height: fit-content;
   display: flex;
   justify-content: center;
   align-items: center;
   position: relative;
 }
 
 .contenedor1b::before {
   content: "";
   display: block;
   padding-top: 100%; /* Establece la relación de aspecto */
   
 }
 
 .contenedor1b img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 50%;
   position: absolute;
   top: 30%;
   left: 0;
   outline: 3px dashed #000;
   margin: 0;
   padding: 1%;
   /*
   clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
   */
 }




 
 /*RESPONSIVE*/
 @media(max-width: 899px){ /*la web original es de hasta 899px*/
    /*HEADER*/
    header {
        background-color: transparent;
        padding-top: 10px;
        height: 20px;
     }
     .mostrar-menu {
      position:absolute;
      right: 5%;
      color: #3D3E3B;
  }
     #texto-principal {
        padding: 5% 3%;
        text-align: justify;
     }
     .contenedor1 {
      flex-direction: column;
      width: 90%;
    }
    .contenedor1a {
      width: 100%;
      padding: 0;
      margin-bottom: 0;
    }
    .boton {
      width: 70%;
      
    }
    .contenedor1b {
      width: 100%;
      border-radius: 50%;
    }
    .contenedor1b img {
      border-radius: 50%;
      /*
      clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
      */
    }

   
}

 
 