:root {
    --royal-blue-light: #d940ed17;
    --royal-blue-dark: #3946d4;
    --white: #fff;
    --background: #e2e3e9;
}

* {
    padding: 0%;
}

body {
    background-color: rgb(38, 7, 68);
    background-color: rgb(210, 170, 248);
    background-image: url(img/capaprincipal2.jpg);
    background-size: cover;
    max-height: 100%;
    font-size: 20px;
    background-repeat: no-repeat;
}

p{
    font-size: 40px;
    font-weight: 300;
    text-align: center;
    color: rgb(255, 255, 255);
    background-color: rgba(137, 43, 226, 0.274);
}

.agendar{
    padding: 1%;
    text-align: center;
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: 0.3s ease;
    padding: 0% 0;
    margin: 0px 2%;
    text-shadow: 2px 2px rgb(0, 0, 0);
}

.agendar-link {
    padding: 1%;
    text-align: center;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 20px;
    padding: 1% 0;
    margin: 0px 2%;
    text-shadow: 2px 2px rgba(0, 0, 0, 0);
}

.agendar-link:hover {
    border-bottom: 4px solid rgb(255, 255, 255);
    border-top: 4px solid rgb(255, 255, 255);
    border-left: 4px solid rgb(255, 255, 255);
    border-right: 4px solid rgb(255, 255, 255);
    transition: 0.3s ease;
    background-color: red;
    padding: 1% 1%;
    margin: 0px 2%;
    text-shadow: 2px 2px rgba(0, 0, 0, 0);
    font-size: 1.2em;
}

.rodape{
    color: rgba(247, 142, 233, 0.418);
    text-align: center;
    padding: auto;
}

li {
    padding: 1%;
    display: flex;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color:  rgb(255, 255, 255);
    font-size: 20px;
    cursor: pointer;
}

.cardapio :hover {
    transition: 0.3s ease;
    font-size: 1.2em;
    text-align: center;
}

a {
    color: #ffffff;
    text-decoration: none;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    height: 4.6875rem;
    color: rgb(142, 11, 175);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fbf7fc;
}

.menu {
    list-style: none;
    display: flex;
    gap: 0.5rem;
}

.menu a {
    display: block;
    padding: 1rem;
    border-radius: 0.5rem;
}

.btn-menu {
    display: none;
}

@media (max-width: 600px) {
    .menu {
        display: block;
        position: absolute;
        top: 4.6875rem;
        left: 0%;
        background: #000000;
        text-align: center;
        width: 100%;
        height: 0%;
        z-index: 1;
        visibility: hidden;
        overflow-y: hidden;
        transition: 0.5s;
    }
    .menu a {
        padding: 1rem 0;
        margin-inline: 1rem;
        border-bottom: 1px solid rgba(206, 72, 247, 0.096);
        border-radius: 0%;
    }
    .btn-menu {
        background: none;
        border: none;
        font: inherit;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: white
        padding-block 1rem;
        cursor: pointer; 
    }
    .hamburger {
        border-top: 0.125rem solid;
        width: 1.25rem;
        color:  #ffffff;
    }
    .hamburger::before,
    .hamburger::after {
        content: " ";
        display: block;
        width: 1.25rem;
        height: 0.125rem;
        background: currentColor;
        margin-top: 0.3125rem;
        position: relative;
        transition: 0.3s;
    }
    .nav.active .menu {
        height: calc(100vh - 4.6875rem);
        visibility: visible;
        overflow-y: auto;
    }
    .nav.active .hamburger {
        border-top-color: transparent;
    }
    .nav.active .hamburger::before {
        transform: rotate(135deg);
    }
    .nav.active .hamburger::after{
        transform: rotate(-135deg);
        top: 7px;
    }



}