*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --colorTextos:#3d3a3a;
    --colorBotones:#fff;
    --colorFondo:#0991fd;
    --paddingSecciones:60px 0;
    --marginElementos:40px;
}

body{
    font-family: 'Lato', sans-serif;
}

.contenedor{
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: var(--paddingSecciones);
}



.logo06{
    display: flex;
    overflow: hidden;
    height:70%; 
    width: 80%; 
    border-radius: 15% 5% 15%;  
    justify-content: center;
     margin: 30px 40px;
    justify-content: space-evenly;
    transform-style: preserve-3d;
    transition: 0.9s;
    box-shadow: 0 0 10px rgba(0, 0, 0, .9);
}

.logo06:hover {
 transform: rotateY(180deg);
}

/**MENU*/
.menu-navegacion{
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
}

.logo{
    height: 120px;  
    border-radius: 5%;    
}

.logo img{
    display: block;
     width: 70%;   
 
 }

 .logo03{  
    text-align: center;
    height: 180px;
    width: 180px;
}

.logo05{
    text-align: center;
    height: 90px;  
    border-radius: 15px 20px; 
    padding:0 370px;
}


.enlaces li{
    list-style: none;
    display: inline-block;
}

.enlaces a{
    color: #0991fd;
    text-decoration: none;
    margin-left: 10px;
    font-weight: 900;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.enlaces a:hover{
    text-decoration: underline;
}

.titulo01{
    width: 250px;
    height: 250px;
    text-align: center;
    margin: 0 50px;
    margin: 0 150px;
}


.titulo02{
    color: #000000;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify; 
}

.titulo03{
   color: #0991fd;
   font-size: 28px;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
   font-weight: 900;
   text-align: center;
}

.titulo05{
color: #3d3a3a;
font-size: 18px;
font-weight: 900;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


.parrafo01{
color: #000000;
text-align: center;
margin: 10px 100px;
font-size: 15px;
font-weight: 900;
}

/**ELIGENOS*/

    /* Tu CSS del card (pegado tal cual) */
    .card01 {
      position: relative;
      width: 300px;
      height: 200px;
      background-color: #0991fd;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      perspective: 1000px;
      box-shadow: 0 0 0 5px #fff;
      transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .card01 svg {
      width: 48px;
      fill: #ffffff;
      transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .card01:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 16px rgba(235, 230, 230, 0.2);
    }

    .card01__content {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 20px;
      box-sizing: border-box;
      background-color: #0991fd;
      transform: rotateX(-90deg);
      transform-origin: bottom;
      transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .card01:hover .card01__content {
      transform: rotateX(0deg);
    }

    .card01__title {
      margin: 0;
      font-size: 30px;
      color: #ffffff;
      font-weight: 800;
    }

    .card01:hover svg {
      scale: 0;
    }

    .card01__description {
      margin: 10px 0 0;
      font-size: 13px;
      color: #F5F7F8;
      line-height: 1.4;
      font-weight: 600;
    }

    /* Layout para mostrar múltiples cards */
    .card01-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      padding: 40px;
    }
/**ELIGENOS*/

/**SERVICIOS**/

   section.card02 {
      position: relative;
      width: 300px;
      height: 200px;
      background-color: #cfe0c600;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      perspective: 1000px;
      transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .card02 svg {
      fill: #f5dcdc;
      transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border-radius: 3px;
    }

    .card02:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 16px #000000f6;
      background-color: #0991fd;
      color: #ffffff;
    }

    .card02__content {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 20px;
      box-sizing: border-box;
      background-color: #c9c9d800;
      transform: rotateX(-90deg);
      transform-origin: bottom;
      transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .card02:hover .card02__content {
      transform: rotateX(0deg);
    }

    .card02__title {
      margin: 0;
      padding-left: 5px;
      font-size: 24px;
      color: #000000;
      font-weight: 900;
      text-align: center;
    }

    .card02:hover svg {
      scale: 0;
    }

    .card02__description {
      margin: 10px 0 0;
      font-size: 16px;
      color: #000000;
      line-height: 1.4;
      font-weight: 900;
      text-align: justify;
    }

    /* CONTENEDOR DE TODAS LAS CARDS */
    .card02-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      padding: 40px;
     }


/**SERVICIOS**/

/**HERO*/

.hero{
    height: 550px;
    background-image: url("../img/carga04.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;

}


.contenedor-textos{
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero h1{
    font-size:50px; 
     color: #000;
     font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
     background: #ffffffab;
}

.hero p{
    font-weight: 300;
    font-size: 25px;
    margin: 15px 0;    
}

.boton{
    width: 150px;
    display: block;
    margin: 0 auto;
    padding: 15px 0;
    background: var(--colorBotones);
    color: #000000;
    text-decoration: none;
    font-weight: 900;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.boton:hover{
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  background-color: #0991fd;
}

/**MAIN**/


.titulo-seccion02{
    color: #0991fd;
    font-size: 45px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
   font-weight: 900;
   letter-spacing: 5px;
}

.titulo-seccionuno{
color: #000000;
font-size: 42px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: 900;
letter-spacing: 8px;
}

.titulo-secciondos{
color: #000000;
font-size: 22px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: 900;
letter-spacing: 7px;
}

.titulo-seccion{
    color: #0991fd;
    font-size: 28px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 900;
    text-align: center;
}

.titulo-seccioncero{
    color: #000000;
    font-size: 32px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 900;
    
}

.copy{
    text-align: center;
    color: var(--colorTextos);
    margin: 20px 0;
    font-weight: 900;
    font-size: 25px;
}

.beneficios{
    padding-top: var(--marginElementos);
    display: flex;
    justify-content:space-evenly;
    flex-wrap: wrap;
   
}

.beneficio{
    font-size: 20px;
    width: 10em;
    height: 10em;
    background-image: url(../img/imagen-flexbox-min.png);
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content:center;
    border-radius: 5%; 
}
.projects{
    background: #f2f2f204;
}

.contenedor-imagenes {
   display: flex;
   justify-content: space-evenly;
   flex-wrap: wrap; 
}

.contenedor-imagenes img{
    display: block;
    object-fit: cover;
    width: 30%;
    height: 220px;
    opacity: 65%;
    box-shadow: 0 0 8px rgba(0, 0, 0, .9);
    margin-bottom: var(--marginElementos);
    justify-content: space-evenly;
    transition: transform 0.4s ease;
}

.contenedor-imagenes img:hover{
  transform: scale(1.1);
  opacity: 100%;
  }


.person{
    font-size: 22px;
    text-align: center;
    margin-top: 5px;
    font-weight: 300;
}

footer{  
    background: #0991fd;
    background-position: center;
    background-size: cover;
}

footer .titulo-seccion, 
footer .copy{
    color: #000000;
   

}

.redes-sociales{
    padding-top: var(--marginElementos);
    width: 80%;
    display: flex;
    margin: auto;
    justify-content: space-evenly;
   
}

.redes-sociales i{
    font-size: 80px;
    color: #EAECCC;
    transition: all 2s;
}
.redes-sociales i:hover{
    transform: rotate(360deg);
}

.coloruno{
    transition: all 2s;
}

.coloruno i:hover{
    transform: rotate(360deg);
}


.coloruno02{
     color: #072956;
    font-size: 15px;
    font-weight: 700;
    text-align: justify;
}

.titulo-seccion05{
    text-align: center;
    font-size: 39px;
    font-weight: 700;
    color: #000000;
}

/**MEDIAS QUIERY PARA PAGINA RESPONSIVE**/

@media screen and (max-width:800px){
    .menu-navegacion{
        flex-direction: column;
        height: 180px;
       justify-content: space-evenly;
}

.hero h1{
    font-size: 38px;
}

.logo{
    height: 60px;     
}

.logo05{
    width: 50%;  
    border-radius: 3%;  
     display: flex;
     position: relative;
     margin:20px 80px;
     padding:10px;
    
}


.beneficio{
    margin-bottom: var(--marginElementos);
}
.contenedor-imagenes img{
    width: 70%;
    height: 50%;
}
.redes-sociales{
    flex-direction: column;
    align-items: center;
}
.redes-sociales i{
    margin-bottom: 40px;
    font-size: 50px;
}

.card02__title {
      margin: 0;
      padding-left: 5px;
      font-size: 14px;
      color: #ffffff;
      font-weight: 900;
      text-align: center;
    }

    .card02:hover svg {
      scale: 0;
    }

    .card02__description {
      margin: 10px 0 0;
      font-size: 10px;
      color: #ffffff;
     
      font-weight: 900;
      text-align: center;
    }

  .card02:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 16px #000000f6;
      background-color: #ec090950;
      color: #ffffff;
    }

    .card02 img{
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

     .card01__title {
      margin: 0;
      font-size: 20px;
      color: #ffffff;
      font-weight: 800;
      text-align: center;
    }

    .card01:hover svg {
      scale: 0;
    }

    .card01__description {
      margin: 10px 0 0;
      font-size: 11px;
      color: #F5F7F8;
      line-height: 1.4;
      font-weight: 900;
    }


.parrafo01{
color: #000000;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
text-align: center;
margin:40px;
font-size: 20px;
font-weight: 900;
}


.hero h1{
    font-size:30px; 
     color: #000;
     font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
     background: #ffffffab;
     padding: 12px;  
}
.titulo-seccion02{
    color: #0991fd;
    font-size: 28px;
    font-family: Arial, Helvetica, sans-serif; 
    font-weight: 900;
    letter-spacing: 5px;
    text-align: left;
}

.titulo-seccionuno{
color: #000000;
font-size: 25px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: 900;
letter-spacing: 8px;
}

.titulo-secciondos{
color: #000000;
font-size: 15px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: 900;
letter-spacing: 7px;
}

.titulo02{
    color: #000000;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify; 
}


.logo06{
    display: flex;
    overflow: hidden;
    height:50%; 
    width: 50%; 
    border-radius: 15% 5% 15%;  
    justify-content: center;
     margin: 10px 70px;
    justify-content: space-evenly;
    transform-style: preserve-3d;
    transition: 0.9s;
    box-shadow: 0 0 10px rgba(0, 0, 0, .9);
}

.titulo03{
   color: #0991fd;
   font-size: 22px;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
   font-weight: 900;
   text-align: center;
}

.copy{
    text-align: center;
    color: var(--colorTextos);
    margin: 10px 10px;
    font-weight: 900;
    font-size: 12px;
}

.titulo-seccion{
    color: #0991fd;
    font-size: 18px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 900;
    text-align: center;
}

.titulo-seccioncero{
    color: #000000;
    font-size: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 900;
}

.titulo-seccion05{
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    color: #000000;
}

    .card01 {
      position: relative;
      width: 250px;
      height: 150px;
      background-color: #0991fd;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      perspective: 1000px;
      box-shadow: 0 0 0 5px #fff;
      transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }


}
     














