/* Redesenho visual da tela pública (cliente) - i-Reserva / Empório Villa Santo Antônio.
   Escopado inteiramente sob body.public-shell para não afetar o painel admin. */

body.public-shell {
    --pub-bg: #faf4e9;
    --pub-surface: #ffffff;
    --pub-ink: #2b1710;
    --pub-muted: #7d6a5c;
    --pub-line: #ecdfc9;
    --pub-primary: #7a1e3d;
    --pub-primary-dark: #591430;
    --pub-primary-soft: #f7e6ea;
    --pub-gold: #c9992f;
    --pub-gold-light: #e7c877;
    --pub-footer-bg: #2b0f18;
    --pub-font-heading: "Cormorant Garamond", Georgia, serif;
    --pub-font-body: "Inter", "Segoe UI", Arial, sans-serif;
    background: var(--pub-bg);
    font-family: var(--pub-font-body);
}

body.public-shell h1,
body.public-shell h2,
body.public-shell h3,
body.public-shell .brand-wordmark {
    font-family: var(--pub-font-heading);
    font-weight: 700;
    letter-spacing: 0.2px;
}

body.public-shell .topbar nav a {
    -webkit-tap-highlight-color: transparent;
}

body.public-shell .topbar {
    background: rgba(250, 244, 233, 0.92);
    border-bottom: 1px solid var(--pub-line);
}

body.public-shell .topbar nav a {
    align-items: center;
    color: var(--pub-ink);
    display: inline-flex;
    gap: 6px;
}

body.public-shell .topbar nav a svg {
    color: var(--pub-primary);
    height: 16px;
    width: 16px;
}

body.public-shell .topbar nav a:hover {
    background: var(--pub-primary-soft);
    color: var(--pub-primary-dark);
}

body.public-shell .topbar nav a.nav-button {
    background: var(--pub-ink);
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    padding: 10px 16px;
}

body.public-shell .topbar nav a.nav-button svg {
    color: #fff;
}

body.public-shell .topbar nav a.nav-button:hover {
    background: var(--pub-primary-dark);
    color: #fff;
}

body.public-shell .page {
    overflow-x: hidden;
}

body.public-shell .page.page-full {
    max-width: none;
    padding: 0;
}

body.public-shell .panel {
    border-color: var(--pub-line);
    box-shadow: 0 16px 42px rgba(43, 15, 24, 0.07);
    min-width: 0;
}

body.public-shell .panel h1,
body.public-shell .panel h2,
body.public-shell .panel h3 {
    color: var(--pub-primary);
}

body.public-shell label:not(.choice-pill):not(.check) {
    display: block;
}

body.public-shell label:not(.choice-pill):not(.check) > input,
body.public-shell label:not(.choice-pill):not(.check) > select,
body.public-shell label:not(.choice-pill):not(.check) > textarea {
    display: block;
    margin-top: 8px;
}

body.public-shell .field-name {
    background: var(--pub-primary-soft);
    border-radius: 999px;
    color: var(--pub-primary-dark);
    display: inline-block;
    padding: 4px 12px;
}

body.public-shell .field-name.optional {
    background: none;
    color: var(--pub-ink);
    padding: 0;
}

body.public-shell .required-mark,
body.public-shell .optional-mark {
    background: none;
    border-radius: 0;
    display: inline;
    font-size: 11px;
    font-weight: 600;
    padding: 0;
    text-transform: none;
    width: auto;
}

body.public-shell .required-mark {
    color: var(--pub-primary);
}

body.public-shell .optional-mark {
    color: var(--pub-muted);
}

body.public-shell .check {
    line-height: 1.55;
}

body.public-shell .check a {
    color: var(--pub-primary);
    text-decoration: underline;
}

body.public-shell .check .required-mark,
body.public-shell .check .optional-mark {
    margin-left: 4px;
    vertical-align: middle;
}

.confirmation-panel {
    padding: 44px 34px;
    text-align: center;
}

.confirmation-icon {
    align-items: center;
    background: var(--pub-primary-soft);
    border-radius: 999px;
    color: var(--pub-primary);
    display: inline-flex;
    height: 64px;
    justify-content: center;
    margin: 0 auto 18px;
    width: 64px;
}

.confirmation-icon svg {
    height: 30px;
    width: 30px;
}

.confirmation-panel .button {
    margin: 8px auto 0;
}

