/* =====================================================================
   hospede.4al.app — área reservada do hóspede
   ---------------------------------------------------------------------
   Variáveis injectadas pelo _header.php por tenant:
     --brand-primary
   Tudo o resto é neutro e responsivo. Mobile-first.
   ===================================================================== */

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: #f5f7fa;
    color: #1f2937;
    font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
}

a { color: var(--brand-primary, #1f7a8c); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Header ---------- */

.hospede-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.hospede-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.hospede-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.hospede-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-primary, #1f7a8c);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.hospede-brand-name {
    font-weight: 600;
    font-size: 1.05rem;
    color: #1f2937;
}

.hospede-nav {
    display: flex;
    gap: 18px;
    font-size: .95rem;
}
.hospede-nav a {
    color: #4b5563;
    text-decoration: none;
}
.hospede-nav a:hover {
    color: var(--brand-primary, #1f7a8c);
}

/* ---------- Main ---------- */

.hospede-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 20px 64px;
}

.hospede-h1 {
    margin: 0 0 8px;
    font-size: 1.6rem;
    color: #111827;
}
.hospede-lead {
    margin: 0 0 28px;
    color: #6b7280;
}

.hospede-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 1px 2px rgba(0,0,0,.03);
}

.hospede-card-strip {
    border-top: 4px solid var(--brand-primary, #1f7a8c);
}

.hospede-soft {
    background: #eef2f7;
    border-radius: 10px;
    padding: 14px 18px;
    color: #4b5563;
}

.hospede-btn {
    display: inline-block;
    background: var(--brand-primary, #1f7a8c);
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}
.hospede-btn:hover { filter: brightness(.92); text-decoration: none; color: #fff; }

/* ---------- Footer ---------- */

.hospede-footer {
    border-top: 1px solid #e5e7eb;
    background: #fff;
    padding: 18px 20px;
    color: #6b7280;
    font-size: .88rem;
}
.hospede-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.hospede-footer-sep { opacity: .5; }

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
    .hospede-brand-name { display: none; }
    .hospede-main { padding: 20px 16px 48px; }
    .hospede-card { padding: 20px 16px; }
}
