@import 'principal.css';
@import 'prueba-gratuita.css';

:root {
    --color-base: #b54592
}
body {
    background-color: var(--color-base);
    color: white;
    font-family: "Dosis", sans-serif;
    margin: 0px;
}
header {
    height: 50px;
    width: 100%;
    position: fixed;
    z-index: 100;
    div.contenedor {
        display: grid;
        grid-template-columns: 200px 1fr;
        height: 100%;
    }
    div.logo {
        display: flex;
        align-items: center;
        img {
            height: 25px;
        }
    }

    ul {
        list-style: none;
        display: flex;
        justify-content: right;
        gap: 10px;
        margin: 0px;
        padding: 0px;
        height: 100%;
        li {
            display: flex;
            align-items: center;

            a {
                color: white;
                text-decoration: none;

                &:hover, &:active {
                    color: #FF0;
                }
            }

        }
    }
    .hamburguesa {
        display: none;
        button {
            font-size: 150%;
            background: none;
            border: none;
            width: 50px;
            text-align: center;
            color: white;
            cursor: pointer;
        }
    }
    @media screen and (max-width: 600px) {
        nav {
            display: none;
            position: fixed;
            top: 50px;
            left: 0px;
            z-index: 10;
            width: 100%;
            padding-bottom: 20px;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            ul {
                flex-direction: column;
                background-color: var(--color-base);
                height: fit-content;
                padding: 20px 0px;
                li {
                    font-size: 120%;
                    justify-content: center;
                    a {
                        display: inline-block;
                        padding: 10px 30px;
                        width: 100%;
                    }
                }
            }
        }
        .hamburguesa {
            justify-content: right;
            display: flex;
        }
    }
}

div.contenedor {
    width: 1000px;
    margin: 0px auto;
}

@media (max-width: 1000px) {
    div.contenedor {
        width: 100%;
        box-sizing: border-box;
        padding: 0px 10px;
    }
}


