.davo-reserva,
.davo-reserva * {
    box-sizing: border-box;
}

.davo-reserva {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;

    width: 100%;
    padding: 14px 40px 16px;

    background: #8c734b;
    box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.2);

    font-family: Arial, Helvetica, sans-serif;
}

.davo-reserva__form {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(170px, 1fr)
        minmax(170px, 1fr)
        minmax(125px, 0.8fr)
        minmax(125px, 0.8fr)
        minmax(190px, 1.1fr)
        minmax(190px, auto);

    gap: 18px;
    align-items: end;
}

.davo-reserva .campo {
    min-width: 0;
}

.davo-reserva .campo label {
    display: block;
    margin: 0 0 6px;

    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.davo-reserva .campo input,
.davo-reserva .campo select {
    width: 100%;
    height: 48px;
    margin: 0;
    padding: 0 14px;

    border: 1px solid #e0e0e0;
    border-radius: 0;
    outline: none;

    background: #ffffff;
    color: #343434;

    font-family: inherit;
    font-size: 16px;
    box-shadow: none;
}

.davo-reserva .campo input:focus,
.davo-reserva .campo select:focus {
    border-color: #d5c39f;
    outline: 2px solid rgba(255, 255, 255, 0.22);
}

.davo-reserva button {
    width: 100%;
    min-width: 190px;
    height: 48px;
    margin: 0;
    padding: 0 14px;

    border: 1px solid #ffffff;
    border-radius: 0;

    background: transparent;
    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;

    cursor: pointer;
    transition: 0.2s;
}

.davo-reserva button::after {
    content: " →";
    margin-left: 8px;
    font-size: 20px;
}

.davo-reserva button:hover {
    background: #ffffff;
    color: #8c734b;
}

/* Evita que a barra cubra o final da página */
body {
    padding-bottom: 105px;
}

/* Sobe o botão flutuante de WhatsApp acima da barra */
.joinchat,
.joinchat__button,
.whatsapp-button,
.whatsapp-float,
.wa__btn_popup,
#whatsapp-button,
a[href*="wa.me"] {
    margin-bottom: 95px !important;
}

@media (max-width: 1200px) {
    .davo-reserva {
        position: relative;
        padding: 22px 25px;
    }

    body {
        padding-bottom: 0;
    }

    .davo-reserva__form {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .davo-reserva button {
        min-width: 0;
    }

    .joinchat,
    .joinchat__button,
    .whatsapp-button,
    .whatsapp-float,
    .wa__btn_popup,
    #whatsapp-button,
    a[href*="wa.me"] {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 750px) {
    .davo-reserva {
        position: relative;
        padding: 20px;
    }

    .davo-reserva__form {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .davo-reserva button {
        grid-column: 1 / -1;
        background: #ffffff;
        color: #8c734b;
    }
}

@media (max-width: 500px) {
    .davo-reserva__form {
        display: flex;
        flex-direction: column;
    }

    .davo-reserva .campo,
    .davo-reserva button {
        width: 100%;
    }
}