:root {
    --pix-navy: #001524;
    --pix-red: #d62828;
    --pix-orange: #f77f00;
    --pix-cream: #fef1df;
    --pix-dark: #0f172a;
    --pix-gray: #4b5563;
}

body.pix-booking {
    font-family: 'Poppins', 'Open Sans', sans-serif;
    background: linear-gradient(160deg, rgba(0, 21, 36, 0.96) 0%, rgba(214, 40, 40, 0.92) 55%, rgba(247, 127, 0, 0.88) 100%);
    color: #fff;
    min-height: 100vh;
}

.pix-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: url('../dist/img/pattern-dots.svg') repeat;
    opacity: 0.08;
    z-index: 1;
}

.pix-shell {
    position: relative;
    z-index: 2;
    padding: 28px 0 60px;
}

.pix-container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 28px;
}

.pix-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.pix-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pix-brand img {
    height: 56px;
    width: auto;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
}

.pix-brand h1 {
    font-size: 22px;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.pix-auth a {
    color: #ffffff;
    font-weight: 500;
    margin-left: 12px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.pix-auth a:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

.pix-hero {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    align-items: center;
}

.pix-copy {
    grid-column: span 6;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 40px 36px;
    box-shadow: 0 30px 50px -50px rgba(15, 23, 42, 0.8);
}

.pix-copy h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 16px;
}

.pix-copy p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 24px;
}

.pix-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pix-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 13px;
}

.pix-form-card {
    grid-column: span 6;
    background: #ffffff;
    color: var(--pix-dark);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 24px 45px -32px rgba(15, 23, 42, 0.7);
}

.pix-form-card h3 {
    margin-bottom: 24px;
    font-size: 22px;
    font-weight: 600;
    color: var(--pix-dark);
}

.pix-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.pix-form-row label {
    font-size: 13px;
    font-weight: 600;
    color: var(--pix-gray);
    margin-bottom: 6px;
    display: block;
}

.pix-form-card .form-control,
.pix-form-card select {
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 12px 14px;
    font-size: 14px;
    width: 100%;
}

.pix-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 10px;
    height: 36px;
    border-radius: 999px;
    background: rgba(0, 21, 36, 0.08);
    color: var(--pix-gray);
}

.pix-submit {
    margin-top: 18px;
    width: 100%;
    border-radius: 12px;
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--pix-red) 0%, var(--pix-orange) 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 32px -24px rgba(214, 40, 40, 0.7);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pix-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 35px -20px rgba(247, 127, 0, 0.7);
}

.pix-featured {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.pix-featured img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 22px 45px -30px rgba(15, 23, 42, 0.65);
}

.pix-foot {
    margin-top: 60px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.pix-foot a {
    color: rgba(255, 255, 255, 0.86);
    margin: 0 8px;
    text-decoration: none;
}

.pix-foot a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .pix-hero {
        grid-template-columns: 1fr;
    }
    .pix-copy,
    .pix-form-card {
        grid-column: span 12;
    }
    .pix-featured {
        flex-direction: column;
    }
}

@media (max-width: 639px) {
    body.pix-booking {
        background: #001524;
    }
    .pix-shell {
        padding: 16px 0 40px;
    }
    .pix-nav {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    .pix-form-row {
        grid-template-columns: 1fr;
    }
}

/* Notices */
.modal .login-block {
    background: #ffffff;
    padding: 32px;
    border-radius: 18px;
    color: var(--pix-dark);
}

.modal .login-block h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--pix-dark);
}

.modal .login-block input {
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 12px 14px;
    margin-bottom: 14px;
    width: 100%;
}

.modal .login-block button {
    width: 100%;
    border-radius: 12px;
    border: none;
    padding: 12px 18px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--pix-red) 0%, var(--pix-orange) 100%);
    color: #fff;
}

.modal .login-block a {
    color: var(--pix-red);
    font-weight: 600;
}

/* Modal refinements */
.modal .login-block {
    background: #ffffff;
    padding: 32px;
    border-radius: 18px;
    color: var(--pix-dark);
}

.modal .login-block h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--pix-dark);
}

.modal .login-block input {
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 12px 14px;
    margin-bottom: 14px;
    width: 100%;
}

.modal .login-block button {
    width: 100%;
    border-radius: 12px;
    border: none;
    padding: 12px 18px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--pix-red) 0%, var(--pix-orange) 100%);
    color: #fff;
}

.modal .login-block a {
    color: var(--pix-red);
    font-weight: 600;
}