/* .eyebrow padrão (#ffe0a7, app.css) foi pensado pra fundo escuro do hero - dentro dos
   cards/painéis claros da área pública (avaliação, gerenciar reserva, obrigado, etc.)
   fica com contraste fraco. Reforça pra um dourado mais escuro, legível no fundo branco. */
body.public-shell .panel .eyebrow {
    color: var(--pub-gold);
    font-weight: 800;
}

/* ---------- Avaliação pós-reserva (avaliacao.php) ---------- */

.survey-panel {
    max-width: 520px;
    margin: 60px auto;
}

.survey-panel h1 {
    font-size: 26px;
    margin: 0 0 10px;
}

.survey-choice {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
}

.survey-btn {
    align-items: center;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    font-family: var(--pub-font-body);
    font-size: 16px;
    font-weight: 700;
    gap: 10px;
    justify-content: center;
    padding: 16px 20px;
}

.survey-btn svg {
    height: 20px;
    width: 20px;
}

.survey-btn-yes {
    background: var(--pub-primary);
    border: 0;
    color: #fff;
}

.survey-btn-no {
    background: var(--pub-surface);
    border: 1px solid var(--pub-line);
    color: var(--pub-muted);
}

.survey-form {
    margin-top: 24px;
    text-align: left;
}

.survey-question {
    margin-bottom: 22px;
}

.survey-question .field-name {
    display: block;
    margin-bottom: 10px;
}

