*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Roboto', sans-serif;
    text-decoration: none;
}

body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 350px;
}

/* Barra */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background:#E7F3E7;
    z-index: 2;
}


/* Header */
.contenedor__superior{
    max-width: 1200px;
    left: 300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px; /* 0 */
    z-index: 2;
}

.logo img{
    width: 370px;
    height: 110px;
    margin-bottom: -9px;
}

/* Nav */

.contenedor{
    position: fixed;
    width: 100%;
    height: 50px;
    background: #339D2F;
    padding: 0 20px; /* <--- Responsive, opcional aun falta por terminar */
    z-index: 2;
}

.menu{
    max-width: 1200px;
    margin: auto;
    height: 100%;
}

nav{
    height: 100%;
}

nav > ul {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

nav  ul  li{
    height: 100%;
    list-style: none;
    position: relative;
}

nav > ul > li > a{
    width: 100%;
    height: 100%;
    display: flex;
    color: white;
    align-items: center;
    padding: 16px;
    font-size: 16px;
    transition: all 300ms ease;
    text-decoration: none;
}

nav > ul > li > a:hover{
    background: #096F05;
    color: #fff;
    transform: scale(1.1);
    padding-left: 30px;
    padding-right: 30px;
    font-size: 14px;
    
    /*width: 150px;
    
    background: #0074c7;
    transform: scale(1.3);*/

   
    

}

nav li ul a{
    width: 3;
}

nav{
    width: 90%;
    margin: auto;

    
    

}

.activo{
    background: #096F05;
    color: #fff;
    transform: scale(1.1);
    padding-left: 30px;
    padding-right: 30px;
    font-size: 14px;
    text-decoration: none;
}

/* Menu productos y servicios*/

nav ul li ul {
    width: 200px;
    display: flex;
    flex-direction: column;
    background: white ;
    position: absolute;
    top: 50px;  /* <--- Danilo es el unico que sabe para que funciona*/
    left: -5px;
    padding: 14px 0px;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 0px 10px 0px rgb(0, 0, 0, 0.5);
    
    transition: all 300ms ease;


    

}

nav ul li:hover ul {
    visibility: visible;
    opacity: 1;
    top: 50px;
    
    
   
    

}

nav ul li ul li a{
    display: block;
    color: #000;
    padding: 6px;
    padding-left: 14px;
    margin-top: 10px;
    font-size: 14px;
    transition: all 300ms ease;
    text-decoration: none;
}

nav ul li ul li a:hover{
    background: #096F05;
    color: #fff;
    transform: scale(1.1);
    padding-left: 30px;
    font-size: 14px;
    text-decoration: none;
}    

/* ------------------- Responsive ----------------------- */

.menu_cont{
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    width: 26px;
    height: 100%;
    display: none;
    align-items: center;
}

.label_cont{
    width: 26px;
    height: 100%;
    display: none;
}

#check{
    display: none;
}


@media screen and (max-width: 720px) {
    .contenedor__superior{
        height: 65px;
    }

    .logo img{
        margin-bottom: -2px;
        width: 200px;
        height: 70px;
    }

    .contenedor__superior{
        padding: 10px;
    }
    nav ul{
        flex-direction: column;
        background-color: #339D2F;
        position: fixed;
        left: 0;
        top: 110px;
        width: 100%;
        height: 0px;
        transition: all 300ms ease;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
    }

    nav ul li a:hover{
        transform: scale(1);
    }

    
    nav ul li:hover ul{
       display: none;
    }

    nav ul li:first-child a{
        background-position: 20px;
    }

    .activo{
        transform: scale(0.9);
    }

    .label_cont{
        display: block;
    }

    .menu_cont{
        display: flex;
    }

    #check:checked ~ nav > ul{
        height: 300px;
        visibility: visible;
        opacity: 1;
    }
    
    .accordion{
        margin-top: -25px;
    }

    .productos .descripcion h3{
        margin-top: -20px;
    }

    button{
        margin-top: -17px;
    }

}
   

/* --------------------- Responsive --------------------------- /* 





/*-----------------------------    TARJETA PRODUCTOS  --------------------------------*/





.contenedor_servicios{
    width: 100%;
    top: 275px;
    position: absolute;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


.titulo_productos{
    top: 190px;
    position: absolute;
}


.contenedor_productos{
    position: absolute;
    cursor: default;
    top: 255px;
    width: 100%;
    max-width: 1200px;
    height: 430px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
        
}    

.contenedor_productos .productos{
    width: 550px;
    height: 430px;
    border-radius: 8px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin: 20px;
    text-align: center;
    transition: all 0.25s;


}    

.productos:hover{
    box-shadow: 5px 5px 20px rgb(23, 176, 17, 0.4);
    transform: translateY(-3%);
}    

.productos img{
    width: 100%;
    height: 210px;
}    

.productos .descripcion{
    padding: 15px;
    text-align: center;
}    

.productos .descripcion p{
    line-height: 1.5;
    color: #6a6a6a;
}    

.productos .descripcion h3{
    font-weight: 800;
    margin-bottom: 15px;
}    

.productos .descripcion a {
    text-decoration: none;
    display: inline-block;
    padding: 10px;
    margin-top: 10px;
}    

button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    top: -5px;
   }
   
   button.learn-more {
    width: 12rem;
    height: auto;
   }
   
   button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #096F05;
    border-radius: 1.625rem;
   }
   
   button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
   }
   
   button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
   }
   
   button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
   }
   
   button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #000;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
   }
   
   button:hover .circle {
    width: 100%;
   }
   
   button:hover .circle .icon.arrow {
       background: #fff;
       transform: translate(1rem, 0);
    }
    
    button:hover .button-text {
        color: #fff;
    }

    /*  -----------------------------------   ACCORDION ------------------------------------------- */
    
.accordion{
    width: 100%;
    top: 154px;
    position: absolute;
    z-index: 0;
}
    
.accordion-body{
    font-size: 16px;
    font-weight: 600;
}




/* -----------------------------------  BOTON WHATSAPP ---------------------------------------------- */

   .btn-wsp{
    position:fixed;
    width:80px;
    height:80px;
    line-height: 83px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index:100;
    background:#fff;
    color:#25d366;
    border-radius:50px;
    text-align:center;
    transition: all 300ms ease;
    bottom:35px;
    right:35px;
    font-size:55px;
}
.btn-wsp:hover{
    background: #25d366;
    color: #fff;
}




