* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body {
    width: 100vw;
    height: 100vh;
    background-color: #f9eee4;
   
   
}

@font-face {
    font-family:"Helvetica Neue LT Std";
    src: url("./tipos/HelveticaNeueLTStd-Bd.otf")
  
   
}

@font-face {
    font-family:"Helvetica Neue LT Std 2";
    src: url("./tipos/HelveticaNeueLTStd-Md.otf")
   
}

@font-face {
    font-family:"Helvetica Neue LT Std 3";
    src: url("./tipos/HelveticaNeueLTStd-Roman.otf")
   
}

@font-face {
    font-family:"Helvetica Neue LT Std 4";
    src: url("./tipos/HelveticaNeueLTStd-Blk.otf")
   
}




.contenedor {
     /* position: absolute;*/
    width: 100vw;
   
    background-color: #f9eee4;
    overflow: hidden;
  

   
  
    
}



nav ul {
   list-style-type: none;
   padding: 0 2vw  2vw;
    margin: 20px 0;
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
    position: fixed;
    z-index: 10;
    mix-blend-mode:difference;
    
  
   
}

nav ul li {
    display: inline;
    margin: 0 1px;
     /* en realidad aqui no necesita el margiun ;*/
    
}

nav ul li a {
    text-decoration: none;
    color: rgb(253, 251, 251);
   
    text-transform: uppercase;
    font-size:.5em;
    font-family:"Helvetica Neue LT Std";
    mix-blend-mode:difference;
}

a:hover{
    color: #f15a24;
}


.logo_neutro{
    width: 98vw;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 60px auto;
    display: block;
}

.legales_head{
    display: flex;
    width: 97vw;
    margin: -2em auto 0;
    justify-content: space-between;
    flex-wrap: wrap;
}

.legales_head_box1{
    width: 33%;
    margin-bottom: 2em;
    order:1;
}

.legales_head_box2{
    width: 33%;
    margin-bottom: 2em;
    order:2;
}

.legales_head_box3{
    width: 33%;
    margin-bottom: 2em;
    order: 3;
}

.legales_head p{
font-family:"Helvetica Neue LT Std 2";
 
}

.legales_head_box_der{
    text-align: right;
    font-size: 1rem;
}

.legales_head_box_cent{
    text-align-last:justify;
    font-size: .7rem;
   
}

.legales_head_box_izq{
    font-size: 1rem;
}

.slider {
    width: 97vw;
    /*height: 70vh;*/
    overflow: hidden;
    border-radius: 20px;
    margin: 0 auto 0;
    display: block;
  
}

.slides {
    display: flex;
    width: 500%;
    padding: 0;
    
    
}

.slide {
    width: 100%;
    /*height: 100%;*/
    /*flex-shrink: 0;*/
    animation: slideAnimation 20s infinite;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes slideAnimation {
    0% { transform: translateX(0%); }
    20% { transform: translateX(0%); }
    25% { transform: translateX(-100%); }
    45% { transform: translateX(-100%); }
    50% { transform: translateX(-200%); }
    70% { transform: translateX(-200%); }
    75% { transform: translateX(-300%); }
    95% { transform: translateX(-300%); }
    100% { transform: translateX(-400%); }
    100% { transform: translateX(-400%); }
}


.text-slider {
    display: flex;
    justify-content: flex-start;
    overflow: hidden;
    /*background-color: black;*/
    margin: 2em auto;
 }
 
 .text-slider p {
    color: #f15a24;
    font-family:"Helvetica Neue LT Std 2";
    text-align-last:justify;
    font-size: 1em;
    white-space: nowrap;
    padding: .5em 5em;
    word-spacing: 8em;
    animation: move-text 6000ms linear infinite;
 }
 
 
@keyframes move-text {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-100%);
    }
}

.texto-about-home{
    width: 98vw;
    margin: 0  auto 0;
    display: block;
    text-align: justify;
   
  
   

}

.texto-about-home p{
    font-family:"Helvetica Neue LT Std 3";
    text-align-last:justify;
    font-size: 2.88889rem;
    line-height: 1.2em;
}




.contenedor_flex_work{ 
    display: flex;
    width: 98vw;
   

    margin: 0 auto 0;

    flex-wrap: wrap;
    justify-content: space-between;
   

}






.caja_work{
    width: 33%;
   
   

}

.link-work-boton{
   /* width: 20%;*/
    margin: 7px 0 10px 0;
    /*display: block;*/
    text-decoration: none;
    list-style-type: none;
}


.caja_work_img{
    width: 100%;
    border-radius: 20px;
    overflow: hidden;

} 




.caja_work_img_hover{
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;

} 

.caja_work_img_hover img{
    width: 100%;

} 

.capa{
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    transform: scale(0);
    transition: .3ms ease;
    background-color: #f15a24;
    display: flex;
    justify-content: center;
    align-items: center;
}

.capa p{
    font-family:"Helvetica Neue LT Std 4";
    text-align: center;
    color: #000000;
    font-size: 2rem;  
}

.caja_work_img_hover:hover .capa{
    transform: scale(1);
}



.caja_work_img img{
    width: 100%;

} 




