@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');

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

body{
    font-family: 'Open Sans', sans-serif;
    background: #f5f5f5;
}

header{
    width: 100%;
    height: 50px;
    background:#ff0000;
    

    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.contenedor{
    width: 100%;
    margin: auto;
    
   
}

h1{
    float: left;
    font-size: 15px;
    margin-top: 15px;
    margin-left: 10px;
    color: white;
}

.logo{
    float: left;
    width: 25px;
    margin-top: 13px;
    margin-left: 10px;
}

header .contenedor{
    display: table;
}

section{
    width: 100% ;
    margin-bottom: 25px;
}

.social{
    position: fixed;
    left: 0;
   
    bottom: 33px;
    z-index: 2000;
}

.social img{
    width: 50px;
}


#bienvenidos{
    text-align: center;
}

#blog h3, h4{
    text-align: center;
}

#blog .contenedor{
    display: flex;
    justify-content: center ;
    flex-wrap: wrap;
}

#blog article{
    margin: 10px;
   
   
}

#blog img{
    width: 100%;
    max-width: 280px;
    
   
}

#info{
    margin-top: -28px;
}


.imgPrincipal img{
    width: 100%;
    height: auto;
    margin-top: -3px;
}


@media(max-width:480px){
    #blog .contenedor article .jorge{
    width: 100%;
    max-width: 150px;
    
}
}

#blog .contenedor article p{
    padding-bottom: 20px;
    font-weight: bold;
    
}

#blog .contenedor article li{
    list-style: none;
    padding-bottom: 10px;
    border-bottom: solid 1px #bebebe;
    padding-top: 10px;
}

#blog .contenedor article h4{
    padding-top: 30px;
    text-decoration: underline;
}

#blog .contenedor article img:hover{
    transform:scale(1.1);
    transition: ease 0.4s; 
}

#blog .contenedor article img{
    transition: ease 0.4s; 
   
}

#blog .contenedor article{
   overflow: hidden;
}




/*
#blog .contenedor article {
    overflow: hidden;
}

#blog .contenedor article img {
    transition: 0.5s;
    object-fit: cover;
}

#blog .contenedor article img:hover {
    transform: scale(1.05);
}

*/

footer .contenedor{
   
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 50px;
    background: #000;
    color: #fff;
    width: 100%;
    height: auto;
    margin-top:-25px;
   
}



.copy{
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    margin-top: 30px;
    
}

@media(max-width:768px){
    .copy{
        font-size: 16px;
        text-align: center;
        font-weight: bold;
    }

}

@media(max-width:480px){
    .copy{
        font-size: 14px;
        text-align: center;
        font-weight: bold;
    }

}


.facebook{
   width: 100%;
   height: 70px;
  
}

.facebook img{
    margin: auto;
    display: block;
    width: 50px;
    padding-top: 10px;
}


/*boton descargar*/

.catalogo{
    text-align: center;
    margin-bottom: 20px;
}

/*boton whatsapp*/

.container-boton{
    background-color: #2e6329;
    border: 1px solid #fff;
    position: fixed;
    z-index: 999;
    border-radius: 50%;
    bottom: 20px;
    right: 25px;
    padding: 25px;
    transition: ease 0.3s;
    animation: efecto 1.2s infinite;
}

.container-boton:hover{
    transform: scale(1.1);
    transition: 0.3s;
}

.boton{
    width: 40px;
    transition: ease 1s;
}

@keyframes efecto{
    0%{
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.85);
    }
    100%{
        box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
    }
}

@media(max-width:480px){
    .boton{
        width: 25px;
    }
}

/*text decoration de los h4*/

h4 a{
    text-decoration: none;
    color: black;
}

h1 a{
    text-decoration: none;
    color:#fff;
}

.vision{
    margin-bottom: 50px;
}

video{
    margin-top: 30px;
}

/*texto dentro de la imagen*/

h2{
    text-align: center;
   
}

.ruc{
    color: #fff;
    height: 40px;
    background: #004b9e;
    width: 100%;
    font-family: sans-serif;
    
   
}

.ruc h2{
   font-size: 25px; 
   font-weight: normal;
   padding-top: 6px;  
   border: 0px;
}


@media(max-width:768px){
    .ruc h2{
        font-size: 18px;
        text-align: center;
        padding-top: 10px;
    }
}


.info-pet img:hover{
    transform: scale(1.2); 
    transition: ease 0.4s;
    filter: grayscale(0%);
   
 }

 .info-pet img{
   filter: grayscale(100%);
   transition: ease 0.4s;
 }



