header {
    width: 100%;
    height: 185px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000000;

}

.header__top {
    width: 100%;
    height: 150px;
    background-image: url(img/header.png);
    background-color: #f3f3f3;
}

.header__top__div {
    width: 80%;
    height: 150px;
    align-items: flex-end;
}

.header__logo {
    width: 50%;
    height: 150px;
    padding: 0 0 0 10;
}

.header__logo div {
    width: 45%;
}

.header__logo img {
    width: 255px;
    height: 150px;
}

.header__social {
    width: 50%;
    align-items: flex-end;
    padding: 0 0 20px 0;
}

.social__iconos {
    padding: 14px;
}

.social__iconos a {
    font-size: 2em;
    color: white;
    transition: all 200ms ease-in-out;
    text-decoration: none;
}

.social__iconos a:hover {
    color: var(--naranja);
}

.item_h {
    font-size: 1.5rem;
}

.item_h p {
    margin: 0;
}

nav {
    width: 70%;
    font-size: 1.3rem;
    font-weight: 600;
}

ul {
    padding: 0;
}

.nav__ul {
    width: 100%;
    list-style: none;
    align-items: flex-start;
    gap: 75px;
    z-index: 10001;
}

.nav__ul li {
    width: 220px;
    position: relative;
}

.nav__a {
    width: 220px;
    height: 35px;
    text-align: center;
    border-radius: 0 0 15px 15px;
    background-color: var(--verde2);
    transition: all 300ms ease-in-out;
    gap: 3px;
    color: white;
}

.nav__a:hover {
    color: white;
    background-color: var(--naranja);
}

.prod__ul {
    visibility: hidden;
    display: none;
    opacity: 0;
    width: 100%;
    background-color: var(--verde2);
    border-radius: 0 0 15px 15px;
    transition: all 300ms ease-in-out;
}

.drop_down:hover #productos {
    border-radius: 0;
}

.drop_down:hover .prod__ul {
    opacity: 1;
    visibility: visible;
    display: block;
}

#productos {
    cursor: pointer;
    color: white;
}

.prod__ul hr {
    width: 75%;
    border-color: var(--verde);
    margin: 0 auto;
}

.prod__a {
    width: 220px;
    height: 45px;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    border-radius: 15px;
    transition: all 300ms ease-in-out;
}

.prod__a:hover {
    color: white;
    border-radius: 15px;
    background-color: var(--naranja);
}

/* full menu */
.f_menu_btn {
    color: white;
    display: none;
}

.full_nav {
    position: fixed;
    top: -105%;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 25px;
    background-color: rgba(153, 204, 51, 1);
    z-index: 3000;
    font-size: 2.5rem;
    opacity: 0;
    transition: all 400ms ease-in-out;
}

.full_nav_ul {
    margin-top: 50px;
    gap: 30px;
}

.full_show {
    top: 0;
    opacity: 1;
}

/* arriba btn */
.to_top {
    font-size: 1.5em;
    position: fixed;
    bottom: 180;
    right: -55;
    width: 50px;
    height: 50px;
    background-color: var(--verde);
    border-radius: 10px;
    opacity: 0;
    transition: all 300ms ease-in-out;
    border: none;
    padding: 5px;
}

.lado {
    right: 20;
    opacity: 0.4;
}

.to_top:hover {
    opacity: 0.71;
}

@media screen and (max-width: 1350px) {
    .item_h {
        font-size: 1.2rem;
    }

    .header__top__div {
        width: 100%;
    }
}

@media screen and (max-width: 1000px) {
    .header__top__div {
        width: 80%;
        flex-direction: column;
    }

    .header__logo {
        width: 100%;
        justify-content: flex-start;
        padding: 0;
    }

    .header__social {
        width: 100%;
        justify-content: flex-end;
    }

    .nav__ul li,
    .nav__a,
    .prod__a {
        width: 100%;
    }
}

@media screen and (max-width: 900px) {
    .to_top {
        display: none;
    }

    .header__logo,
    .header__logo div,
    .header__logo img {
        width: 100%;
    }

    .header__social {
        display: none;
    }

    .header__top {
        height: 190px;
    }

    .header__top__div {
        width: 100%;
    }

    nav {
        width: 100%;
        font-size: 1rem;
    }

    .nav__ul {
        gap: 5px;
    }

    .nav__ul li {
        width: 32%;
    }

    .nav__a,
    .prod__a,
    .prod__ul li {
        width: 100%;
        margin: auto;
    }

    .prod__a {
        font-size: 0.9rem;
        height: 40px;
        width: 100%;

    }

    /* .prod__ul li {
        padding: 10px 0;
    } */

    /* .f_menu_btn {
        width: 100%;
        color: white;
        display: flex;
        margin: auto;
        font-size: 1.5rem;
        padding: 10px;
        cursor: pointer;
        background-color: var(--verde);
    } */

}