.reservas {
    padding: 1.25rem 1.25rem 2.5rem;
    max-width: 56.25rem;
    margin: 0 auto;
    text-align: center;
}

.reservas h1 {
    font-size: 2.5rem;
    margin-bottom: 0.625rem;
}

.reservas p {
    color: #555;
    font-size: 1.05rem;
}

.intro {
    margin-bottom: 1.25rem;
    color: #555;
}

.calendario {
    width: 100%;
    height: clamp(380px, 58vh, 650px);
    margin-top: 0.5rem;
    margin-bottom: 1.875rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.calendario iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contacto-intro {
    margin-bottom: 1.25rem;
    color: #555;
}

.contacto-opciones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.938rem;
}

.opcion {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-decoration: none;
    color: #2b2b2b;
    cursor: pointer;
    border: none;
}

.opcion img {
    width: 2.813rem;
    height: 2.813rem;
    margin-bottom: 0.625rem;
}

.opcion:hover {
    transform: scale(1.03);
}

.formulario {
    display: none;
    flex-direction: column;
    gap: 1.125rem;
    margin-top: 1.875rem;
}

.campo {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.campo label {
    margin-bottom: 0.313rem;
    font-size: 0.9rem;
}

.campo input, .campo textarea {
    padding: 0.625rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
}

.campo.doble {
    flex-direction: column;
    gap: 0.938rem;
}

.campo.doble div {
    display: flex;
    flex-direction: column;
}

.campo textarea {
    min-height: 6.25rem;
    resize: vertical;
}

.boton-reservar {
    margin-top: 0.625rem;
    padding: 0.875rem;
    background: #77482a;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
}

.boton-reservar:hover {
    background: #945a35;
}

@media (min-width: 768px) {
    .campo.doble {
        flex-direction: row;
    }

    .campo.doble div {
        flex: 1;
    }
}