@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-dark: #0d1410;
    --card-bg: #BF754B;
    --btn-color: #A6401B;
    --accent-color: #D9B68B;
    --label-color: #A6401B;
    --overlay-color: rgba(166, 64, 27, 0.4);
    --text-main: #ffffff;
    --text-muted: #f0f0f0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    
}

.booking-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: url('image_de9d58.jpg') no-repeat center center/cover;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--overlay-color);
    backdrop-filter: brightness(0.6);
    z-index: 1;
}

.main-container {
    position: relative;
    width: 100%;
    max-width: 1140px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
    z-index: 2;
}

/* Panel Izquierdo */
.info-panel {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}
.info-panel.visible { opacity: 1; transform: translateY(0); }

.subtitle {
    color: #fff;
    letter-spacing: 8px;
    font-size: 10px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.main-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 52px;
    line-height: 1;
    color: #fff;
    margin-bottom: 10px;
}

.main-title .highlight {
    color: var(--accent-color);
    font-style: italic;
}

.elegant-divider {
    position: relative;
    width: 220px;
    height: 1px;
    background: linear-gradient(to right, transparent, #fff 50%, transparent);
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.elegant-divider .dot {
    width: 4px;
    height: 4px;
    background-color: #fff;
    border-radius: 50%;
}

.intro-text {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 360px;
}

.contact-label {
    font-family: 'Bodoni Moda', serif !important;
    color: var(--label-color) !important;
    font-size: 12px !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-item p {
    font-size: 13px;
    color: #fff;
    margin-bottom: 15px;
}

/* Formulario Ajustado y Compacto (Sin barras) */
.form-panel {
    background-color: var(--card-bg);
    padding: 35px 40px;
    border-radius: 40px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.96);
    transition: all 0.8s ease;
    max-height: 95vh; 
    overflow: hidden; /* Elimina la barra horrible */
}

.form-panel.visible { opacity: 1; transform: scale(1); }

.form-header {
    font-family: 'Bodoni Moda', serif;
    color: #fff;
    font-size: 24px;
    margin-bottom: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px; /* Reducido para compactar */
}

.input-group { margin-bottom: 10px; }
.full-width { grid-column: span 2; }

.input-group label {
    display: block;
    margin-bottom: 5px;
}

input, select, textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    padding: 10px 16px;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    border-radius: 25px;
    outline: none;
}

select option {
    background-color: var(--accent-color);
    color: #000;
}

.submit-btn {
    position: relative;
    width: 100%;
    background-color: var(--btn-color);
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s ease;
    z-index: 1;
    margin-top: 10px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.submit-btn:hover::before { left: 100%; }

.submit-btn:hover {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.form-footer {
    text-align: center;
    margin-top: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    body { overflow: auto; }
    .booking-section { height: auto; }
    .main-container { grid-template-columns: 1fr; gap: 30px; }
    .form-panel { padding: 25px; max-height: none; }
}