.contenedor-header {

    width: 90%;
    max-width: 1200px;
    background: var(--shade-2);
    border-radius: 7px;
    margin: auto;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;

}

.header {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;

    .logo {
        display: inline-block;
        padding: 20px;
        width: auto;
        height: 120px;
        border-radius: 7px;
        position: relative;

        img {
            height: 100%;
        }

    }

    .navbar {
        display: flex;
        gap: 30px;
        padding: 20px;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;

        a {
            display: flex;
            flex-direction: column;
            /* 🔥 Esto pone el icono arriba */
            align-items: center;
            /* display: inline-flex; */
            gap: 2px;
            align-items: center;
            font-weight: 700;
            font-size: 20px;
            border-radius: 5px;

            &.boton {
                font-weight: 500;
            }
        }
    }

    @media screen and (max-width: 768px) {
        & {
            flex-direction: column;
            align-items: center;

            .logo {
                /* display: inline-block; */
                padding: 10px;
                /* width: auto; */
                height: 100px;
                border-radius: 3px;
                /* position: relative; */

                img {
                    height: 80%;
                }
            }

            .navbar {
                a {
                    font-size: 15px;

                    svg {
                        width: 18px;
                        height: 18px;
                    }
                }
            }
        }

    }
}