* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato";
}
body {
    background: rgb(245, 230, 245);
}
header {
    padding: 10px 0;
    background: rgb(150, 75, 125);
    color: white;
    text-align: center;
}
nav.menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
nav.menu li {
    display: inline-block;
    padding: 0 8px;
}
nav.menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
nav.menu a:hover {
    color: #ffccff;
}
.logo {
    font-size: 30px;
    text-decoration: none;
    color: white;
    display: inline-block;
    text-align: left;
}
.clear {
    clear: both;
}
nav.menu {
    display: inline-block;
    text-align: right;
}
.center {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2%;
}
section.reserva {
    padding: 40px 0;
    text-align: center;
}
section.reserva select, input[type=text], section.reserva input[type=date] {
    width: 100%;
    height: 90px;
    padding-left: 7px;
    margin-bottom: 10px;
    border: 1px solid #e0a3e9;
    border-radius: 5px;
    background-color: #ffe6f2;
    color: #cc3366;
    font-size: 30px;
    transition: border-color 0.3s, background-color 0.3s;
}
section.reserva input[type=date]:hover, section.reserva input[type=date]:focus, section.reserva input[type=text]:focus {
    border-color: #cc6699;
    background-color: #ffccff;
    outline: none;
}
 input[type=submit] {
    background: rgb(220, 75, 145);
    width: 200px;
    height: 90px;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    font-size: 30px;
    font-weight: bold;
    margin-top: 10px;
}
.sucesso {
    width: 100%;
    margin: 10px 0;
    padding: 8px 15px;
    color: #3c763d;
    background: #dff0d8;
    border-radius: 5px;
}
.btn-pink {
    font-size: 15px;
    background-color: pink;
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s;
}
.btn-pink:hover {
    background-color: #ff69b4;
}
section.agendamentos {
    padding: 30px 0;
}
.box-single-horario {
    float: left;
    width: 100%;
    padding: 10px;
}
.box-single-wraper {
    font-size: 20px;
    padding: 20px;
    background: #ffe6f2;
    border-radius: 8px;
    border: 1px solid #ffcce0;
    text-align: left;
}
.box-single-wraper a {
    color: #cc3366;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}
.box-single-wraper a:hover {
    color: #ff66a3;
}

footer.fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer {

    text-align: center;
    padding: -30px 0;
    background: #964B7D;
    font-size: 30px;
    color: white;
}

@media (max-width: 768px) {
    nav.menu li {
        display: block;
        padding: 10px 0;
    }
    nav.menu {
        float: none;
        text-align: center;
    }
    .box-single-horario {
        width: 50%;
    }
}

@media (max-width: 560px) {
    .logo {
        float: none;
        display: block;
        text-align: center;
    }
    nav.menu {
        float: none;
        text-align: center;
    }
    .box-single-horario {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        float: none;
        display: block;
        text-align: center;
    }
    nav.menu {
        float: none;
        text-align: center;
    }
    .box-single-horario {
        width: 100%;
    }
}