/*PALETA DE COLORES
#324855 BACKGROUND
#FCE2D1 LETRAS 
#FE756A items

/*cambio con git*/


body{
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #324855;
    margin: 0;
    padding: 0;
}

    .contenedor{
    padding: 60px 0;
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    }

    .titulo{
     color: #FE756A;
     font-size: 30px;
     text-align: center;
     margin-bottom: 30px;
    }

    header{
        width: 100%;
        height: 350px; 
        background: #FE756A;  /* fallback for old browsers */
        


        background-size: cover;  
        background-attachment: fixed;  
        position: relative;
    }
       
        nav{
        text-align: right;
        padding: 30px 50px 0 0;}
       
        nav > a {
        color:rgb(255, 255, 255);
        font-weight: 300;
        text-decoration: none;
        margin-right: 10px; 
    }
       
        nav > a:hover {
         text-decoration: underline;  }
    
        header .textos-header{
        display: flex;
        height: 340px;
        width: 100%;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;}
    
        .textos-header h1{
        font-size: 50px ;
        color:#fff;
        
    }
    
    
    .textos-header h1{ 
        font-size: 40px;
        font-weight: 600;
        color:#fff;
    }


    .wave{
    position:absolute ;
    bottom: 0;
    width: 100% ;   
    }

    main.sobre-nosotros{
        padding: 30px 0 60px 0;
    }

    .contenedor-sobre-nosotros {
        display: flex;
        justify-content: space-evenly;
        color: #FCE2D1;
        margin-right: 10px;
    }

    .img-about-us{
        width: 38%;
        margin-right: 10px;
    }

    .sobre-nosotros.contenido-textos {
        width: 48%;
    }

    .contenido-textos h3 {
        margin-bottom: 15px;
        
    }

    .contenido-textos h3 span{
        background: #FE756A;
        color: #FCE2D1;
        border-radius: 50%;
        display: inline-block;
        text-align: center;
        width: 30px;
        height: 30px;
        padding: 2px;
        box-shadow: 0 0 6px 0 rgba (0, 0, 0, .5);
        margin-right: 5px;
    }

    .contenido-textos  p{
    padding: 0px 0px 30px 15px;
    font-weight: 300;
    text-align: justify;    
    }

    .portafolio {
        background: #FCE2D1;
    }

    .galeria-port{
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    .imagen-port{
        width: 24%;
        margin-bottom: 10px;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        box-shadow: 0 0 6px 0 rgba(16, 46, 102, 0.767);
    }

    .imagen-port > img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .hover-galeria{
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        transform: scale(0);
        background: #324855cb;
        transition: transform .5s;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .hover-galeria img{
        width: 50px;
    }
    .hover-galeria p {
        color: #FCE2D1;
    }
    .imagen-port:hover .hover-galeria{
        transform: scale(1);
    }
    footer{
        background: #324855;
        padding: 60px 0 30px ;
        margin: auto;
        overflow: hidden;
    }
    .contenedor-footer{
        display: flex;
        width: 90%;
        justify-content: space-evenly;
        margin: auto;
        padding-bottom: 50px;
        border-bottom:1px solid #FE756A;
    }
    .contenedor-foo{
        text-align: center;
    }
    .contenedor-foo h4{
        color: #FCE2D1;
        border-bottom: 2px solid #FE756A;
        border-radius: 2px;
        padding-bottom: 5px;
        margin-bottom: 10px;
    }
    .contenedor-foo p{
        color: #ccc;
    }
    .titulo-final{
        text-align: center;
        font-size: 24px;
        margin: 20px 0 0 0;
        color: #9e9797;
    }

    body::-webkit-scrollbar{
        width: 7px;

    }

    body::-webkit-scrollbar-thumb{

        background: #FE756A;
        border-radius: 6px;

    }