.info{
   
    min-width: 30%;
    color:#000000;
    font-family:"Helvetica Neue LT Std";
    border-radius: 6px;
    background-color: #f15a24;
    text-align: center;
    font-size: 13px;
    margin: 7px 0 10px 0;
    display: inline-block;
    padding: 0px 10px;
}

.info p{
    padding: 5px 0 0;
}

.botom{
    width: 98vw;
    display: block;
    background-color: #f9eee4;
    margin: 0 auto 0;
}

.redes{
    display: flex;
    width: 100%;
}


.cajaredes{
    width: 25%;
}

.cajaredes a{
    text-decoration: none;
    list-style-type: none;
}

.cajaredes p{
    font-size: 5em;
    font-family:"Helvetica Neue LT Std 2";
    color: #f15a24;
    text-align: end;
   
}

.cajaredes img{
    width: 50%;
}

.phone{
    width: 100%;
    margin: -1em 0 0 0;
}
.phone p{
    font-size: 10em;
    font-family:"Helvetica Neue LT Std 2";
    color: #f15a24;
    text-align-last: justify;
     
}

.mail{
    width: 100%;
    margin: -3em 0 0 0;
}

.mail p{
    font-size: 10em;
    font-family:"Helvetica Neue LT Std 2";
    color: #f15a24;
    text-align-last: justify;
}

.copyright{
    width: 100%;
}

.copyright p{
    font-size: 1em;
    font-family:"Helvetica Neue LT Std";
    color: black;
    text-align-last: justify;
}


@media (max-width: 1536px) {
     /* FOOTER */
    .phone p{
        font-size: 9rem;
      
         
    }
    
    .mail p{
        font-size: 9rem;
        
    }
  
}

@media (max-width: 1440px) {
     /* FOOTER */
    .phone p{
        font-size: 8rem;
      
         
    }
    
    .mail p{
        font-size: 8rem;
        
    }
   

}


@media (max-width: 1280px) {
     /* FOOTER */
    .phone p{
        font-size: 6.5rem;
      
         
    }
    
    .mail p{
        font-size: 6.5rem;
        
    }
  

}


@media (max-width: 1024px) {
     /* FOOTER */
    .phone p{
        font-size: 5rem;
      
         
    }
    
    .mail {
       
        margin: -1.8em 0 0 0;
    }

    .mail p{
        font-size: 5rem;
        margin: 0 0 0 0;
    }
    .cajaredes img {
        width: 65%;
    }

    /*contenedor work*/

    .caja_work{
        width: 49.5%;
       
    
    }

}


@media (max-width: 768px) {
     /* FOOTER */
    .phone p{
        font-size: 4rem;
      
         
    }
    
    .mail p{
        font-size: 4rem;
        
    }

    .cajaredes img {
        width: 70%;
    }
    .cajaredes p{
        font-size: 4rem;
        
    }
   
}


@media (max-width: 640px) {
     /* FOOTER */

    .phone{
       
        margin: -.5em 0 0 0;
    }
    .phone p{
        font-size: 3rem;
      
         
    }
    .mail {
       
        margin: -1em 0 0 0;
    }
    
    .mail p{
        font-size: 3rem;
        
    }

    .cajaredes p{
        font-size: 3rem;
        
    }
    .cajaredes img {
        width: 80%;
    }

     /*contenedor work*/

     .caja_work{
        width: 100%;
       
    
    }

    /*texto about*/
    .texto-about-home p{
      
        font-size: 2rem;
      
    }

    /*text slider*/
    .text-slider {
       
        margin: 1em auto;
     }

     .text-slider p {
       
        padding: .3em 5em;
      
     }

     /*legales head*/

     .legales_head{
       height: 50svh;
       margin: -0.5em auto 0;
    }

     .legales_head_box1{
        width: 50%;
        margin-bottom: 2em;
        order:2;
    }
    
    .legales_head_box2{
        width: 100%;
        margin-bottom: 31svh;
        order:1;
    }
    
    .legales_head_box3{
        width: 50%;
        margin-bottom: 2em;
        order: 3;
    }

    /*navegador*/
    nav ul {
       
         mix-blend-mode:normal;
         bottom: 0svh;
         display:block;
         width: 33%;
    
 




        }
     
     nav ul li {
         display:block;
         margin: 5px 1px;
         background-color: rgba(0,0,0,0.4);
         border-radius: 10px;
          /* en realidad aqui no necesita el margiun ;*/
         width:fit-content;
         padding: 0 10px 3.5px;
     }
     
     nav ul li a {
         text-decoration: none;
         color: rgb(253, 251, 251);
        
         text-transform: uppercase;
         font-size:.5em;
         font-family:"Helvetica Neue LT Std";
         mix-blend-mode:difference;
     }

     /*logo principal*/
     .logo_neutro{
        width: 98vw;
        background-size: contain;
        background-repeat: no-repeat;
        margin: 10px auto;
        display: block;
    }
   
}


@media (max-width: 475px) {
     /* FOOTER */
    
    .phone{
       
        margin: -.5em 0 0 0;
    }
    .phone p{
        font-size: 2rem;
      
         
    }
    .mail {
       
        margin: -1em 0 0 0;
    }
    
    .mail p{
        font-size: 2rem;
        
    }

    .cajaredes p{
        font-size: 2rem;
        
    }
    .cajaredes img {
        width: 80%;
    }


    
}

