/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Quicksand', sans-serif;
    height: 100%;
    background-color: rgba(173, 255, 173, 0.76);
}

/* Cabeçalho */
header {
    background-color: #2c3e50;
    padding: 1rem;
    border-radius: 1rem;
    right: 1rem;
}
.top-header {
    background-color: #36b87a;
    padding: 0.5rem 2rem;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.logo-container {
    display: flex;
    align-items: center;
}
.logo-container h1{
    font-size: 1.8rem;
}
.logo-container img {
    height: 90px;
    margin-right: 10px;
}

nav .back-home {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav .back-home:hover {
    color: #255e25;
}

/* Formulário */
.reserva-bg {
    display: flex;
    justify-content: center;
    padding: 3rem 1rem;
}

.reserva-form {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reserva-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

form label {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: #34495e;
}

form input,
form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
    font-size: 1rem;
}

form textarea {
    resize: vertical;
}

/* Botão */
.confirmar {
    margin-top: 2rem;
    width: 100%;
    padding: 0.75rem;
    background-color: #49d649;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1.3rem;
}

.confirmar:hover {
    background-color: #174038;
}

/* Responsivo */
@media (max-width: 600px) {
    .reserva-form {
        padding: 1.5rem;
    }

    .reserva-form h2 {
        font-size: 1.5rem;
    }
}