.elementor-9 .elementor-element.elementor-element-4263b6f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-3b5a885 */* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.reserva-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    padding: 30px;
}

.reserva-title {
    color: #333;
    font-size: 28px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reserva-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 15px;
}


.date-input {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23777"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11z"/></svg>') no-repeat right 15px center;
    background-size: 20px;
    cursor: pointer;
}

.guest-select {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23777"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 15px center;
    background-size: 20px;
    cursor: pointer;
}

.submit-btn {
    background: linear-gradient(135deg, #404040, #404040);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    width: 100%;
    grid-column: span 2;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(180, 134, 11, 0.3);
}

@media (max-width: 768px) {
    .reserva-form {
        grid-template-columns: 1fr;
    }
    
    .submit-btn {
        grid-column: span 1;
    }
}

.reserva-container {
    max-width: 500px;
    margin: auto;
    padding: 2em;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}
.reserva-title {
    text-align: center;
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 0.8);
}
.reserva-form .form-group {
    margin-bottom: 15px;
}
.reserva-form label-form {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.7);
}
.date-input, .guest-select {
    width: 100%;
    padding: 8px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.4);
    color: #000;
}
.submit-btn {
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 115, 170, 0.4); /* Azul con 40% opacidad */
    color: rgba(0, 0, 0, 0.8);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.submit-btn:hover {
    background-color: rgba(0, 95, 141, 0.4);
}/* End custom CSS */