.rating-scale {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.rating-option {
    cursor: pointer;
}

.rating-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rating-option span {
    align-items: center;
    border: 1px solid var(--pub-line);
    border-radius: 12px;
    color: var(--pub-primary-dark);
    display: flex;
    font-family: var(--pub-font-heading);
    font-size: 20px;
    font-weight: 700;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.rating-option input:checked + span {
    background: var(--pub-primary);
    border-color: var(--pub-primary);
    color: #fff;
}

.survey-comment {
    display: block;
    margin-bottom: 22px;
}

.survey-form .button {
    width: 100%;
}

/* ---------- Gestão rápida de reserva sem login (gerenciar-reserva.php) ---------- */

.manage-panel .manage-details {
    background: var(--pub-bg);
    border-radius: 14px;
    margin: 18px 0;
    padding: 16px 18px;
    text-align: left;
}

.manage-panel .manage-details p {
    font-size: 14px;
    margin: 0 0 6px;
}

.manage-panel .manage-current-status {
    border-top: 1px solid var(--pub-line);
    margin-top: 10px;
    padding-top: 10px;
}

/* ---------- Área do cliente (minhas-reservas.php) ---------- */

body.public-shell .badge {
    background: var(--pub-primary-soft);
    color: var(--pub-primary-dark);
}

body.public-shell .reservation-card {
    background: linear-gradient(180deg, #fff, var(--pub-bg));
    border-color: var(--pub-line);
    box-shadow: 0 12px 30px rgba(43, 15, 24, 0.06);
}

body.public-shell .reservation-card h2 {
    color: var(--pub-primary);
}

body.public-shell .reservation-card p {
    color: var(--pub-muted);
}

body.public-shell .feedback-box,
body.public-shell .feedback-summary,
body.public-shell .empty-state {
    background: linear-gradient(180deg, #fff, var(--pub-primary-soft));
    border-color: var(--pub-line);
}

body.public-shell .feedback-box h3 {
    color: var(--pub-primary);
}

body.public-shell .feedback-box p,
body.public-shell .feedback-summary p,
body.public-shell .feedback-sent,
body.public-shell .empty-state p,
body.public-shell .empty-state strong {
    color: var(--pub-muted);
}

body.public-shell .empty-state strong {
    color: var(--pub-ink);
}

body.public-shell .feedback-summary span {
    color: var(--pub-primary-dark);
}

.policy-panel {
    max-width: 760px;
    text-align: left;
}

.policy-updated {
    color: var(--pub-muted);
    font-size: 13px;
    font-weight: 700;
    margin-top: -6px;
}

.policy-panel h2 {
    font-size: 18px;
    margin-top: 28px;
}

.policy-panel p,
.policy-panel li {
    color: var(--pub-ink);
    line-height: 1.6;
}

.policy-panel ul {
    margin: 8px 0;
    padding-left: 20px;
}

.policy-panel li {
    margin-bottom: 4px;
}

.policy-panel .button {
    margin-top: 24px;
}

body.public-shell .button.primary {
    background: linear-gradient(135deg, var(--pub-primary), var(--pub-primary-dark));
    box-shadow: 0 10px 22px rgba(122, 30, 61, 0.28);
    gap: 8px;
}

body.public-shell .button svg {
    height: 18px;
    width: 18px;
}

body.public-shell .button.primary:hover {
    background: linear-gradient(135deg, var(--pub-primary-dark), var(--pub-primary));
}

body.public-shell input:focus,
body.public-shell select:focus,
body.public-shell textarea:focus {
    border-color: var(--pub-primary);
    box-shadow: 0 0 0 4px rgba(122, 30, 61, 0.12);
}

body.public-shell .alert {
    text-align: center;
}

body.public-shell .page:not(.page-full) .alert {
    margin-left: auto;
    margin-right: auto;
    max-width: 640px;
}

body.public-shell .page.page-full .alert {
    margin: 16px auto;
    max-width: 640px;
    padding: 14px 24px;
}

body.public-shell .alert.success {
    background: #eaf3ea;
    color: #2f6b3f;
}

/* ---------- Hero ---------- */

.public-hero {
    align-items: center;
    background:
        linear-gradient(100deg, rgba(24, 8, 14, 0.9) 0%, rgba(24, 8, 14, 0.62) 52%, rgba(24, 8, 14, 0.24) 82%),
        url('../img/hero-fundo.jpg') center/cover no-repeat;
    color: #fff;
    display: flex;
    min-height: 560px;
    padding: 60px 32px 46px;
}

.public-hero-inner {
    max-width: 760px;
}

.public-hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.08;
    margin: 14px 0 18px;
}

.public-hero h1 span {
    color: var(--pub-gold-light);
}

.public-hero p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 26px;
    max-width: 480px;
}

.public-hero p strong {
    color: var(--pub-gold-light);
}

.hero-cta-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.public-hero .trust-line {
    align-items: center;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    font-size: 13px;
    font-weight: 700;
    gap: 8px;
    margin-top: 0;
}

.hero-steps {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 30px;
    max-width: 700px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-step {
    display: flex;
    gap: 10px;
}

.hero-step-icon {
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: var(--pub-gold-light);
    display: flex;
    flex: 0 0 auto;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.hero-step-icon svg {
    height: 18px;
    width: 18px;
}

.hero-step strong {
    color: #fff;
    display: block;
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 2px;
}

.hero-step p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
}

.hero-notice {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    margin: 14px 0 0;
    max-width: 700px;
}

/* ---------- Faixa de benefícios ---------- */

.benefits-section {
    background: var(--pub-bg);
    padding: 26px 24px 4px;
    text-align: center;
}

.benefits-section h2 {
    color: var(--pub-ink);
    font-size: 24px;
    margin: 0 0 16px;
    padding-bottom: 14px;
    position: relative;
}

.benefits-section h2 .divider {
    background: var(--pub-gold);
    bottom: 0;
    height: 2px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 56px;
}

.benefits-section h2 .divider::before {
    background: var(--pub-gold);
    border-radius: 50%;
    content: '';
    height: 6px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
}

.benefits-row {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 0 auto 22px;
    max-width: 1080px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.benefit-item svg,
.benefit-item img {
    height: 34px;
    width: 34px;
}

.benefit-item svg {
    color: var(--pub-primary);
}

.benefit-item span {
    color: var(--pub-ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

/* ---------- Card de destaque do restaurante ---------- */

.spotlight {
    background: var(--pub-surface);
    border-radius: 24px;
    box-shadow: 0 20px 48px rgba(43, 15, 24, 0.12);
    display: grid;
    gap: 0;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    margin: 0 24px 40px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.spotlight-photo {
    background: #000;
    height: 420px;
    max-height: 100%;
    overflow: hidden;
}

.spotlight-photo img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.spotlight-content {
    padding: 30px 34px;
}

.spotlight-content h3 {
    color: var(--pub-primary);
    font-size: 26px;
    margin: 0 0 8px;
}

.spotlight-rating {
    align-items: center;
    color: var(--pub-gold);
    display: flex;
    font-weight: 800;
    gap: 8px;
    margin-bottom: 14px;
}

.spotlight-rating span {
    color: var(--pub-muted);
    font-weight: 600;
}

.spotlight-tags {
    color: var(--pub-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 600;
    gap: 16px;
    margin-bottom: 18px;
}

.spotlight-features {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 22px;
}

.spotlight-maps-link {
    color: var(--pub-primary);
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    margin: -10px 0 18px;
    text-decoration: underline;
}

.account-toggle {
    align-items: center;
    background: none;
    border: 1px dashed var(--pub-line);
    border-radius: 12px;
    color: var(--pub-primary-dark);
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    gap: 8px;
    margin: 4px 0 8px;
    padding: 10px 16px;
}

.account-toggle svg {
    height: 18px;
    width: 18px;
}

.account-fields {
    background: var(--pub-bg);
    border-radius: 12px;
    margin-bottom: 8px;
    padding: 16px;
}

.account-fields-hint {
    color: var(--pub-muted);
    font-size: 13px;
    margin: 0 0 10px;
}

.spotlight-features span {
    color: var(--pub-ink);
    font-size: 13px;
    font-weight: 600;
}

.spotlight-note {
    color: var(--pub-muted);
    font-size: 12px;
    margin-top: 10px;
}

/* ---------- Prova social ---------- */

.social-proof {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 24px 44px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 8px;
}

.social-proof-item {
    color: var(--pub-ink);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.social-proof-item .stars {
    color: var(--pub-gold);
    font-size: 20px;
    margin-bottom: 8px;
}

.social-proof-item .quote-mark {
    color: var(--pub-primary);
    font-size: 26px;
    font-weight: 900;
    line-height: 0.5;
}

.social-proof-item cite {
    color: var(--pub-muted);
    display: block;
    font-style: normal;
    font-size: 13px;
    margin-top: 4px;
}

.social-proof-item.security {
    align-items: flex-start;
    display: flex;
    gap: 10px;
}

.social-proof-item.security svg {
    color: var(--pub-primary);
    flex: 0 0 auto;
    height: 22px;
    width: 22px;
}

/* ---------- Dúvidas frequentes ---------- */

.faq-section {
    margin: 0 auto 44px;
    max-width: 780px;
    padding: 0 24px;
}

.faq-section h2 {
    color: var(--pub-ink);
    font-size: 24px;
    text-align: center;
    margin: 0 0 24px;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    background: var(--pub-surface);
    border: 1px solid var(--pub-line);
    border-radius: 14px;
    padding: 14px 18px;
}

.faq-list summary {
    color: var(--pub-ink);
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::before {
    color: var(--pub-primary);
    content: '+';
    display: inline-block;
    font-weight: 900;
    margin-right: 10px;
    width: 12px;
}

.faq-list details[open] summary::before {
    content: '–';
}

.faq-list p {
    color: var(--pub-muted);
    font-size: 14px;
    line-height: 1.5;
    margin: 10px 0 0 22px;
}

/* ---------- Layout da reserva ---------- */

body.public-shell form#reserva.form-grid {
    display: block;
}

.reservation-layout {
    margin: 0 auto 60px;
    max-width: 1020px;
    min-width: 0;
    padding: 0 24px;
}

.reservation-layout .panel h2 {
    text-align: center;
}

/* Wizard de reserva em 3 passos */
.wizard-steps {
    align-items: flex-start;
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.wizard-step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 120px;
}

.wizard-step-circle {
    align-items: center;
    background: var(--pub-surface);
    border: 2px solid var(--pub-line);
    border-radius: 50%;
    color: var(--pub-muted);
    display: flex;
    font-family: var(--pub-font-heading);
    font-size: 20px;
    font-weight: 700;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.wizard-step-indicator.active .wizard-step-circle {
    background: var(--pub-primary);
    border-color: var(--pub-primary);
    color: #fff;
}

.wizard-step-indicator.done .wizard-step-circle {
    background: var(--pub-primary-soft);
    border-color: var(--pub-primary);
    color: var(--pub-primary-dark);
}

.wizard-step-indicator.active .wizard-step-label {
    color: var(--pub-primary-dark);
    font-weight: 700;
}

.wizard-step-label {
    color: var(--pub-muted);
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
}

.wizard-step-line {
    background: var(--pub-line);
    height: 2px;
    margin: 22px -14px 0;
    width: 60px;
}

.wizard-field {
    align-items: center;
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.wizard-field-icon {
    align-items: center;
    background: var(--pub-primary-soft);
    border-radius: 14px;
    color: var(--pub-primary-dark);
    display: flex;
    flex: 0 0 auto;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.wizard-field-icon svg {
    height: 22px;
    width: 22px;
}

.wizard-field-body {
    flex: 1 1 auto;
    min-width: 0;
}

.field-label-text {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
}

.party-stepper {
    align-items: center;
    display: flex;
    gap: 12px;
}

.party-stepper-btn {
    align-items: center;
    background: var(--pub-surface);
    border: 1px solid var(--pub-line);
    border-radius: 10px;
    color: var(--pub-primary-dark);
    cursor: pointer;
    display: flex;
    flex: 0 0 auto;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.party-stepper-btn svg {
    height: 18px;
    width: 18px;
}

.party-stepper input {
    border: 1px solid var(--pub-line);
    border-radius: 10px;
    flex: 1 1 auto;
    font-weight: 700;
    padding: 9px 12px;
    text-align: center;
}

.wizard-tip {
    align-items: flex-start;
    background: var(--pub-bg);
    border-radius: 12px;
    color: var(--pub-ink);
    display: flex;
    font-size: 13px;
    gap: 10px;
    margin: 4px 0 24px;
    padding: 14px 16px;
}

.wizard-tip svg {
    color: var(--pub-gold);
    flex: 0 0 auto;
    height: 18px;
    width: 18px;
}

.wizard-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.wizard-actions .wizard-next {
    flex: 1 1 auto;
    max-width: 320px;
}

.grid.three {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-submit {
    margin-top: 8px;
    text-align: center;
}

.form-submit .button {
    padding: 14px 38px;
    width: auto;
}

.form-submit .spotlight-note {
    margin-top: 10px;
}

.consent-group {
    display: grid;
    gap: 6px;
    margin: 4px 0 18px;
}

.check.compact {
    align-items: flex-start;
    font-size: 13px;
    font-weight: 500;
    gap: 8px;
    margin-bottom: 0;
}

.check.compact a {
    align-items: center;
    display: inline-flex;
    gap: 2px;
}

.check.compact a svg {
    height: 13px;
    width: 13px;
}

/* ---------- Botões de escolha (ocasião / ambiente / questionário select) ---------- */

.choice-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
    min-width: 0;
}

.choice-pill {
    background: var(--pub-surface);
    border: 1px solid var(--pub-line);
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    margin: 0;
    padding: 14px 8px;
    position: relative;
    text-align: center;
}

.choice-pill input {
    height: 1px;
    opacity: 0;
    position: absolute;
    width: 1px;
}

.choice-pill svg {
    color: var(--pub-primary);
    height: 24px;
    width: 24px;
}

.choice-pill span {
    color: var(--pub-ink);
    font-size: 12px;
}

.choice-pill:has(input:checked) {
    background: var(--pub-primary-soft);
    border-color: var(--pub-primary);
    box-shadow: 0 0 0 3px rgba(122, 30, 61, 0.14);
}

/* ---------- Botão flutuante de ajuda ---------- */

.floating-help {
    align-items: center;
    background: linear-gradient(135deg, var(--pub-primary), var(--pub-primary-dark));
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(43, 15, 24, 0.32);
    color: #fff;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 10px;
    padding: 12px 18px;
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 20;
}

.floating-help svg {
    flex: 0 0 auto;
    height: 20px;
    width: 20px;
}

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

.site-footer {
    background: var(--pub-footer-bg);
    color: #f1e6da;
}

.footer-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
    margin: 0 auto;
    max-width: 1180px;
    padding: 46px 24px;
}

.footer-brand img {
    height: 96px;
}

.footer-col h3 {
    color: var(--pub-gold-light);
    font-size: 13px;
    letter-spacing: 0.04em;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.footer-col p,
.footer-col a {
    color: rgba(241, 230, 218, 0.82);
    display: block;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 6px;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(241, 230, 218, 0.14);
    color: rgba(241, 230, 218, 0.55);
    font-size: 12px;
    padding: 16px;
    text-align: center;
}

/* ---------- Responsivo ---------- */

@media (max-width: 960px) {
    .public-hero {
        min-height: 0;
        padding: 44px 22px;
    }

    .public-hero h1 {
        font-size: 34px;
    }

    .benefits-row,
    .social-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .spotlight {
        grid-template-columns: 1fr;
        margin-left: 16px;
        margin-right: 16px;
    }

    .spotlight-photo {
        height: 220px;
    }

    .reservation-layout {
        padding: 0 16px;
    }

    .grid.three,
    .reservation-layout .grid.two {
        grid-template-columns: 1fr;
    }

    .hero-steps {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.menu-toggle {
    background: none;
    border: 0;
    color: var(--pub-ink);
    cursor: pointer;
    display: none;
    padding: 8px;
}

.menu-toggle svg {
    display: block;
    height: 26px;
    width: 26px;
}

@media (max-width: 640px) {
    body.public-shell .topbar {
        position: relative;
    }

    .menu-toggle {
        display: inline-flex;
    }

    body.public-shell .topbar nav {
        background: var(--pub-surface);
        border-bottom: 1px solid var(--pub-line);
        box-shadow: 0 16px 30px rgba(43, 15, 24, 0.14);
        display: none;
        flex-direction: column;
        gap: 4px;
        left: 0;
        padding: 10px;
        position: absolute;
        right: 0;
        top: 100%;
    }

    body.public-shell .topbar nav.open {
        display: flex;
    }

    body.public-shell .topbar nav a {
        background: transparent;
        border-radius: 12px;
        color: var(--pub-ink);
        height: auto;
        justify-content: flex-start;
        padding: 12px 14px;
        width: 100%;
    }

    body.public-shell .topbar nav a:hover {
        background: var(--pub-primary-soft);
        color: var(--pub-primary-dark);
    }

    body.public-shell .topbar nav a svg {
        display: none;
    }

    body.public-shell .topbar nav a.nav-button {
        background: var(--pub-primary-soft);
        color: var(--pub-primary-dark);
    }

    /* Página com hero de foto: topbar vira uma barra transparente sobreposta,
       logo centralizada, menu hambúrguer alinhado à direita. */
    body.public-shell.hero-page .topbar {
        background: none;
        border-bottom: 0;
        box-shadow: none;
        backdrop-filter: none;
        display: grid;
        grid-template-columns: 40px 1fr 40px;
        align-items: center;
        min-height: 0;
        padding: 18px 16px 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 6;
    }

    body.public-shell.hero-page .topbar .brand {
        grid-column: 2;
        justify-self: center;
    }

    body.public-shell.hero-page .topbar .brand img {
        filter: brightness(0) invert(1);
        height: 67px;
    }

    body.public-shell.hero-page .topbar .menu-toggle {
        color: #fff;
        grid-column: 3;
        justify-self: end;
    }

    body.public-shell.hero-page .topbar nav {
        top: calc(100% + 8px);
        border-radius: 14px;
        margin: 0 8px;
        left: 0;
        right: 0;
    }

    body.public-shell.hero-page .public-hero {
        padding-top: 104px;
    }

    /* Mobile: hero fica só com título + subtítulo; some com CTA, passos e
       faixa de benefícios; card do restaurante vira compacto (foto + dados). */
    body.public-shell.hero-page .hero-cta-row,
    body.public-shell.hero-page .hero-steps,
    body.public-shell.hero-page .benefits-section {
        display: none;
    }

    body.public-shell.hero-page .public-hero {
        min-height: 0;
        padding-bottom: 32px;
    }

    body.public-shell.hero-page .spotlight {
        align-items: center;
        border-radius: 18px;
        box-shadow: 0 10px 26px rgba(43, 15, 24, 0.12);
        gap: 14px;
        grid-template-columns: 88px 1fr;
        margin: -28px 16px 28px;
        padding: 12px;
        position: relative;
        z-index: 2;
    }

    body.public-shell.hero-page .spotlight-photo {
        border-radius: 12px;
        height: 88px;
        width: 88px;
    }

    body.public-shell.hero-page .spotlight-content {
        padding: 0;
    }

    body.public-shell.hero-page .spotlight-content h3 {
        font-size: 17px;
        margin-bottom: 4px;
    }

    body.public-shell.hero-page .spotlight-rating,
    body.public-shell.hero-page .spotlight-business-type,
    body.public-shell.hero-page .spotlight-features,
    body.public-shell.hero-page .spotlight-button {
        display: none;
    }

    body.public-shell.hero-page .spotlight-tags {
        flex-direction: column;
        gap: 0;
        margin-bottom: 4px;
    }

    body.public-shell.hero-page .spotlight-address {
        font-size: 12.5px;
        line-height: 1.4;
    }

    body.public-shell.hero-page .spotlight-maps-link {
        font-size: 12px;
        margin: 0;
    }
}

@media (max-width: 560px) {
    .benefits-row {
        gap: 16px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefit-item svg,
    .benefit-item img {
        height: 26px;
        width: 26px;
    }

    .benefit-item span {
        font-size: 12px;
    }

    .social-proof,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .public-hero h1 {
        font-size: 28px;
    }

    .floating-help span {
        display: none;
    }

    .floating-help {
        bottom: 16px;
        right: 16px;
    }
}
