:root {
    --bg: #f4f1ea;
    --text: #151515;
    --muted: #6d6a64;
    --card: #ffffff;
    --line: #e5dfd5;
    --gold: #d88b28;
    --gold-2: #ffb24a;
    --green: #256f3a;
    --danger: #b73535;
    --radius: 26px;
    --shadow: 0 24px 70px rgba(0,0,0,.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.topbar {
    min-height: 76px;
    padding: 0 38px;
    background: #111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
}

.brand {
    font-size: 28px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand span:last-child {
    color: var(--gold-2);
}

.topbar nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-weight: 700;
}

.nav-cta,
.btn {
    border: 0;
    border-radius: 999px;
    padding: 13px 21px;
    background: var(--gold);
    color: #111;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-light {
    background: white;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
}

.btn-large,
.btn-full {
    width: 100%;
}

.inline-form {
    display: inline;
}

.link-button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.messages {
    padding: 18px 38px 0;
}

.message {
    background: #eaffef;
    border: 1px solid #b7dfbf;
    border-radius: 16px;
    padding: 14px 18px;
    color: #174f27;
    font-weight: 700;
}

.eyebrow {
    display: inline-flex;
    color: var(--gold-2);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 14px;
}

.eyebrow.dark {
    color: var(--gold);
}

.hero-pro {
    min-height: 670px;
    padding: 90px 48px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 46px;
    align-items: center;
    color: white;
    background:
        radial-gradient(circle at 76% 28%, rgba(216,139,40,.45), transparent 26%),
        linear-gradient(120deg, rgba(0,0,0,.92), rgba(0,0,0,.62)),
        linear-gradient(45deg, #111, #5a3718);
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 78px);
    line-height: .95;
    letter-spacing: -3px;
}

.hero-copy p {
    color: #eee0cc;
    font-size: 22px;
    line-height: 1.5;
    max-width: 760px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-row {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 720px;
}

.trust-row div {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.12);
    padding: 17px;
    border-radius: 20px;
}

.trust-row strong {
    display: block;
    font-size: 24px;
}

.trust-row span {
    color: #e4d2bd;
    font-size: 14px;
}

.hero-panel {
    display: flex;
    justify-content: center;
}

.panel-card {
    width: min(420px, 100%);
    min-height: 360px;
    padding: 34px;
    background: rgba(255,255,255,.11);
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 34px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.panel-card h3 {
    font-size: 34px;
    line-height: 1;
    margin: 0 0 14px;
}

.panel-card p {
    color: #eadac5;
}

.pin-dot {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 0 18px rgba(216,139,40,.18);
    margin-bottom: auto;
}

.map-shell,
.feature-grid,
.page-hero,
.host-grid,
.detail-hero,
.detail-layout,
.signup-hero,
.signup-layout,
.auth-page {
    padding-left: 42px;
    padding-right: 42px;
}

.map-shell {
    padding-top: 54px;
    padding-bottom: 32px;
}

.section-heading h2,
.page-hero h1,
.signup-hero h1,
.detail-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(34px, 5vw, 58px);
    letter-spacing: -2px;
}

.section-heading p,
.page-hero p,
.signup-hero p,
.detail-hero p {
    color: var(--muted);
    font-size: 18px;
}

#map {
    height: 620px;
    width: 100%;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.feature-grid {
    padding-top: 30px;
    padding-bottom: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-grid article,
.host-card,
.detail-card,
.booking-card,
.auth-card,
.form-section {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

.feature-grid article,
.detail-card,
.booking-card,
.auth-card,
.form-section {
    padding: 28px;
}

.page-hero,
.signup-hero,
.detail-hero {
    padding-top: 58px;
    padding-bottom: 24px;
}

.host-grid {
    padding-top: 18px;
    padding-bottom: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.host-card {
    overflow: hidden;
}

.host-card img,
.host-placeholder {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.host-placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #242424, #6c421d);
    font-size: 48px;
}

.host-card-body {
    padding: 22px;
}

.host-type {
    color: var(--gold);
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.mini-tags,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 18px;
}

.mini-tags span,
.tag-list span {
    background: #f5ead8;
    color: #7c4a12;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 13px;
    font-weight: 800;
}

.detail-layout {
    padding-top: 20px;
    padding-bottom: 70px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

.detail-main {
    display: grid;
    gap: 22px;
}

.gallery {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 14px;
}

.gallery img,
.gallery-empty {
    height: 270px;
    object-fit: cover;
    border-radius: 24px;
    background: #211b15;
}

.gallery img:first-child {
    height: 554px;
    grid-row: span 2;
}

.info-grid,
.amenity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.info-grid div,
.amenity-grid span {
    background: #f8f3eb;
    border-radius: 18px;
    padding: 18px;
}

.amenity-grid span {
    background: #f2f2f2;
    color: #8a8a8a;
    font-weight: 800;
}

.amenity-grid span.ok {
    background: #eaffef;
    color: var(--green);
}

.booking-card {
    position: sticky;
    top: 100px;
}

.host-mini {
    display: flex;
    align-items: center;
    gap: 14px;
}

.host-mini img,
.avatar-fallback {
    width: 62px;
    height: 62px;
    border-radius: 999px;
    object-fit: cover;
    background: #f2e4d0;
    display: grid;
    place-items: center;
}

.signup-layout {
    padding-bottom: 80px;
}

.pro-form {
    display: grid;
    gap: 24px;
}

.form-section {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 30px;
}

.section-info span {
    color: var(--gold);
    font-weight: 900;
}

.section-info h2 {
    font-size: 28px;
    margin: 8px 0;
}

.section-info p {
    color: var(--muted);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-grid label,
.auth-card form p {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-weight: 800;
}

.span-2 {
    grid-column: span 2;
}

.form-control,
input,
textarea,
select {
    width: 100%;
    border: 1px solid #d7d0c6;
    border-radius: 16px;
    padding: 13px 14px;
    font-size: 16px;
    background: #fff;
}

textarea {
    resize: vertical;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.check-grid label {
    background: #f8f3eb;
    border: 1px solid #eadfcd;
    border-radius: 18px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.check-grid input {
    width: auto;
}

.mt {
    margin-top: 18px;
}

.upload-card {
    background: #f8f3eb;
    border: 1px dashed #d9b77f;
    border-radius: 20px;
    padding: 24px;
    display: grid;
    gap: 10px;
    font-weight: 900;
}

.geo-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

#signup-map {
    width: 100%;
    height: 460px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.form-submit {
    background: #111;
    color: white;
    border-radius: 26px;
    padding: 28px;
    display: grid;
    gap: 10px;
}

.form-errors {
    background: #ffecec;
    border: 1px solid #ffc7c7;
    color: var(--danger);
    border-radius: 20px;
    padding: 18px;
}

.errorlist {
    color: var(--danger);
    margin: 6px 0 0;
    padding-left: 18px;
    font-weight: 700;
}

.billing-wrapper select {
    display: none !important;
}

.billing-card-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.billing-card {
    border: 1px solid #e0d4c3;
    background: #fffaf2;
    border-radius: 18px;
    padding: 16px;
    text-align: left;
    cursor: pointer;
    min-height: 105px;
}

.billing-card strong {
    display: block;
    font-size: 17px;
    color: #171717;
    margin-bottom: 7px;
}

.billing-card span {
    display: block;
    font-size: 13px;
    line-height: 1.35;
    color: #6d6a64;
}

.billing-card.active {
    background: #111;
    border-color: #111;
    box-shadow: 0 16px 36px rgba(0,0,0,.16);
}

.billing-card.active strong {
    color: var(--gold-2);
}

.billing-card.active span {
    color: #f1dfc8;
}

#field-taxa-simbolica,
#field-custo-hospedagem {
    display: none;
}

select.form-control {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #111 50%),
        linear-gradient(135deg, #111 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 48px !important;
    cursor: pointer;
}

select.form-control:disabled {
    background-color: #f1f1f1;
    color: #999;
    cursor: not-allowed;
}

.footer {
    padding: 34px 42px;
    background: #111;
    color: white;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer span {
    color: #d6c4ad;
}

@media (max-width: 1050px) {
    .hero-pro,
    .detail-layout,
    .form-section {
        grid-template-columns: 1fr;
    }

    .host-grid,
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-card {
        position: static;
    }
}

@media (max-width: 740px) {
    .topbar {
        padding: 18px;
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar nav {
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-pro,
    .map-shell,
    .feature-grid,
    .page-hero,
    .host-grid,
    .detail-hero,
    .detail-layout,
    .signup-hero,
    .signup-layout,
    .auth-page {
        padding-left: 18px;
        padding-right: 18px;
    }

    .trust-row,
    .host-grid,
    .feature-grid,
    .form-grid,
    .check-grid,
    .info-grid,
    .amenity-grid,
    .gallery,
    .billing-card-group {
        grid-template-columns: 1fr;
    }

    .span-2 {
        grid-column: span 1;
    }

    #map {
        height: 470px;
    }
}

/* ============================================================
   FIX MOTO BNB - CAMPOS DE VALOR DO MODELO DE COBRANCA
   ============================================================ */

.billing-value-field {
    grid-column: 1 / -1;
    margin-top: 4px;
    background: #fffaf2;
    border: 1px solid #eadfcd;
    border-radius: 18px;
    padding: 18px;
}

.billing-value-field input {
    width: 100%;
    border: 1px solid #d7d0c6;
    border-radius: 16px;
    padding: 15px 16px;
    font-size: 18px;
    background: #ffffff;
}

.billing-value-field input:focus {
    outline: 3px solid rgba(216, 139, 40, .25);
    border-color: #d88b28;
}

#field-taxa-simbolica,
#field-custo-hospedagem {
    display: none !important;
}

/* ============================================================
   MOTO BNB - LANDING PROFISSIONAL V01
   ============================================================ */

.landing-hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    background: #070707;
    color: #fff;
}

.landing-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 74% 22%, rgba(216, 139, 40, .42), transparent 28%),
        radial-gradient(circle at 20% 80%, rgba(255, 178, 74, .18), transparent 30%),
        linear-gradient(115deg, rgba(0,0,0,.98), rgba(0,0,0,.78)),
        linear-gradient(45deg, #080808, #5a3515);
}

.landing-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.landing-hero-content {
    position: relative;
    z-index: 2;
    min-height: 760px;
    padding: 92px 48px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
    align-items: center;
    gap: 48px;
}

.landing-hero-text {
    max-width: 900px;
}

.landing-kicker {
    display: inline-flex;
    color: #ffb24a;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 18px;
}

.landing-kicker.dark {
    color: #d88b28;
}

.landing-hero h1 {
    margin: 0;
    font-size: clamp(48px, 7vw, 92px);
    line-height: .92;
    letter-spacing: -4px;
}

.landing-hero p {
    max-width: 780px;
    margin: 28px 0 0;
    color: #eadcc9;
    font-size: 22px;
    line-height: 1.5;
}

.landing-actions {
    margin-top: 34px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.landing-primary {
    background: #d88b28;
    color: #111;
}

.landing-secondary {
    background: #fff;
    color: #111;
}

.landing-proof {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 14px;
    max-width: 880px;
}

.landing-proof div {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    padding: 18px;
}

.landing-proof strong {
    display: block;
    font-size: 28px;
    color: #ffb24a;
}

.landing-proof span {
    color: #dbc8af;
    font-size: 14px;
}

.landing-hero-card {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 34px;
    padding: 34px;
    box-shadow: 0 32px 90px rgba(0,0,0,.35);
}

.route-card-head {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.route-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.45);
}

.route-dot.active {
    background: #ffb24a;
    box-shadow: 0 0 0 12px rgba(255,178,74,.14);
}

.route-line {
    height: 2px;
    flex: 1;
    background: rgba(255,255,255,.28);
}

.landing-hero-card h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.landing-hero-card p {
    margin-top: 18px;
    font-size: 17px;
    color: #e8d9c4;
}

.route-mini-list {
    margin-top: 26px;
    display: grid;
    gap: 12px;
}

.route-mini-list div {
    background: rgba(0,0,0,.26);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    padding: 16px;
}

.route-mini-list strong,
.route-mini-list span {
    display: block;
}

.route-mini-list strong {
    color: #ffb24a;
}

.route-mini-list span {
    color: #d7c7b2;
    margin-top: 4px;
}

.landing-strip {
    margin: -48px 42px 0;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.landing-strip div {
    background: #fff;
    border: 1px solid #eadfcd;
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 22px 70px rgba(0,0,0,.12);
}

.landing-strip strong,
.landing-strip span {
    display: block;
}

.landing-strip strong {
    font-size: 20px;
}

.landing-strip span {
    margin-top: 7px;
    color: #6d6a64;
    line-height: 1.4;
}

.landing-section {
    padding: 88px 42px;
}

.landing-section-head {
    max-width: 860px;
    margin-bottom: 34px;
}

.landing-section-head h2,
.landing-map-copy h2,
.landing-split-text h2,
.landing-final-cta h2 {
    margin: 0;
    font-size: clamp(36px, 5vw, 62px);
    line-height: .98;
    letter-spacing: -2px;
}

.landing-section-head p,
.landing-map-copy p,
.landing-split-text p,
.landing-final-cta p {
    color: #6d6a64;
    font-size: 19px;
    line-height: 1.55;
}

.landing-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.landing-card-grid article {
    background: #fff;
    border: 1px solid #eadfcd;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 18px 55px rgba(0,0,0,.08);
}

.landing-card-grid article span {
    color: #d88b28;
    font-weight: 900;
}

.landing-card-grid h3 {
    margin: 14px 0 10px;
    font-size: 28px;
    letter-spacing: -1px;
}

.landing-card-grid p {
    color: #6d6a64;
    line-height: 1.5;
}

.landing-map-section {
    padding: 80px 42px;
    background: #111;
    color: #fff;
}

.landing-map-copy {
    max-width: 860px;
    margin-bottom: 30px;
}

.landing-map-copy p {
    color: #d9c8b2;
}

.landing-map-wrap {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 36px;
    padding: 14px;
    box-shadow: 0 28px 90px rgba(0,0,0,.28);
}

.landing-map-wrap #map {
    height: 640px;
    border-radius: 26px;
    border: 0;
}

.map-popup {
    width: 240px;
}

.popup-img {
    width: 100%;
    height: 126px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 10px;
}

.popup-placeholder {
    height: 112px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #f3eadb;
    font-size: 36px;
    margin-bottom: 10px;
}

.map-popup strong,
.map-popup span,
.map-popup small,
.map-popup a {
    display: block;
}

.map-popup strong {
    font-size: 16px;
    margin-bottom: 4px;
}

.map-popup span,
.map-popup small {
    color: #555;
    margin-bottom: 3px;
}

.map-popup a {
    margin-top: 10px;
    background: #d88b28;
    color: #111;
    border-radius: 999px;
    padding: 9px 12px;
    text-align: center;
    font-weight: 900;
}

.landing-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 46px;
    align-items: center;
}

.landing-feature-list {
    display: grid;
    gap: 12px;
    margin: 30px 0;
}

.landing-feature-list div {
    background: #fff;
    border: 1px solid #eadfcd;
    border-radius: 20px;
    padding: 18px;
}

.landing-feature-list strong,
.landing-feature-list span {
    display: block;
}

.landing-feature-list span {
    margin-top: 4px;
    color: #6d6a64;
}

.landing-split-card {
    background:
        radial-gradient(circle at 65% 20%, rgba(216,139,40,.35), transparent 30%),
        linear-gradient(135deg, #111, #34200f);
    border-radius: 34px;
    padding: 28px;
    color: #fff;
    box-shadow: 0 28px 80px rgba(0,0,0,.18);
}

.host-preview {
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 28px;
    padding: 28px;
    background: rgba(255,255,255,.08);
}

.host-preview-icon {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    background: #d88b28;
    color: #111;
    display: grid;
    place-items: center;
    font-size: 36px;
    margin-bottom: 90px;
}

.host-preview h3 {
    margin: 0;
    font-size: 32px;
    line-height: 1.05;
}

.host-preview p {
    color: #e6d6c1;
    line-height: 1.5;
}

.host-preview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
}

.host-preview-tags span {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    padding: 8px 11px;
    color: #ffdfb5;
    font-weight: 800;
    font-size: 13px;
}

.landing-trust {
    background: #fff;
}

.trust-box-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.trust-box-grid article {
    border: 1px solid #eadfcd;
    border-radius: 24px;
    padding: 24px;
    background: #f8f3eb;
}

.trust-box-grid strong,
.trust-box-grid span {
    display: block;
}

.trust-box-grid strong {
    font-size: 20px;
}

.trust-box-grid span {
    margin-top: 8px;
    color: #6d6a64;
    line-height: 1.45;
}

.landing-final-cta {
    margin: 42px;
    border-radius: 36px;
    padding: 58px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,178,74,.28), transparent 28%),
        linear-gradient(135deg, #080808, #4d2e12);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
    box-shadow: 0 26px 85px rgba(0,0,0,.18);
}

.landing-final-cta p {
    color: #e5d4bd;
    max-width: 760px;
}

.landing-final-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 1100px) {
    .landing-hero-content,
    .landing-split,
    .landing-final-cta {
        grid-template-columns: 1fr;
    }

    .landing-proof,
    .trust-box-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-strip,
    .landing-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .landing-hero-content,
    .landing-section,
    .landing-map-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .landing-hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .landing-hero p {
        font-size: 18px;
    }

    .landing-proof,
    .trust-box-grid {
        grid-template-columns: 1fr;
    }

    .landing-strip {
        margin: -28px 18px 0;
    }

    .landing-map-wrap #map {
        height: 500px;
    }

    .landing-final-cta {
        margin: 18px;
        padding: 32px;
    }
}

/* ============================================================
   MOTO BNB - DISPONIBILIDADE DO ANFITRIAO
   ============================================================ */

.availability-section {
    border-color: rgba(216, 139, 40, .36);
}

.availability-box {
    display: grid;
    gap: 18px;
}

.availability-calendar-hint {
    background: #fff7ea;
    border: 1px solid #ead5b4;
    border-radius: 18px;
    padding: 16px 18px;
    display: grid;
    gap: 4px;
}

.availability-calendar-hint strong {
    color: #8a4d0d;
}

.availability-calendar-hint span {
    color: #6d6a64;
    line-height: 1.45;
}

.availability-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
}

.availability-days label {
    background: #f8f3eb;
    border: 1px solid #eadfcd;
    border-radius: 16px;
    padding: 13px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-weight: 900;
    cursor: pointer;
}

.availability-days input {
    width: auto;
}

.availability-public-card {
    background: #f8f3eb;
    border: 1px solid #eadfcd;
    border-radius: 18px;
    padding: 18px;
    margin-top: 12px;
}

.availability-public-card strong,
.availability-public-card span {
    display: block;
}

.availability-public-card strong {
    font-size: 20px;
    color: #151515;
}

.availability-public-card span {
    margin-top: 6px;
    color: #6d6a64;
    font-weight: 800;
}

.availability-public-card p {
    margin: 12px 0 0;
}

@media (max-width: 900px) {
    .availability-days {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ============================================================
   MOTO BNB - BLOCO 07 - LOCACOES ESTILO AIRBNB
   ============================================================ */

.rentals-hero {
    padding: 72px 42px 34px;
    background:
        radial-gradient(circle at 78% 22%, rgba(216,139,40,.22), transparent 24%),
        linear-gradient(135deg, #fff, #f7efe3);
}

.rentals-hero h1 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(42px, 6vw, 72px);
    line-height: .95;
    letter-spacing: -3px;
}

.rentals-hero p {
    max-width: 850px;
    margin: 22px 0 0;
    color: #6d6a64;
    font-size: 20px;
    line-height: 1.5;
}

.rentals-filter-shell {
    padding: 0 42px 24px;
    background: linear-gradient(180deg, #f7efe3, #f4f1ea);
}

.rentals-filter-form {
    background: #fff;
    border: 1px solid #eadfcd;
    border-radius: 28px;
    padding: 20px;
    box-shadow: 0 18px 55px rgba(0,0,0,.08);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: end;
}

.rentals-filter-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-weight: 900;
}

.rentals-filter-form input,
.rentals-filter-form select {
    width: 100%;
    border: 1px solid #d7d0c6;
    border-radius: 16px;
    padding: 13px 14px;
    font-size: 16px;
    background: #fff;
}

.filter-check {
    justify-content: center;
    background: #f8f3eb;
    border: 1px solid #eadfcd;
    border-radius: 16px;
    padding: 12px;
    flex-direction: row !important;
    align-items: center;
}

.filter-check input {
    width: auto;
}

.filter-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.rentals-results-head {
    padding: 34px 42px 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
}

.rentals-results-head h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: -1.5px;
}

.rentals-grid {
    padding: 10px 42px 34px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.rental-card {
    background: #fff;
    border: 1px solid #eadfcd;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0,0,0,.08);
    transition: .18s ease;
}

.rental-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 70px rgba(0,0,0,.13);
}

.rental-carousel {
    height: 250px;
    position: relative;
    overflow: hidden;
    background: #191919;
}

.rental-carousel img,
.rental-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.rental-carousel img.active,
.rental-placeholder.active {
    display: block;
}

.rental-placeholder {
    place-items: center;
    font-size: 56px;
    background: linear-gradient(135deg, #171717, #6b421d);
    color: #fff;
}

.rental-placeholder.active {
    display: grid;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,.92);
    color: #111;
    font-size: 24px;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.rental-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 4;
    background: rgba(0,0,0,.78);
    color: #ffb24a;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 900;
    font-size: 13px;
}

.rental-body {
    padding: 18px;
}

.rental-title-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
}

.rental-title-row h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.1;
}

.rental-title-row span {
    white-space: nowrap;
    color: #8a4d0d;
    background: #fff3df;
    border-radius: 999px;
    padding: 6px 9px;
    font-size: 12px;
    font-weight: 900;
}

.rental-location {
    margin: 10px 0 0;
    color: #6d6a64;
    font-weight: 800;
}

.rental-benefits {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rental-benefits span {
    background: #f8f3eb;
    border: 1px solid #eadfcd;
    color: #6b421d;
    border-radius: 999px;
    padding: 7px 9px;
    font-size: 12px;
    font-weight: 900;
}

.rental-availability {
    margin-top: 16px;
    background: #f8f3eb;
    border: 1px solid #eadfcd;
    border-radius: 18px;
    padding: 13px;
}

.rental-availability strong,
.rental-availability span {
    display: block;
}

.rental-availability strong {
    font-size: 15px;
}

.rental-availability span {
    margin-top: 4px;
    color: #6d6a64;
    line-height: 1.35;
    font-size: 13px;
}

.rental-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.rentals-empty {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px solid #eadfcd;
    border-radius: 28px;
    padding: 44px;
    text-align: center;
}

.rentals-load-more-wrap {
    padding: 10px 42px 70px;
    display: flex;
    justify-content: center;
}

@media (max-width: 1250px) {
    .rentals-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .rentals-filter-form {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .rentals-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .rentals-results-head {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .rentals-hero,
    .rentals-filter-shell,
    .rentals-results-head,
    .rentals-grid,
    .rentals-load-more-wrap {
        padding-left: 18px;
        padding-right: 18px;
    }

    .rentals-grid,
    .rentals-filter-form,
    .rental-actions {
        grid-template-columns: 1fr;
    }

    .rental-carousel {
        height: 230px;
    }
}

/* ============================================================
   MOTO BNB - LOGIN PROFISSIONAL
   ============================================================ */

.login-pro-page {
    position: relative;
    min-height: calc(100vh - 86px);
    overflow: hidden;
    background: #080808;
    color: #fff;
}

.login-pro-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 20%, rgba(216,139,40,.45), transparent 28%),
        radial-gradient(circle at 20% 90%, rgba(255,178,74,.16), transparent 30%),
        linear-gradient(120deg, rgba(0,0,0,.98), rgba(0,0,0,.76)),
        linear-gradient(45deg, #080808, #5a3515);
}

.login-pro-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 58px 58px;
    opacity: .7;
}

.login-pro-shell {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 86px);
    padding: 70px 42px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 470px;
    gap: 48px;
    align-items: center;
}

.login-pro-copy {
    max-width: 860px;
}

.login-pro-kicker {
    display: inline-flex;
    color: #ffb24a;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 18px;
}

.login-pro-copy h1 {
    margin: 0;
    font-size: clamp(44px, 6.4vw, 82px);
    line-height: .92;
    letter-spacing: -3.5px;
}

.login-pro-copy p {
    max-width: 780px;
    margin: 26px 0 0;
    color: #eadcc9;
    font-size: 21px;
    line-height: 1.5;
}

.login-pro-benefits {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.login-pro-benefits div {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 22px;
    padding: 18px;
}

.login-pro-benefits strong,
.login-pro-benefits span {
    display: block;
}

.login-pro-benefits strong {
    color: #ffb24a;
    font-size: 18px;
}

.login-pro-benefits span {
    margin-top: 7px;
    color: #d8c8b3;
    font-size: 14px;
    line-height: 1.4;
}

.login-pro-card {
    background: rgba(255,255,255,.97);
    color: #111;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 34px;
    padding: 30px;
    box-shadow: 0 36px 100px rgba(0,0,0,.42);
}

.login-pro-card-head {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.login-pro-icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: #d88b28;
    font-size: 32px;
    box-shadow: 0 12px 28px rgba(216,139,40,.32);
}

.login-pro-card h2 {
    margin: 0;
    font-size: 30px;
    letter-spacing: -1px;
}

.login-pro-card p {
    margin: 5px 0 0;
    color: #6d6a64;
    line-height: 1.4;
}

.login-pro-error,
.login-pro-next {
    border-radius: 18px;
    padding: 14px 16px;
    font-weight: 800;
    margin-bottom: 14px;
}

.login-pro-error {
    background: #fff0f0;
    border: 1px solid #ffd0d0;
    color: #9b1c1c;
}

.login-pro-next {
    background: #fff7ea;
    border: 1px solid #ead5b4;
    color: #8a4d0d;
}

.login-pro-form {
    display: grid;
    gap: 16px;
}

.login-pro-form label {
    display: grid;
    gap: 8px;
    font-weight: 900;
}

.login-pro-form input {
    width: 100%;
    border: 1px solid #d7d0c6;
    border-radius: 18px;
    padding: 16px 17px;
    font-size: 18px;
    background: #fff;
}

.login-pro-form input:focus {
    outline: 3px solid rgba(216,139,40,.25);
    border-color: #d88b28;
}

.login-pro-button {
    margin-top: 6px;
    width: 100%;
    justify-content: center;
    font-size: 18px;
    padding: 16px 18px;
    border-radius: 18px;
}

.login-pro-test {
    margin-top: 18px;
    background: #f8f3eb;
    border: 1px solid #eadfcd;
    border-radius: 20px;
    padding: 16px;
    display: grid;
    gap: 4px;
}

.login-pro-test strong {
    color: #8a4d0d;
}

.login-pro-test span {
    color: #4f4b45;
    font-weight: 800;
}

.login-pro-footer {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
    color: #6d6a64;
    font-weight: 800;
}

.login-pro-footer a {
    color: #8a4d0d;
    font-weight: 900;
}

@media (max-width: 1100px) {
    .login-pro-shell {
        grid-template-columns: 1fr;
    }

    .login-pro-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .login-pro-shell {
        padding: 42px 18px;
    }

    .login-pro-copy h1 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .login-pro-card {
        padding: 22px;
        border-radius: 26px;
    }
}

/* FIX - Meus pontos / gerenciamento anfitriao */

.disabled-link {
    opacity: .65;
    pointer-events: none;
}

.my-hosts-hero {
    padding: 72px 42px 34px;
    background:
        radial-gradient(circle at 78% 22%, rgba(216,139,40,.22), transparent 24%),
        linear-gradient(135deg, #fff, #f7efe3);
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: end;
}

.my-hosts-hero h1 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(42px, 6vw, 72px);
    line-height: .95;
    letter-spacing: -3px;
}

.my-hosts-hero p {
    max-width: 850px;
    margin: 22px 0 0;
    color: #6d6a64;
    font-size: 20px;
    line-height: 1.5;
}

.my-hosts-grid {
    padding: 30px 42px 76px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.my-host-card {
    background: #fff;
    border: 1px solid #eadfcd;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0,0,0,.08);
}

.my-host-card.inactive {
    opacity: .62;
}

.my-host-cover {
    height: 220px;
    position: relative;
    background: #111;
}

.my-host-cover img,
.my-host-cover .rental-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.my-host-status {
    position: absolute;
    left: 14px;
    top: 14px;
    background: rgba(0,0,0,.78);
    color: #ffb24a;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 900;
}

.my-host-body {
    padding: 20px;
}

.my-host-body h2 {
    margin: 0 0 10px;
}

.my-host-body p {
    color: #6d6a64;
}

.my-host-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.my-host-actions form {
    margin: 0;
}

.my-host-actions button {
    width: 100%;
}

@media (max-width: 1050px) {
    .my-hosts-grid {
        grid-template-columns: 1fr;
    }

    .my-hosts-hero {
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 720px) {
    .my-hosts-hero,
    .my-hosts-grid {
        padding-left: 18px;
        padding-right: 18px;
    }

    .my-host-actions {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   MOTO BNB - BLOCO 09 - HOSPEDAGEM PRO + UUID + CHAT
   ============================================================ */

.host-pro-hero {
    padding: 54px 42px 26px;
    background:
        radial-gradient(circle at 80% 20%, rgba(216,139,40,.20), transparent 24%),
        linear-gradient(135deg, #fff, #f7efe3);
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
}

.host-pro-hero h1 {
    max-width: 1050px;
    margin: 0;
    font-size: clamp(38px, 5.8vw, 72px);
    line-height: .94;
    letter-spacing: -3px;
}

.host-pro-hero p {
    margin: 18px 0 0;
    color: #6d6a64;
    font-size: 20px;
    font-weight: 800;
}

.host-pro-actions-top {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.host-pro-gallery {
    padding: 24px 42px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 210px 210px;
    gap: 12px;
    background: #f4f1ea;
}

.host-gallery-item,
.host-gallery-placeholder {
    border: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 22px;
    background: #161616;
    color: #ffb24a;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 34px;
    font-weight: 900;
}

.host-gallery-item.main,
.host-gallery-placeholder.main {
    grid-row: span 2;
}

.host-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .25s ease;
}

.host-gallery-item:hover img {
    transform: scale(1.04);
}

.host-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.88);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.host-gallery-modal.active {
    display: flex;
}

.host-gallery-modal img {
    max-width: 96vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 18px;
}

#host-gallery-close {
    position: fixed;
    top: 22px;
    right: 28px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: 34px;
    cursor: pointer;
}

.host-pro-layout {
    padding: 34px 42px 80px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: start;
}

.host-pro-main {
    display: grid;
    gap: 22px;
}

.host-pro-card,
.host-booking-card {
    background: #fff;
    border: 1px solid #eadfcd;
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 18px 55px rgba(0,0,0,.08);
}

.host-pro-card h2,
.host-booking-card h2 {
    margin: 0 0 16px;
    font-size: 30px;
    letter-spacing: -1px;
}

.host-pro-card p {
    color: #5f5b54;
    line-height: 1.55;
    font-size: 17px;
}

.host-summary-card {
    display: flex;
    justify-content: space-between;
    gap: 28px;
}

.host-summary-price {
    min-width: 220px;
    background: #f8f3eb;
    border: 1px solid #eadfcd;
    border-radius: 22px;
    padding: 18px;
    height: fit-content;
}

.host-summary-price strong,
.host-summary-price span {
    display: block;
}

.host-summary-price strong {
    font-size: 24px;
    color: #8a4d0d;
}

.host-summary-price span {
    margin-top: 6px;
    color: #6d6a64;
    font-weight: 800;
}

.host-owner-box {
    display: flex;
    gap: 16px;
    align-items: center;
}

.host-owner-avatar {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    background: #d88b28;
    color: #111;
    display: grid;
    place-items: center;
    overflow: hidden;
    font-size: 34px;
}

.host-owner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.host-owner-box strong,
.host-owner-box span,
.host-owner-box small {
    display: block;
}

.host-owner-box strong {
    font-size: 22px;
}

.host-owner-box span {
    color: #6d6a64;
    margin-top: 4px;
    font-weight: 800;
}

.host-owner-box small {
    color: #8a4d0d;
    margin-top: 4px;
    font-weight: 900;
}

.host-owner-bio {
    margin-top: 18px;
}

.host-benefit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.host-benefit-grid span {
    background: #f8f3eb;
    border: 1px solid #eadfcd;
    color: #6b421d;
    border-radius: 999px;
    padding: 10px 13px;
    font-size: 14px;
    font-weight: 900;
}

#host-detail-map {
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #eadfcd;
    margin-top: 18px;
}

.host-pro-sidebar {
    position: sticky;
    top: 96px;
}

.booking-label {
    display: inline-flex;
    color: #d88b28;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}

.host-booking-card p {
    color: #6d6a64;
    font-weight: 800;
}

.booking-mini-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 18px 0;
}

.booking-mini-info div {
    background: #f8f3eb;
    border: 1px solid #eadfcd;
    border-radius: 18px;
    padding: 14px;
}

.booking-mini-info strong,
.booking-mini-info span {
    display: block;
}

.booking-mini-info strong {
    font-size: 24px;
    color: #8a4d0d;
}

.booking-mini-info span {
    color: #6d6a64;
    font-weight: 800;
}

.booking-main-btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.host-booking-card small {
    display: block;
    margin-top: 16px;
    color: #6d6a64;
    line-height: 1.45;
}

.chat-inbox-hero,
.chat-room-hero {
    padding: 62px 42px 28px;
    background:
        radial-gradient(circle at 78% 22%, rgba(216,139,40,.22), transparent 24%),
        linear-gradient(135deg, #fff, #f7efe3);
}

.chat-room-hero {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
}

.chat-inbox-hero h1,
.chat-room-hero h1 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(38px, 5vw, 62px);
    line-height: .95;
    letter-spacing: -2px;
}

.chat-inbox-hero p,
.chat-room-hero p {
    color: #6d6a64;
    font-size: 19px;
    line-height: 1.5;
}

.chat-inbox-list,
.chat-room-shell {
    padding: 30px 42px 76px;
}

.chat-inbox-card {
    background: #fff;
    border: 1px solid #eadfcd;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    gap: 16px;
    color: #111;
    box-shadow: 0 18px 55px rgba(0,0,0,.08);
    margin-bottom: 14px;
}

.chat-inbox-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: #d88b28;
    display: grid;
    place-items: center;
    font-size: 28px;
}

.chat-inbox-card strong,
.chat-inbox-card span {
    display: block;
}

.chat-inbox-card span,
.chat-inbox-card p {
    color: #6d6a64;
}

.chat-room-panel {
    background: #fff;
    border: 1px solid #eadfcd;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0,0,0,.08);
}

.chat-room-messages {
    min-height: 420px;
    max-height: 620px;
    overflow-y: auto;
    padding: 24px;
    display: grid;
    gap: 12px;
    background: #f8f3eb;
}

.chat-message {
    max-width: 72%;
    border-radius: 22px;
    padding: 14px 16px;
}

.chat-message.mine {
    justify-self: end;
    background: #111;
    color: #fff;
}

.chat-message.theirs {
    justify-self: start;
    background: #fff;
    border: 1px solid #eadfcd;
}

.chat-message strong,
.chat-message span {
    display: block;
}

.chat-message p {
    margin: 6px 0;
    line-height: 1.45;
}

.chat-message span {
    font-size: 12px;
    opacity: .72;
}

.chat-empty {
    text-align: center;
    align-self: center;
    color: #6d6a64;
}

.chat-form {
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    background: #fff;
}

.chat-form textarea {
    width: 100%;
    border: 1px solid #d7d0c6;
    border-radius: 18px;
    padding: 14px;
    font-size: 16px;
    resize: vertical;
}

@media (max-width: 1100px) {
    .host-pro-layout {
        grid-template-columns: 1fr;
    }

    .host-pro-sidebar {
        position: static;
    }

    .host-pro-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 260px 180px 180px;
    }

    .host-gallery-item.main,
    .host-gallery-placeholder.main {
        grid-column: span 2;
        grid-row: span 1;
    }

    .host-summary-card {
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .host-pro-hero,
    .host-pro-layout,
    .host-pro-gallery,
    .chat-inbox-hero,
    .chat-room-hero,
    .chat-inbox-list,
    .chat-room-shell {
        padding-left: 18px;
        padding-right: 18px;
    }

    .host-pro-hero,
    .chat-room-hero {
        flex-direction: column;
        align-items: start;
    }

    .host-pro-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .host-gallery-item,
    .host-gallery-placeholder,
    .host-gallery-item.main,
    .host-gallery-placeholder.main {
        grid-column: auto;
        grid-row: auto;
        height: 230px;
    }

    .chat-form {
        grid-template-columns: 1fr;
    }

    .chat-message {
        max-width: 92%;
    }
}

/* ============================================================
   MOTO BNB - CHAT FLUTUANTE JS
   ============================================================ */

.mb-chat-root {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9998;
    font-family: inherit;
}

.mb-chat-bubble {
    width: 66px;
    height: 66px;
    border: 0;
    border-radius: 999px;
    background: #111;
    color: #fff;
    box-shadow: 0 18px 55px rgba(0,0,0,.32);
    display: grid;
    place-items: center;
    cursor: pointer;
    position: relative;
    transition: .18s ease;
}

.mb-chat-bubble:hover {
    transform: translateY(-3px);
    background: #d88b28;
    color: #111;
}

.mb-chat-bubble-icon {
    font-size: 28px;
}

.mb-chat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 23px;
    height: 23px;
    padding: 0 6px;
    border-radius: 999px;
    background: #d12b2b;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.mb-chat-badge.active {
    display: flex;
}

.mb-chat-window {
    position: absolute;
    right: 0;
    bottom: 82px;
    width: 390px;
    height: 620px;
    max-height: calc(100vh - 118px);
    background: #fff;
    border: 1px solid #eadfcd;
    border-radius: 28px;
    box-shadow: 0 28px 90px rgba(0,0,0,.28);
    overflow: hidden;
    display: none;
}

.mb-chat-window.active {
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.mb-chat-header {
    padding: 18px;
    background:
        radial-gradient(circle at 90% 10%, rgba(216,139,40,.35), transparent 30%),
        linear-gradient(135deg, #111, #4d2e12);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.mb-chat-header strong,
.mb-chat-header span {
    display: block;
}

.mb-chat-header strong {
    font-size: 18px;
}

.mb-chat-header span {
    margin-top: 3px;
    color: #eadcc9;
    font-size: 13px;
    line-height: 1.35;
}

#mb-chat-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

.mb-chat-body {
    background: #f8f3eb;
    overflow-y: auto;
    padding: 14px;
}

.mb-chat-current-host {
    width: 100%;
    border: 1px solid #ead5b4;
    border-radius: 20px;
    background: #fff7ea;
    color: #111;
    padding: 14px;
    text-align: left;
    cursor: pointer;
    margin-bottom: 12px;
}

.mb-chat-current-host strong,
.mb-chat-current-host span {
    display: block;
}

.mb-chat-current-host strong {
    color: #8a4d0d;
    font-size: 15px;
}

.mb-chat-current-host span {
    margin-top: 4px;
    color: #6d6a64;
    line-height: 1.35;
}

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

.mb-chat-list-item {
    width: 100%;
    border: 1px solid #eadfcd;
    background: #fff;
    color: #111;
    border-radius: 20px;
    padding: 13px;
    cursor: pointer;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 12px;
    text-align: left;
    align-items: center;
}

.mb-chat-list-icon {
    width: 48px;
    height: 48px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    background: #d88b28;
    font-size: 24px;
}

.mb-chat-list-item strong,
.mb-chat-list-item span,
.mb-chat-list-item p {
    display: block;
}

.mb-chat-list-item strong {
    font-size: 15px;
}

.mb-chat-list-item span {
    color: #6d6a64;
    font-size: 12px;
    margin-top: 3px;
}

.mb-chat-list-item p {
    margin: 5px 0 0;
    color: #6d6a64;
    font-size: 13px;
    line-height: 1.3;
}

.mb-chat-list-unread {
    min-width: 23px;
    height: 23px;
    border-radius: 999px;
    background: #d12b2b;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 900;
}

.mb-chat-back,
.mb-chat-mini-btn {
    border: 0;
    background: #fff;
    color: #8a4d0d;
    border-radius: 999px;
    padding: 9px 13px;
    font-weight: 900;
    cursor: pointer;
    margin-bottom: 12px;
}

.mb-chat-messages {
    display: grid;
    gap: 10px;
}

.mb-chat-message {
    max-width: 82%;
    padding: 12px 14px;
    border-radius: 20px;
}

.mb-chat-message.mine {
    justify-self: end;
    background: #111;
    color: #fff;
    border-bottom-right-radius: 6px;
}

.mb-chat-message.theirs {
    justify-self: start;
    background: #fff;
    border: 1px solid #eadfcd;
    color: #111;
    border-bottom-left-radius: 6px;
}

.mb-chat-message strong,
.mb-chat-message span {
    display: block;
}

.mb-chat-message strong {
    font-size: 13px;
}

.mb-chat-message p {
    margin: 6px 0;
    line-height: 1.4;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.mb-chat-message span {
    font-size: 11px;
    opacity: .68;
}

.mb-chat-form {
    display: none;
    grid-template-columns: 1fr auto;
    gap: 9px;
    padding: 12px;
    background: #fff;
    border-top: 1px solid #eadfcd;
}

.mb-chat-form.active {
    display: grid;
}

.mb-chat-form textarea {
    width: 100%;
    border: 1px solid #d7d0c6;
    border-radius: 16px;
    padding: 12px;
    resize: none;
    font-size: 14px;
    font-family: inherit;
}

.mb-chat-form textarea:focus {
    outline: 3px solid rgba(216,139,40,.22);
    border-color: #d88b28;
}

.mb-chat-form button {
    border: 0;
    border-radius: 16px;
    background: #d88b28;
    color: #111;
    font-weight: 900;
    padding: 0 16px;
    cursor: pointer;
}

.mb-chat-empty,
.mb-chat-loading {
    min-height: 260px;
    display: grid;
    place-content: center;
    text-align: center;
    color: #6d6a64;
    padding: 20px;
}

.mb-chat-empty strong,
.mb-chat-loading strong {
    color: #111;
    font-size: 20px;
}

.mb-chat-empty p {
    margin: 8px 0 0;
    line-height: 1.45;
}

[data-motobnb-open-chat] {
    font-family: inherit;
    border: 0;
    cursor: pointer;
}

@media (max-width: 560px) {
    .mb-chat-root {
        right: 14px;
        bottom: 14px;
    }

    .mb-chat-window {
        width: calc(100vw - 28px);
        height: 72vh;
        right: 0;
        bottom: 78px;
        border-radius: 24px;
    }

    .mb-chat-bubble {
        width: 60px;
        height: 60px;
    }

    .mb-chat-form {
        grid-template-columns: 1fr;
    }

    .mb-chat-form button {
        padding: 13px;
    }
}

/* ============================================================
   MOTO BNB - OVERRIDE CHAT FLUTUANTE LARANJA
   ============================================================ */

.mb-chat-bubble {
    background: #d88b28 !important;
    color: #111 !important;
    box-shadow: 0 18px 55px rgba(216, 139, 40, .42) !important;
}

.mb-chat-bubble:hover {
    background: #ffb24a !important;
    color: #111 !important;
    transform: translateY(-3px);
}

.mb-chat-bubble-icon {
    color: #111 !important;
}

.mb-chat-badge {
    background: #111 !important;
    color: #ffb24a !important;
    border: 2px solid #fff !important;
}


/* ============================================================
   MOTO BNB - ICONE SVG PROFISSIONAL DO CHAT
   ============================================================ */

.mb-chat-bubble {
    background: #d88b28 !important;
    color: #111 !important;
    box-shadow: 0 18px 55px rgba(216, 139, 40, .42) !important;
}

.mb-chat-bubble:hover {
    background: #ffb24a !important;
    color: #111 !important;
}

.mb-chat-bubble-icon {
    width: 34px !important;
    height: 34px !important;
    display: grid !important;
    place-items: center !important;
    line-height: 0 !important;
}

.mb-chat-svg {
    width: 34px !important;
    height: 34px !important;
    display: block !important;
    fill: #111 !important;
    filter: drop-shadow(0 1px 0 rgba(255,255,255,.18));
}

.mb-chat-bubble:hover .mb-chat-svg {
    fill: #111 !important;
    transform: scale(1.04);
}


/* ============================================================
   MOTO BNB - PADRAO VISUAL PAGINAS INTERNAS
   Trip / Nova Hospedagem / Solicitar Locacao
   ============================================================ */

.internal-hero {
    padding: 68px 42px 34px;
    background:
        radial-gradient(circle at 78% 18%, rgba(216,139,40,.22), transparent 25%),
        linear-gradient(135deg, #fff, #f7efe3);
}

.internal-hero-content {
    max-width: 1080px;
}

.internal-hero h1 {
    max-width: 1050px;
    margin: 0;
    font-size: clamp(40px, 6vw, 74px);
    line-height: .94;
    letter-spacing: -3px;
}

.internal-hero p {
    max-width: 860px;
    margin: 22px 0 0;
    color: #6d6a64;
    font-size: 20px;
    line-height: 1.5;
}

.internal-page-shell {
    padding: 34px 42px 82px;
    background: #f4f1ea;
}

.internal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 28px;
    align-items: start;
    max-width: 1380px;
    margin: 0 auto;
}

.internal-main-card,
.internal-side-card {
    background: #fff;
    border: 1px solid #eadfcd;
    border-radius: 30px;
    box-shadow: 0 18px 55px rgba(0,0,0,.08);
}

.internal-main-card {
    padding: 30px;
}

.internal-side-card {
    padding: 26px;
    position: sticky;
    top: 96px;
}

.internal-card-head {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid #eadfcd;
}

.internal-card-head > span {
    min-width: 48px;
    height: 48px;
    border-radius: 18px;
    background: #d88b28;
    color: #111;
    display: grid;
    place-items: center;
    font-weight: 1000;
    box-shadow: 0 12px 28px rgba(216,139,40,.22);
}

.internal-card-head h2,
.internal-side-card h2 {
    margin: 0;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -1px;
}

.internal-card-head p,
.internal-side-card p {
    margin: 7px 0 0;
    color: #6d6a64;
    line-height: 1.45;
}

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

.internal-form-grid label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 900;
    color: #151515;
    min-width: 0;
}

.internal-form-grid label.span-2,
.internal-form-grid .span-2 {
    grid-column: 1 / -1;
}

.internal-form-grid input,
.internal-form-grid select,
.internal-form-grid textarea {
    width: 100%;
    max-width: 100%;
    border: 1px solid #d7d0c6;
    border-radius: 18px;
    padding: 15px 16px;
    font-size: 16px;
    background: #fff;
    color: #111;
    box-sizing: border-box;
    font-family: inherit;
}

.internal-form-grid textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.5;
}

.internal-form-grid input:focus,
.internal-form-grid select:focus,
.internal-form-grid textarea:focus {
    outline: 3px solid rgba(216,139,40,.22);
    border-color: #d88b28;
}

.internal-form-grid small {
    color: #6d6a64;
    font-weight: 700;
    line-height: 1.35;
}

.internal-check-field {
    background: #f8f3eb;
    border: 1px solid #eadfcd;
    border-radius: 18px;
    padding: 14px;
    min-height: 54px;
    justify-content: center;
}

.internal-check-field .check-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.internal-check-field input[type="checkbox"] {
    width: 18px;
    height: 18px;
    padding: 0;
    accent-color: #d88b28;
}

.internal-check-field strong {
    font-size: 15px;
}

.internal-error-box {
    grid-column: 1 / -1;
    background: #fff0f0;
    border: 1px solid #ffd0d0;
    color: #9b1c1c;
    border-radius: 20px;
    padding: 16px 18px;
    margin-bottom: 20px;
    font-weight: 800;
}

.internal-error-box ul,
.internal-form-grid ul.errorlist {
    margin: 8px 0 0;
    padding-left: 18px;
    color: #9b1c1c;
    font-weight: 800;
}

.internal-submit-row {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #eadfcd;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.internal-main-btn {
    min-width: 190px;
    justify-content: center;
}

.side-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background: #d88b28;
    color: #111;
    display: grid;
    place-items: center;
    font-size: 34px;
    margin-bottom: 22px;
    box-shadow: 0 12px 28px rgba(216,139,40,.26);
}

.side-feature {
    background: #f8f3eb;
    border: 1px solid #eadfcd;
    border-radius: 20px;
    padding: 16px;
    margin-top: 14px;
}

.side-feature strong,
.side-feature span {
    display: block;
}

.side-feature strong {
    color: #8a4d0d;
    font-size: 16px;
}

.side-feature span {
    margin-top: 5px;
    color: #6d6a64;
    line-height: 1.4;
    font-weight: 700;
}

.booking-side-cover {
    height: 220px;
    border-radius: 24px;
    overflow: hidden;
    background: #111;
    margin-bottom: 20px;
}

.booking-side-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-side-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #111, #6b421d);
    color: #ffb24a;
    font-size: 54px;
}

.side-full-btn {
    width: 100%;
    justify-content: center;
    margin-top: 18px;
}

.host-create-form .internal-form-grid label:nth-child(1),
.host-create-form .internal-form-grid label:nth-child(2),
.host-create-form .internal-form-grid label:nth-child(3) {
    grid-column: span 1;
}

.host-create-form .internal-form-grid textarea {
    min-height: 120px;
}

.request-stay-form .internal-form-grid label {
    grid-column: 1 / -1;
}

.request-stay-form .internal-form-grid label:has(input[type="date"]) {
    grid-column: span 1;
}

@media (max-width: 1100px) {
    .internal-layout {
        grid-template-columns: 1fr;
    }

    .internal-side-card {
        position: static;
    }
}

@media (max-width: 760px) {
    .internal-hero,
    .internal-page-shell {
        padding-left: 18px;
        padding-right: 18px;
    }

    .internal-hero h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .internal-main-card,
    .internal-side-card {
        padding: 22px;
        border-radius: 24px;
    }

    .internal-form-grid {
        grid-template-columns: 1fr;
    }

    .internal-submit-row {
        justify-content: stretch;
    }

    .internal-submit-row .btn,
    .internal-submit-row button {
        width: 100%;
        justify-content: center;
    }

    .internal-card-head {
        flex-direction: column;
    }
}

/* ============================================================
   MOTO BNB - BLOCO 10 - TRIP PRO CONFIGURADOR
   ============================================================ */

.trip-pro-hero {
    padding: 60px 42px 34px;
    background:
        radial-gradient(circle at 78% 18%, rgba(216,139,40,.22), transparent 25%),
        linear-gradient(135deg, #fff, #f7efe3);
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 26px;
}

.trip-pro-hero h1 {
    max-width: 1050px;
    margin: 0;
    font-size: clamp(40px, 6vw, 74px);
    line-height: .94;
    letter-spacing: -3px;
}

.trip-pro-hero p {
    margin: 20px 0 0;
    color: #6d6a64;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.45;
}

.trip-pro-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.trip-pro-shell {
    padding: 34px 42px 110px;
    background: #f4f1ea;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.trip-pro-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 96px;
}

.trip-pro-summary-card,
.trip-filter-card,
.trip-map-card,
.trip-hosts-form {
    background: #fff;
    border: 1px solid #eadfcd;
    border-radius: 30px;
    box-shadow: 0 18px 55px rgba(0,0,0,.08);
}

.trip-pro-summary-card,
.trip-filter-card {
    padding: 24px;
}

.trip-pro-summary-card h2 {
    margin: 0;
    font-size: 42px;
    letter-spacing: -2px;
}

.trip-pro-summary-card p {
    color: #6d6a64;
    line-height: 1.45;
}

.trip-summary-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.trip-summary-grid div,
.trip-origin-dest div {
    background: #f8f3eb;
    border: 1px solid #eadfcd;
    border-radius: 18px;
    padding: 14px;
}

.trip-summary-grid strong,
.trip-summary-grid span,
.trip-origin-dest strong,
.trip-origin-dest span {
    display: block;
}

.trip-summary-grid strong {
    color: #8a4d0d;
    font-size: 25px;
}

.trip-summary-grid span,
.trip-origin-dest span {
    color: #6d6a64;
    margin-top: 4px;
    font-weight: 800;
}

.trip-origin-dest {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.trip-filter-card h2 {
    margin: 0 0 18px;
    font-size: 28px;
    letter-spacing: -1px;
}

.trip-filter-card label {
    display: grid;
    gap: 7px;
    font-weight: 900;
    margin-bottom: 13px;
}

.trip-filter-card select,
.trip-filter-card input {
    width: 100%;
    border: 1px solid #d7d0c6;
    border-radius: 16px;
    padding: 13px 14px;
    font-size: 15px;
    background: #fff;
}

.trip-filter-checks {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.trip-filter-checks label {
    margin: 0;
    background: #f8f3eb;
    border: 1px solid #eadfcd;
    border-radius: 15px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
}

.trip-filter-checks input {
    width: auto;
    accent-color: #d88b28;
}

.trip-filter-actions {
    margin-top: 18px;
    display: grid;
    gap: 9px;
}

.trip-filter-actions .btn {
    justify-content: center;
}

.trip-pro-main {
    display: grid;
    gap: 24px;
}

.trip-map-card {
    overflow: hidden;
}

.trip-map-head {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.trip-map-head h2 {
    margin: 0;
    font-size: 34px;
    letter-spacing: -1px;
}

.trip-map-head p {
    margin: 8px 0 0;
    color: #6d6a64;
    line-height: 1.45;
}

#trip-pro-map {
    height: 560px;
    border-top: 1px solid #eadfcd;
}

.trip-map-popup {
    width: 230px;
}

.trip-map-popup img,
.trip-map-placeholder {
    width: 100%;
    height: 115px;
    border-radius: 14px;
    object-fit: cover;
    display: grid;
    place-items: center;
    background: #f8f3eb;
    margin-bottom: 10px;
    font-size: 34px;
}

.trip-map-popup strong,
.trip-map-popup span,
.trip-map-popup small,
.trip-map-popup a {
    display: block;
}

.trip-map-popup span,
.trip-map-popup small {
    color: #555;
    margin-top: 3px;
}

.trip-map-popup a {
    margin-top: 10px;
    background: #d88b28;
    color: #111;
    border-radius: 999px;
    padding: 8px 11px;
    text-align: center;
    font-weight: 900;
}

.trip-hosts-form {
    padding: 24px;
}

.trip-hosts-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eadfcd;
}

.trip-hosts-head h2 {
    margin: 0;
    font-size: 34px;
    letter-spacing: -1px;
}

.trip-hosts-head p {
    margin: 8px 0 0;
    color: #6d6a64;
    line-height: 1.45;
}

.trip-hosts-tools {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.trip-host-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.trip-host-card {
    border: 1px solid #eadfcd;
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: .18s ease;
    box-shadow: 0 12px 36px rgba(0,0,0,.06);
}

.trip-host-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

.trip-host-card.selected {
    border-color: #d88b28;
    box-shadow: 0 0 0 4px rgba(216,139,40,.14), 0 20px 60px rgba(0,0,0,.12);
}

.trip-host-select {
    position: absolute;
    z-index: 5;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,.94);
    border-radius: 999px;
    padding: 8px 11px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 900;
    font-size: 13px;
}

.trip-host-select input {
    accent-color: #d88b28;
}

.trip-host-photo {
    height: 210px;
    position: relative;
    background: #111;
}

.trip-host-photo img,
.trip-host-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trip-host-placeholder {
    display: grid;
    place-items: center;
    color: #ffb24a;
    font-size: 50px;
    background: linear-gradient(135deg, #111, #6b421d);
}

.trip-host-price {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: rgba(0,0,0,.78);
    color: #ffb24a;
    border-radius: 999px;
    padding: 8px 11px;
    font-weight: 900;
    font-size: 13px;
}

.trip-host-body {
    padding: 18px;
}

.trip-host-body h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.1;
}

.trip-host-body p {
    color: #6d6a64;
    margin: 8px 0 0;
    font-weight: 800;
}

.trip-host-tags {
    margin-top: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.trip-host-tags span {
    background: #f8f3eb;
    border: 1px solid #eadfcd;
    color: #6b421d;
    border-radius: 999px;
    padding: 7px 9px;
    font-size: 12px;
    font-weight: 900;
}

.trip-host-availability {
    margin-top: 14px;
    background: #f8f3eb;
    border: 1px solid #eadfcd;
    border-radius: 18px;
    padding: 13px;
}

.trip-host-availability strong,
.trip-host-availability span {
    display: block;
}

.trip-host-availability span {
    margin-top: 4px;
    color: #6d6a64;
    font-size: 13px;
    line-height: 1.35;
}

.trip-host-actions {
    margin-top: 14px;
}

.trip-host-actions .btn {
    width: 100%;
    justify-content: center;
}

.trip-action-bar {
    position: sticky;
    bottom: 16px;
    z-index: 10;
    margin-top: 24px;
    background: rgba(17,17,17,.96);
    color: #fff;
    border-radius: 26px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    box-shadow: 0 22px 70px rgba(0,0,0,.28);
}

.trip-action-bar strong,
.trip-action-bar span {
    display: block;
}

.trip-action-bar strong {
    font-size: 18px;
}

.trip-action-bar span {
    color: #e8d8c2;
    margin-top: 3px;
}

.trip-action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.trip-action-buttons .btn {
    white-space: nowrap;
}

.trip-status-pill {
    display: inline-flex;
    margin: 0 0 14px;
    background: #fff3df;
    color: #8a4d0d;
    border-radius: 999px;
    padding: 7px 10px;
    font-weight: 900;
    font-size: 13px;
}

@media (max-width: 1320px) {
    .trip-host-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .trip-pro-shell {
        grid-template-columns: 1fr;
    }

    .trip-pro-sidebar {
        position: static;
    }

    .trip-pro-hero {
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 760px) {
    .trip-pro-hero,
    .trip-pro-shell {
        padding-left: 18px;
        padding-right: 18px;
    }

    .trip-pro-hero h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    #trip-pro-map {
        height: 430px;
    }

    .trip-host-card-grid {
        grid-template-columns: 1fr;
    }

    .trip-hosts-head,
    .trip-action-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .trip-action-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .trip-action-buttons .btn {
        justify-content: center;
    }
}

/* ============================================================
   MOTO BNB - MINHAS TRIPS COM MAPA PRINCIPAL
   ============================================================ */

.mytrips-hero {
    padding: 58px 42px 30px;
    background:
        radial-gradient(circle at 78% 18%, rgba(216,139,40,.22), transparent 25%),
        linear-gradient(135deg, #fff, #f7efe3);
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
}

.mytrips-hero h1 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .92;
    letter-spacing: -3px;
}

.mytrips-hero p {
    max-width: 880px;
    margin: 22px 0 0;
    color: #6d6a64;
    font-size: 20px;
    line-height: 1.5;
}

.mytrips-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mytrips-shell {
    min-height: calc(100vh - 210px);
    padding: 28px 42px 86px;
    background: #f4f1ea;
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.mytrips-panel {
    display: grid;
    gap: 16px;
    position: sticky;
    top: 92px;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    padding-right: 4px;
}

.mytrips-filter-card,
.mytrip-card,
.mytrips-empty-card,
.mytrips-map-area {
    background: #fff;
    border: 1px solid #eadfcd;
    border-radius: 28px;
    box-shadow: 0 18px 55px rgba(0,0,0,.08);
}

.mytrips-filter-card {
    padding: 20px;
}

.mytrips-filter-card h2 {
    margin: 0 0 14px;
    font-size: 25px;
    letter-spacing: -1px;
}

.mytrips-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mytrips-filter-pills a {
    color: #6b421d;
    background: #f8f3eb;
    border: 1px solid #eadfcd;
    border-radius: 999px;
    padding: 8px 11px;
    font-size: 13px;
    font-weight: 900;
}

.mytrips-filter-pills a.active {
    background: #111;
    color: #ffb24a;
    border-color: #111;
}

.mytrips-list {
    display: grid;
    gap: 14px;
}

.mytrip-card {
    padding: 18px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: .18s ease;
    font-family: inherit;
    color: #111;
}

.mytrip-card:hover,
.mytrip-card.active {
    transform: translateY(-2px);
    border-color: #d88b28;
    box-shadow: 0 0 0 4px rgba(216,139,40,.14), 0 18px 55px rgba(0,0,0,.12);
}

.mytrip-card-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.mytrip-status {
    display: inline-flex;
    border-radius: 999px;
    padding: 7px 10px;
    background: #f8f3eb;
    color: #8a4d0d;
    border: 1px solid #eadfcd;
    font-size: 12px;
    font-weight: 900;
}

.mytrip-status.desejo {
    background: #fff7ea;
    color: #8a4d0d;
}

.mytrip-status.reservas_solicitadas {
    background: #eef7ff;
    color: #15547a;
}

.mytrip-status.concluida {
    background: #edf9ef;
    color: #1e6d31;
}

.mytrip-card-top strong {
    color: #8a4d0d;
    font-size: 15px;
}

.mytrip-card h2 {
    margin: 0;
    font-size: 23px;
    line-height: 1.08;
    letter-spacing: -.5px;
}

.mytrip-card p {
    margin: 9px 0 0;
    color: #6d6a64;
    font-weight: 800;
}

.mytrip-route-mini {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    align-items: center;
    background: #f8f3eb;
    border: 1px solid #eadfcd;
    border-radius: 18px;
    padding: 12px;
}

.mytrip-route-mini span {
    color: #6d6a64;
    font-size: 13px;
    font-weight: 900;
}

.mytrip-route-mini em {
    color: #d88b28;
    font-style: normal;
    font-weight: 1000;
}

.mytrip-card-bottom {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.mytrip-card-bottom span {
    color: #6d6a64;
    font-size: 13px;
    font-weight: 900;
}

.mytrip-card-bottom a {
    color: #8a4d0d;
    font-weight: 1000;
}

.mytrips-empty-card {
    padding: 24px;
}

.mytrips-empty-card h2 {
    margin: 0 0 8px;
}

.mytrips-empty-card p {
    color: #6d6a64;
    line-height: 1.45;
}

.mytrips-map-area {
    overflow: hidden;
    min-height: 780px;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.mytrips-map-toolbar {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: end;
    border-bottom: 1px solid #eadfcd;
}

.mytrips-map-toolbar h2 {
    margin: 0;
    font-size: 36px;
    letter-spacing: -1.5px;
}

.mytrips-map-toolbar p {
    margin: 8px 0 0;
    color: #6d6a64;
    line-height: 1.45;
}

.mytrips-map-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

#mytrips-map {
    width: 100%;
    min-height: 640px;
    background: #efe8db;
}

.mytrips-map-footer {
    padding: 18px 24px;
    border-top: 1px solid #eadfcd;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    background: #fff;
}

.mytrips-map-footer strong,
.mytrips-map-footer span {
    display: block;
}

.mytrips-map-footer strong {
    font-size: 17px;
}

.mytrips-map-footer span {
    color: #6d6a64;
    line-height: 1.35;
}

.mytrips-popup {
    width: 230px;
}

.mytrips-popup img,
.mytrips-popup-placeholder {
    width: 100%;
    height: 120px;
    border-radius: 14px;
    object-fit: cover;
    display: grid;
    place-items: center;
    background: #f8f3eb;
    margin-bottom: 10px;
    font-size: 34px;
}

.mytrips-popup small,
.mytrips-popup strong,
.mytrips-popup span,
.mytrips-popup em,
.mytrips-popup a {
    display: block;
}

.mytrips-popup small {
    color: #8a4d0d;
    font-weight: 900;
    margin-bottom: 4px;
}

.mytrips-popup strong {
    font-size: 16px;
}

.mytrips-popup span {
    color: #555;
    margin-top: 4px;
}

.mytrips-popup em {
    color: #111;
    font-style: normal;
    font-weight: 900;
    margin-top: 4px;
}

.mytrips-popup a {
    margin-top: 10px;
    background: #d88b28;
    color: #111;
    border-radius: 999px;
    padding: 8px 11px;
    text-align: center;
    font-weight: 900;
}

@media (max-width: 1180px) {
    .mytrips-shell {
        grid-template-columns: 1fr;
    }

    .mytrips-panel {
        position: static;
        max-height: none;
    }

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

    .mytrips-hero {
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 760px) {
    .mytrips-hero,
    .mytrips-shell {
        padding-left: 18px;
        padding-right: 18px;
    }

    .mytrips-hero h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .mytrips-list {
        grid-template-columns: 1fr;
    }

    .mytrips-map-toolbar,
    .mytrips-map-footer {
        flex-direction: column;
        align-items: stretch;
    }

    #mytrips-map {
        min-height: 500px;
    }
}

/* ============================================================
   MOTO BNB - TRIP CORACAO: KM, RODOVIA, PRINT, SHARE
   ============================================================ */

.trip-action-buttons .btn,
.trip-action-buttons button,
.trip-save-btn,
.trip-wishlist-btn,
.trip-reserve-btn {
    color: #111 !important;
    background: #d88b28 !important;
    border-color: #d88b28 !important;
    font-weight: 1000 !important;
}

.trip-action-buttons .btn:hover,
.trip-action-buttons button:hover,
.trip-save-btn:hover,
.trip-wishlist-btn:hover,
.trip-reserve-btn:hover {
    background: #ffb24a !important;
    border-color: #ffb24a !important;
    color: #111 !important;
}

.trip-action-bar small {
    display: block;
    margin-top: 4px;
    color: #ffb24a;
    font-weight: 900;
}

.trip-heart-summary h2 {
    color: #111;
}

.trip-route-status {
    margin-top: 16px;
    padding: 13px 14px;
    background: #f8f3eb;
    border: 1px solid #eadfcd;
    border-radius: 18px;
    color: #6d6a64;
    font-weight: 900;
    line-height: 1.35;
}

.trip-route-status.ok {
    background: #edf9ef;
    border-color: #bde7c4;
    color: #1e6d31;
}

.trip-route-status.warn {
    background: #fff7ea;
    border-color: #ead5b4;
    color: #8a4d0d;
}

.trip-map-kpi {
    min-width: 190px;
    background: #111;
    color: #fff;
    border-radius: 24px;
    padding: 16px;
    text-align: center;
}

.trip-map-kpi strong,
.trip-map-kpi span {
    display: block;
}

.trip-map-kpi strong {
    color: #ffb24a;
    font-size: 28px;
    line-height: 1;
}

.trip-map-kpi span {
    margin-top: 6px;
    color: #eadcc9;
    font-size: 13px;
    font-weight: 900;
}

.danger-outline-btn {
    border-color: #d12b2b !important;
    color: #d12b2b !important;
    background: transparent !important;
}

.danger-outline-btn:hover {
    background: #d12b2b !important;
    color: #fff !important;
}

.danger-btn {
    background: #d12b2b !important;
    border-color: #d12b2b !important;
    color: #fff !important;
}

.delete-warning-box {
    background: #fff0f0;
    border: 1px solid #ffd0d0;
    color: #9b1c1c;
    border-radius: 22px;
    padding: 18px;
    margin-bottom: 22px;
}

.delete-warning-box strong,
.delete-warning-box p {
    display: block;
    margin: 0;
}

.delete-warning-box p {
    margin-top: 8px;
    line-height: 1.45;
}

@media print {
    .topbar,
    .trip-pro-hero-actions,
    .trip-filter-card,
    .trip-hosts-tools,
    .trip-action-bar,
    .mb-chat-root,
    .host-pro-actions-top,
    .nav-cta,
    .inline-form {
        display: none !important;
    }

    body {
        background: #fff !important;
    }

    .trip-pro-hero,
    .trip-pro-shell {
        padding: 20px !important;
        background: #fff !important;
    }

    .trip-pro-shell {
        display: block !important;
    }

    .trip-pro-sidebar,
    .trip-pro-main {
        position: static !important;
        display: block !important;
    }

    .trip-pro-summary-card,
    .trip-map-card,
    .trip-hosts-form {
        box-shadow: none !important;
        break-inside: avoid;
        margin-bottom: 18px;
    }

    #trip-pro-map {
        height: 460px !important;
    }
}

@media (max-width: 760px) {
    .trip-map-head {
        flex-direction: column;
    }

    .trip-map-kpi {
        width: 100%;
    }
}

/* ============================================================
   MOTO BNB - TRIP CORACAO: KM, RODOVIA, PRINT, SHARE
   ============================================================ */

.trip-action-buttons .btn,
.trip-action-buttons button,
.trip-save-btn,
.trip-wishlist-btn,
.trip-reserve-btn {
    color: #111 !important;
    background: #d88b28 !important;
    border-color: #d88b28 !important;
    font-weight: 1000 !important;
}

.trip-action-buttons .btn:hover,
.trip-action-buttons button:hover,
.trip-save-btn:hover,
.trip-wishlist-btn:hover,
.trip-reserve-btn:hover {
    background: #ffb24a !important;
    border-color: #ffb24a !important;
    color: #111 !important;
}

.trip-action-bar small {
    display: block;
    margin-top: 4px;
    color: #ffb24a;
    font-weight: 900;
}

.trip-heart-summary h2 {
    color: #111;
}

.trip-route-status {
    margin-top: 16px;
    padding: 13px 14px;
    background: #f8f3eb;
    border: 1px solid #eadfcd;
    border-radius: 18px;
    color: #6d6a64;
    font-weight: 900;
    line-height: 1.35;
}

.trip-route-status.ok {
    background: #edf9ef;
    border-color: #bde7c4;
    color: #1e6d31;
}

.trip-route-status.warn {
    background: #fff7ea;
    border-color: #ead5b4;
    color: #8a4d0d;
}

.trip-map-kpi {
    min-width: 190px;
    background: #111;
    color: #fff;
    border-radius: 24px;
    padding: 16px;
    text-align: center;
}

.trip-map-kpi strong,
.trip-map-kpi span {
    display: block;
}

.trip-map-kpi strong {
    color: #ffb24a;
    font-size: 28px;
    line-height: 1;
}

.trip-map-kpi span {
    margin-top: 6px;
    color: #eadcc9;
    font-size: 13px;
    font-weight: 900;
}

.danger-outline-btn {
    border-color: #d12b2b !important;
    color: #d12b2b !important;
    background: transparent !important;
}

.danger-outline-btn:hover {
    background: #d12b2b !important;
    color: #fff !important;
}

.danger-btn {
    background: #d12b2b !important;
    border-color: #d12b2b !important;
    color: #fff !important;
}

.delete-warning-box {
    background: #fff0f0;
    border: 1px solid #ffd0d0;
    color: #9b1c1c;
    border-radius: 22px;
    padding: 18px;
    margin-bottom: 22px;
}

.delete-warning-box strong,
.delete-warning-box p {
    display: block;
    margin: 0;
}

.delete-warning-box p {
    margin-top: 8px;
    line-height: 1.45;
}

@media print {
    .topbar,
    .trip-pro-hero-actions,
    .trip-filter-card,
    .trip-hosts-tools,
    .trip-action-bar,
    .mb-chat-root,
    .host-pro-actions-top,
    .nav-cta,
    .inline-form {
        display: none !important;
    }

    body {
        background: #fff !important;
    }

    .trip-pro-hero,
    .trip-pro-shell {
        padding: 20px !important;
        background: #fff !important;
    }

    .trip-pro-shell {
        display: block !important;
    }

    .trip-pro-sidebar,
    .trip-pro-main {
        position: static !important;
        display: block !important;
    }

    .trip-pro-summary-card,
    .trip-map-card,
    .trip-hosts-form {
        box-shadow: none !important;
        break-inside: avoid;
        margin-bottom: 18px;
    }

    #trip-pro-map {
        height: 460px !important;
    }
}

@media (max-width: 760px) {
    .trip-map-head {
        flex-direction: column;
    }

    .trip-map-kpi {
        width: 100%;
    }
}

/* ============================================================
   MOTO BNB - PINS E ROTAS LARANJA
   ============================================================ */

.mb-map-pin-wrap {
    background: transparent !important;
    border: 0 !important;
}

.mb-map-pin {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: #d88b28;
    border: 3px solid #111;
    box-shadow: 0 10px 24px rgba(216, 139, 40, .38);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mb-map-pin.small {
    width: 32px;
    height: 32px;
}

.mb-map-pin::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #111;
    border-radius: 50%;
    top: 8px;
    left: 8px;
    opacity: .92;
}

.mb-map-pin.small::after {
    width: 11px;
    height: 11px;
    top: 8px;
    left: 8px;
}

.mb-map-pin span {
    position: relative;
    z-index: 2;
    transform: rotate(45deg);
    font-size: 10px;
    font-weight: 1000;
    color: #fff;
    line-height: 1;
    margin-top: -1px;
}

.leaflet-popup-content-wrapper {
    border-radius: 18px !important;
}

.leaflet-popup-tip {
    background: #fff !important;
}


/* ============================================================
   MOTO BNB - IDENTIDADE VISUAL OFICIAL
   Logo lowercase motobnb + icone de mao SVG
   ============================================================ */

:root {
    --motobnb-orange: #D97921;
    --motobnb-orange-2: #FF9E3D;
    --motobnb-black: #111111;
    --motobnb-white: #FFFFFF;
    --motobnb-cream: #F5F1EA;
}

.topbar {
    background: #111111 !important;
    min-height: 110px;
    padding: 22px 42px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.motobnb-brand,
.brand.motobnb-brand {
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
    min-width: 0;
    flex-shrink: 0;
}

.motobnb-logo {
    display: block;
    width: 300px;
    max-width: 36vw;
    height: auto;
}

.brand-icon {
    display: none !important;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.main-nav a,
.main-nav button,
.link-button {
    color: rgba(255,255,255,.86) !important;
}

.main-nav a:hover,
.main-nav button:hover,
.link-button:hover {
    color: #D97921 !important;
}

.main-nav .nav-cta {
    background: #D97921 !important;
    color: #111111 !important;
    border-color: #D97921 !important;
    font-weight: 900;
}

.main-nav .nav-cta:hover {
    background: #FF9E3D !important;
    color: #111111 !important;
}

@media (max-width: 980px) {
    .topbar {
        align-items: flex-start;
        flex-direction: column;
        padding: 20px 22px !important;
    }

    .motobnb-logo {
        width: 260px;
        max-width: 80vw;
    }

    .main-nav {
        width: 100%;
        gap: 12px;
    }
}

@media (max-width: 560px) {
    .motobnb-logo {
        width: 220px;
    }

    .topbar {
        min-height: auto;
    }
}


/* ============================================================
   MOTO BNB - AJUSTE FINAL LOGO TOPO
   ============================================================ */

.topbar {
    min-height: 86px !important;
    padding: 16px 30px !important;
    background: #111111 !important;
}

.motobnb-logo {
    width: 188px !important;
    max-width: 28vw !important;
    height: auto !important;
    display: block !important;
}

.motobnb-brand,
.brand.motobnb-brand {
    display: inline-flex !important;
    align-items: center !important;
    line-height: 1 !important;
    min-width: 0 !important;
    flex-shrink: 0 !important;
}

@media (max-width: 980px) {
    .topbar {
        padding: 16px 20px !important;
        min-height: auto !important;
    }

    .motobnb-logo {
        width: 170px !important;
        max-width: 60vw !important;
    }
}

@media (max-width: 560px) {
    .motobnb-logo {
        width: 150px !important;
        max-width: 68vw !important;
    }
}


/* ============================================================
   MOTO BNB - LOGO TOPO FINAL
   SVG exato da mao anexada + wordmark pequeno
   ============================================================ */

.topbar {
    background: #111111 !important;
    min-height: 82px !important;
    padding: 14px 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 26px !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
}

.motobnb-brand,
.brand.motobnb-brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
}

.motobnb-logo {
    display: none !important;
}

.motobnb-hand-logo {
    width: 42px !important;
    height: 42px !important;
    display: block !important;
    object-fit: contain !important;
    flex: 0 0 auto !important;
}

.motobnb-wordmark {
    display: inline-flex !important;
    align-items: baseline !important;
    font-family: "Nunito", "Arial Rounded MT Bold", "Avenir Next", "Poppins", "Montserrat", Arial, sans-serif !important;
    font-size: 31px !important;
    font-weight: 900 !important;
    letter-spacing: -1.65px !important;
    line-height: .92 !important;
    text-transform: lowercase !important;
    white-space: nowrap !important;
}

.motobnb-word-moto {
    color: #FFFFFF !important;
}

.motobnb-word-bnb {
    color: #D97921 !important;
}

.brand-icon {
    display: none !important;
}

.main-nav {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
}

.main-nav a,
.main-nav button,
.link-button {
    color: rgba(255,255,255,.86) !important;
}

.main-nav a:hover,
.main-nav button:hover,
.link-button:hover {
    color: #D97921 !important;
}

.main-nav .nav-cta {
    background: #D97921 !important;
    color: #111111 !important;
    border-color: #D97921 !important;
    font-weight: 900 !important;
}

.main-nav .nav-cta:hover {
    background: #FF9E3D !important;
    color: #111111 !important;
}

@media (max-width: 980px) {
    .topbar {
        align-items: flex-start !important;
        flex-direction: column !important;
        padding: 15px 20px !important;
        min-height: auto !important;
    }

    .motobnb-hand-logo {
        width: 38px !important;
        height: 38px !important;
    }

    .motobnb-wordmark {
        font-size: 28px !important;
        letter-spacing: -1.4px !important;
    }

    .main-nav {
        width: 100% !important;
        gap: 12px !important;
    }
}

@media (max-width: 560px) {
    .motobnb-hand-logo {
        width: 34px !important;
        height: 34px !important;
    }

    .motobnb-wordmark {
        font-size: 25px !important;
        letter-spacing: -1.1px !important;
    }
}


/* ============================================================
   MOTO BNB - LOGO TOPO AJUSTE FINO FINAL
   ============================================================ */

.topbar {
    background: #111111 !important;
    min-height: 78px !important;
    padding: 12px 26px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
}

.motobnb-brand,
.brand.motobnb-brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    text-decoration: none !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
}

.motobnb-hand-logo {
    width: 48px !important;
    height: 48px !important;
    display: block !important;
    object-fit: contain !important;
    flex: 0 0 auto !important;
    margin-right: -2px !important;
}

.motobnb-wordmark {
    display: inline-flex !important;
    align-items: baseline !important;
    font-family: "Avenir Next Rounded", "Nunito Sans", "Avenir Next", "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif !important;
    font-size: 29px !important;
    font-weight: 800 !important;
    letter-spacing: -2.15px !important;
    line-height: .88 !important;
    text-transform: lowercase !important;
    white-space: nowrap !important;
}

.motobnb-word-moto {
    color: #FFFFFF !important;
}

.motobnb-word-bnb {
    color: #D97921 !important;
}

.motobnb-logo,
.brand-icon {
    display: none !important;
}

.main-nav {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
}

.main-nav a,
.main-nav button,
.link-button {
    color: rgba(255,255,255,.86) !important;
}

.main-nav a:hover,
.main-nav button:hover,
.link-button:hover {
    color: #D97921 !important;
}

.main-nav .nav-cta {
    background: #D97921 !important;
    color: #111111 !important;
    border-color: #D97921 !important;
    font-weight: 900 !important;
}

.main-nav .nav-cta:hover {
    background: #FF9E3D !important;
    color: #111111 !important;
}

@media (max-width: 980px) {
    .topbar {
        align-items: flex-start !important;
        flex-direction: column !important;
        padding: 14px 18px !important;
        min-height: auto !important;
    }

    .motobnb-brand,
    .brand.motobnb-brand {
        gap: 3px !important;
    }

    .motobnb-hand-logo {
        width: 44px !important;
        height: 44px !important;
        margin-right: -2px !important;
    }

    .motobnb-wordmark {
        font-size: 27px !important;
        letter-spacing: -2px !important;
    }

    .main-nav {
        width: 100% !important;
        gap: 12px !important;
    }
}

@media (max-width: 560px) {
    .motobnb-hand-logo {
        width: 40px !important;
        height: 40px !important;
    }

    .motobnb-wordmark {
        font-size: 24px !important;
        letter-spacing: -1.8px !important;
    }
}


/* ============================================================
   MOTO BNB - OVERRIDE FINAL HANDPEACE TOPO
   mais grossa, menor e mais proxima do nome
   ============================================================ */

.motobnb-brand,
.brand.motobnb-brand {
    gap: 1px !important;
}

.motobnb-hand-logo {
    width: 41px !important;
    height: 41px !important;
    display: block !important;
    object-fit: contain !important;
    flex: 0 0 auto !important;
    margin-right: -5px !important;
    transform: translateY(0.5px) !important;
}

.motobnb-wordmark {
    font-size: 29px !important;
    letter-spacing: -2.1px !important;
    line-height: .88 !important;
}

@media (max-width: 980px) {
    .motobnb-brand,
    .brand.motobnb-brand {
        gap: 1px !important;
    }

    .motobnb-hand-logo {
        width: 38px !important;
        height: 38px !important;
        margin-right: -4px !important;
    }

    .motobnb-wordmark {
        font-size: 27px !important;
        letter-spacing: -2px !important;
    }
}

@media (max-width: 560px) {
    .motobnb-brand,
    .brand.motobnb-brand {
        gap: 0 !important;
    }

    .motobnb-hand-logo {
        width: 35px !important;
        height: 35px !important;
        margin-right: -3px !important;
    }

    .motobnb-wordmark {
        font-size: 24px !important;
        letter-spacing: -1.8px !important;
    }
}


/* ============================================================
   MOTO BNB - FIX SVG HANDPEACE VALIDO
   ============================================================ */

.motobnb-brand,
.brand.motobnb-brand {
    gap: 0 !important;
}

.motobnb-hand-logo {
    width: 37px !important;
    height: 37px !important;
    display: block !important;
    object-fit: contain !important;
    margin-right: -7px !important;
    transform: translateY(1px) !important;
}

.motobnb-wordmark {
    font-family: "Avenir Next Rounded", "Nunito Sans", "Avenir Next", "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif !important;
    font-size: 29px !important;
    font-weight: 800 !important;
    letter-spacing: -2.15px !important;
    line-height: .88 !important;
}

.motobnb-word-moto {
    color: #FFFFFF !important;
}

.motobnb-word-bnb {
    color: #D97921 !important;
}

@media (max-width: 980px) {
    .motobnb-hand-logo {
        width: 35px !important;
        height: 35px !important;
        margin-right: -6px !important;
    }
}

@media (max-width: 560px) {
    .motobnb-hand-logo {
        width: 32px !important;
        height: 32px !important;
        margin-right: -5px !important;
    }
}


/* ============================================================
   MOTO BNB - AJUSTE HANDPEACE MENOR NO TOPO
   ============================================================ */

.motobnb-brand,
.brand.motobnb-brand {
    gap: 0 !important;
}

.motobnb-hand-logo {
    width: 30px !important;
    height: 30px !important;
    max-height: 30px !important;
    display: block !important;
    object-fit: contain !important;
    margin-right: -4px !important;
    transform: translateY(1px) !important;
}

.motobnb-wordmark {
    font-size: 29px !important;
    line-height: .88 !important;
}

@media (max-width: 980px) {
    .motobnb-hand-logo {
        width: 28px !important;
        height: 28px !important;
        max-height: 28px !important;
        margin-right: -4px !important;
    }
}

@media (max-width: 560px) {
    .motobnb-hand-logo {
        width: 26px !important;
        height: 26px !important;
        max-height: 26px !important;
        margin-right: -3px !important;
    }
}


/* ============================================================
   MOTO BNB - FIX CORTE DEDOS HANDPEACE
   ============================================================ */

.motobnb-hand-logo {
    width: 30px !important;
    height: 30px !important;
    max-height: 30px !important;
    object-fit: contain !important;
    overflow: visible !important;
    margin-right: -4px !important;
    transform: translateY(1px) !important;
}

.motobnb-brand,
.brand.motobnb-brand {
    gap: 0 !important;
    overflow: visible !important;
}

@media (max-width: 980px) {
    .motobnb-hand-logo {
        width: 28px !important;
        height: 28px !important;
        max-height: 28px !important;
        margin-right: -4px !important;
    }
}

@media (max-width: 560px) {
    .motobnb-hand-logo {
        width: 26px !important;
        height: 26px !important;
        max-height: 26px !important;
        margin-right: -3px !important;
    }
}


/* ============================================================
   MOTO BNB - REFINO VISUAL LOGO TOPO
   ============================================================ */

.topbar {
    background: #111111 !important;
    min-height: 78px !important;
    padding: 12px 30px !important;
}

.motobnb-brand,
.brand.motobnb-brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    text-decoration: none !important;
    line-height: 1 !important;
    overflow: visible !important;
}

.motobnb-hand-logo {
    width: 36px !important;
    height: 36px !important;
    max-height: 36px !important;
    display: block !important;
    object-fit: contain !important;
    overflow: visible !important;
    margin-right: -1px !important;
    transform: translateY(1px) !important;
}

.motobnb-wordmark {
    display: inline-flex !important;
    align-items: baseline !important;
    font-family: "Avenir Next Rounded", "Nunito Sans", "Avenir Next", "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif !important;
    font-size: 31px !important;
    font-weight: 850 !important;
    letter-spacing: -2.35px !important;
    line-height: .88 !important;
    text-transform: lowercase !important;
    white-space: nowrap !important;
    text-shadow: none !important;
}

.motobnb-word-moto {
    color: #FFFFFF !important;
}

.motobnb-word-bnb {
    color: #D97921 !important;
}

@media (max-width: 980px) {
    .motobnb-brand,
    .brand.motobnb-brand {
        gap: 6px !important;
    }

    .motobnb-hand-logo {
        width: 34px !important;
        height: 34px !important;
    }

    .motobnb-wordmark {
        font-size: 29px !important;
        letter-spacing: -2.15px !important;
    }
}

@media (max-width: 560px) {
    .motobnb-hand-logo {
        width: 31px !important;
        height: 31px !important;
    }

    .motobnb-wordmark {
        font-size: 26px !important;
        letter-spacing: -1.9px !important;
    }
}


/* ============================================================
   MOTO BNB - HANDPEACE ORIGINAL NITIDA
   ============================================================ */

.motobnb-brand,
.brand.motobnb-brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    text-decoration: none !important;
    line-height: 1 !important;
    overflow: visible !important;
}

.motobnb-hand-logo {
    width: 38px !important;
    height: 38px !important;
    max-height: 38px !important;
    display: block !important;
    object-fit: contain !important;
    overflow: visible !important;
    margin-right: -2px !important;
    transform: translateY(1px) !important;
    filter: none !important;
    image-rendering: auto !important;
}

.motobnb-wordmark {
    font-family: "Avenir Next Rounded", "Nunito Sans", "Avenir Next", "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif !important;
    font-size: 31px !important;
    font-weight: 850 !important;
    letter-spacing: -2.35px !important;
    line-height: .88 !important;
    text-transform: lowercase !important;
    white-space: nowrap !important;
    text-shadow: none !important;
}

.motobnb-word-moto {
    color: #FFFFFF !important;
}

.motobnb-word-bnb {
    color: #D97921 !important;
}

@media (max-width: 980px) {
    .motobnb-hand-logo {
        width: 35px !important;
        height: 35px !important;
        max-height: 35px !important;
        margin-right: -2px !important;
    }

    .motobnb-wordmark {
        font-size: 29px !important;
        letter-spacing: -2.15px !important;
    }
}

@media (max-width: 560px) {
    .motobnb-hand-logo {
        width: 32px !important;
        height: 32px !important;
        max-height: 32px !important;
        margin-right: -1px !important;
    }

    .motobnb-wordmark {
        font-size: 26px !important;
        letter-spacing: -1.9px !important;
    }
}


/* ============================================================
   MOTO BNB - HANDPEACE GROSSURA DO BNB
   ============================================================ */

.motobnb-brand,
.brand.motobnb-brand {
    gap: 2px !important;
    align-items: center !important;
}

.motobnb-hand-logo {
    width: 34px !important;
    height: 34px !important;
    max-height: 34px !important;
    display: block !important;
    object-fit: contain !important;
    margin-right: -2px !important;
    transform: translateY(1px) !important;
    filter: none !important;
}

@media (max-width: 980px) {
    .motobnb-hand-logo {
        width: 32px !important;
        height: 32px !important;
        max-height: 32px !important;
    }
}

@media (max-width: 560px) {
    .motobnb-hand-logo {
        width: 29px !important;
        height: 29px !important;
        max-height: 29px !important;
    }
}


/* ============================================================
   MOTO BNB - HANDPEACE LARANJA PREENCHIDA
   ============================================================ */

.motobnb-brand,
.brand.motobnb-brand {
    gap: 2px !important;
    align-items: center !important;
}

.motobnb-hand-logo {
    width: 31px !important;
    height: 31px !important;
    max-height: 31px !important;
    display: block !important;
    object-fit: contain !important;
    margin-right: -1px !important;
    transform: translateY(1px) !important;
    filter: none !important;
}

@media (max-width: 980px) {
    .motobnb-hand-logo {
        width: 29px !important;
        height: 29px !important;
        max-height: 29px !important;
    }
}

@media (max-width: 560px) {
    .motobnb-hand-logo {
        width: 27px !important;
        height: 27px !important;
        max-height: 27px !important;
    }
}


/* ============================================================
   MOTO BNB - HANDPEACE SVG PREENCHIDA
   ============================================================ */

.motobnb-brand,
.brand.motobnb-brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    line-height: 1 !important;
    overflow: visible !important;
}

.motobnb-hand-logo {
    width: 31px !important;
    height: 31px !important;
    max-height: 31px !important;
    display: block !important;
    object-fit: contain !important;
    overflow: visible !important;
    margin-right: -1px !important;
    transform: translateY(1px) !important;
    filter: none !important;
    image-rendering: auto !important;
}

.motobnb-wordmark {
    display: inline-flex !important;
    align-items: baseline !important;
}

@media (max-width: 980px) {
    .motobnb-hand-logo {
        width: 29px !important;
        height: 29px !important;
        max-height: 29px !important;
    }
}

@media (max-width: 560px) {
    .motobnb-hand-logo {
        width: 27px !important;
        height: 27px !important;
        max-height: 27px !important;
    }
}


/* ============================================================
   MOTO BNB - HANDPEACE LARANJA COM DIVISAO PRETA
   ============================================================ */

.motobnb-brand,
.brand.motobnb-brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    line-height: 1 !important;
    overflow: visible !important;
}

.motobnb-hand-logo {
    width: 31px !important;
    height: 31px !important;
    max-height: 31px !important;
    display: block !important;
    object-fit: contain !important;
    overflow: visible !important;
    margin-right: -1px !important;
    transform: translateY(1px) !important;
    filter: none !important;
    image-rendering: auto !important;
}

@media (max-width: 980px) {
    .motobnb-hand-logo {
        width: 29px !important;
        height: 29px !important;
        max-height: 29px !important;
    }
}

@media (max-width: 560px) {
    .motobnb-hand-logo {
        width: 27px !important;
        height: 27px !important;
        max-height: 27px !important;
    }
}


/* ============================================================
   MOTO BNB - HANDPEACE NITIDA FINAL
   ============================================================ */

.motobnb-brand,
.brand.motobnb-brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 3px !important;
    line-height: 1 !important;
    overflow: visible !important;
}

.motobnb-hand-logo {
    width: 31px !important;
    height: 31px !important;
    max-height: 31px !important;
    display: block !important;
    object-fit: contain !important;
    overflow: visible !important;
    margin-right: -1px !important;
    transform: translateY(1px) !important;
    filter: none !important;
    image-rendering: auto !important;
}

@media (max-width: 980px) {
    .motobnb-hand-logo {
        width: 29px !important;
        height: 29px !important;
        max-height: 29px !important;
    }
}

@media (max-width: 560px) {
    .motobnb-hand-logo {
        width: 27px !important;
        height: 27px !important;
        max-height: 27px !important;
    }
}


/* ============================================================
   MOTO BNB - LOGO COM SVG ANEXADO
   ============================================================ */

.topbar {
    background: #111111 !important;
    min-height: 78px !important;
    padding: 12px 30px !important;
}

.motobnb-brand,
.brand.motobnb-brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    text-decoration: none !important;
    line-height: 1 !important;
    overflow: visible !important;
}

.motobnb-hand-logo {
    width: 34px !important;
    height: 34px !important;
    max-height: 34px !important;
    display: block !important;
    object-fit: contain !important;
    overflow: visible !important;
    margin-right: -1px !important;
    transform: translateY(1px) !important;
    filter: none !important;
    image-rendering: auto !important;
}

.motobnb-wordmark {
    display: inline-flex !important;
    align-items: baseline !important;
    font-family: "Avenir Next Rounded", "Nunito Sans", "Avenir Next", "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif !important;
    font-size: 31px !important;
    font-weight: 850 !important;
    letter-spacing: -2.35px !important;
    line-height: .88 !important;
    text-transform: lowercase !important;
    white-space: nowrap !important;
    text-shadow: none !important;
}

.motobnb-word-moto {
    color: #FFFFFF !important;
}

.motobnb-word-bnb {
    color: #D97921 !important;
}

.motobnb-logo,
.brand-icon {
    display: none !important;
}

@media (max-width: 980px) {
    .motobnb-hand-logo {
        width: 31px !important;
        height: 31px !important;
        max-height: 31px !important;
    }

    .motobnb-wordmark {
        font-size: 29px !important;
        letter-spacing: -2.15px !important;
    }
}

@media (max-width: 560px) {
    .motobnb-hand-logo {
        width: 28px !important;
        height: 28px !important;
        max-height: 28px !important;
    }

    .motobnb-wordmark {
        font-size: 26px !important;
        letter-spacing: -1.9px !important;
    }
}


/* ============================================================
   MOTO BNB - SVG LOGO 100% TRANSPARENTE
   ============================================================ */

.motobnb-hand-logo {
    background: transparent !important;
    mix-blend-mode: normal !important;
    filter: none !important;
    image-rendering: auto !important;
}

.motobnb-brand img,
.brand.motobnb-brand img {
    background: transparent !important;
}


/* ============================================================
   MOTO BNB - SVG LOGO 100% TRANSPARENTE
   ============================================================ */

.motobnb-hand-logo {
    background: transparent !important;
    mix-blend-mode: normal !important;
    filter: none !important;
    image-rendering: auto !important;
}

.motobnb-brand img,
.brand.motobnb-brand img {
    background: transparent !important;
}


/* ============================================================
   MOTO BNB - FIX SVG LOGO TRANSPARENTE
   ============================================================ */

.motobnb-hand-logo,
.motobnb-brand img,
.brand.motobnb-brand img {
    background: transparent !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    image-rendering: auto !important;
}


/* ============================================================
   MOTO BNB - HANDPEACE SVG LIMPO DEFINITIVO
   ============================================================ */

.motobnb-hand-logo,
.motobnb-brand img,
.brand.motobnb-brand img {
    background: transparent !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    image-rendering: auto !important;
}

.motobnb-hand-logo {
    width: 34px !important;
    height: 34px !important;
    max-height: 34px !important;
    object-fit: contain !important;
    display: block !important;
    margin-right: -1px !important;
    transform: translateY(1px) !important;
}


/* ============================================================
   MOTO BNB - APROXIMAR ICONE DO NOME
   ============================================================ */

.motobnb-brand,
.brand.motobnb-brand {
    gap: 0 !important;
}

.motobnb-hand-logo {
    margin-right: -8px !important;
    transform: translateY(1px) translateX(2px) !important;
}

.motobnb-wordmark {
    margin-left: 0 !important;
}

@media (max-width: 980px) {
    .motobnb-hand-logo {
        margin-right: -7px !important;
        transform: translateY(1px) translateX(2px) !important;
    }
}

@media (max-width: 560px) {
    .motobnb-hand-logo {
        margin-right: -6px !important;
        transform: translateY(1px) translateX(1px) !important;
    }
}


/* ============================================================
   MOTO BNB - AUMENTAR MARGEM ENTRE ICONE E NOME EM 5PX
   ajuste anterior: -8px
   ajuste novo:     -3px
   ============================================================ */

.motobnb-brand,
.brand.motobnb-brand {
    gap: 0 !important;
}

.motobnb-hand-logo {
    margin-right: -3px !important;
    transform: translateY(1px) translateX(2px) !important;
}

@media (max-width: 980px) {
    .motobnb-hand-logo {
        margin-right: -2px !important;
        transform: translateY(1px) translateX(2px) !important;
    }
}

@media (max-width: 560px) {
    .motobnb-hand-logo {
        margin-right: -1px !important;
        transform: translateY(1px) translateX(1px) !important;
    }
}


/* ============================================================
   MOTO BNB - TRIP ROTA REAL
   ============================================================ */

.motobnb-trip-route-panel {
    margin: 14px 0 18px 0;
    padding: 14px 16px;
    border-radius: 18px;
    background: #fff8f0;
    border: 1px solid rgba(217, 121, 33, .28);
    color: #201713;
    font-size: 14px;
    line-height: 1.45;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.motobnb-trip-route-panel[data-type="ok"] {
    background: #f3fff6;
    border-color: rgba(25, 135, 84, .25);
}

.motobnb-trip-route-panel[data-type="warn"] {
    background: #fff8e8;
    border-color: rgba(217, 121, 33, .36);
}

.motobnb-trip-route-panel[data-type="error"] {
    background: #fff1f1;
    border-color: rgba(180, 40, 40, .25);
}

    margin-right: 10px !important;
    background: #D97921 !important;
    border-color: #D97921 !important;
    color: #111111 !important;
    font-weight: 800 !important;
}

.motobnb-edit-trip-shortcut {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 14px 0;
    padding: 10px 16px;
    border-radius: 999px;
    background: #D97921;
    color: #111111 !important;
    text-decoration: none !important;
    font-weight: 850;
    box-shadow: 0 12px 25px rgba(217,121,33,.25);
}


/* ============================================================
   MOTO BNB - MAPA REAL DA TRIP
   ============================================================ */

.motobnb-trip-real-map {
    width: 100%;
    min-height: 430px;
    height: 52vh;
    border-radius: 24px;
    overflow: hidden;
    margin: 18px 0 28px 0;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 18px 45px rgba(0,0,0,.10);
    background: #f2f2f2;
}

.motobnb-trip-route-status {
    margin: 16px 0 12px 0;
    padding: 14px 16px;
    border-radius: 18px;
    background: #fff8f0;
    border: 1px solid rgba(217, 121, 33, .32);
    color: #17120f;
    font-size: 14px;
    line-height: 1.45;
}

.motobnb-trip-route-status[data-type="ok"] {
    background: #f3fff6;
    border-color: rgba(25, 135, 84, .28);
}

.motobnb-trip-route-status[data-type="warn"] {
    background: #fff8e8;
    border-color: rgba(217, 121, 33, .42);
}

.motobnb-trip-route-status[data-type="error"] {
    background: #fff1f1;
    border-color: rgba(180, 40, 40, .35);
}

.motobnb-draw-real-route-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px 0;
    padding: 12px 18px;
    border-radius: 999px;
    border: 0;
    background: #D97921;
    color: #111111;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(217, 121, 33, .24);
}

/* BIKETRIP_MY_POINTS_PHOTO_START */

.my-host-cover {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #111;
}

.my-host-cover .my-host-main-photo {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center !important;
}

.my-host-handpeace-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background:
        radial-gradient(
            circle at 72% 20%,
            rgba(224, 132, 28, .22),
            transparent 36%
        ),
        #111;
    color: #fff;
    text-align: center;
}

.my-host-handpeace-placeholder img {
    display: block !important;
    width: 52px !important;
    height: 52px !important;
    max-width: 52px !important;
    object-fit: contain !important;
}

.my-host-handpeace-placeholder span {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 850;
}

.my-host-cover .my-host-status {
    position: absolute;
    z-index: 3;
    top: 14px;
    left: 14px;
}

@media (max-width: 720px) {
    .my-host-cover {
        height: 200px;
    }
}

/* BIKETRIP_MY_POINTS_PHOTO_END */

/* ==========================================================
   BIKETRIP_TRIPS_OVERVIEW_START
   ========================================================== */

.mytrips-map-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 9px;
}

.mytrips-map-actions .btn {
    min-width: 120px;
}

.mytrips-map-actions button:disabled {
    opacity: .62;
    cursor: wait;
}

.btbnb-trip-endpoint-wrap {
    background: transparent !important;
    border: 0 !important;
}

.btbnb-trip-endpoint {
    width: 32px;
    height: 32px;
    border: 3px solid #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--trip-color, #e0841c);
    color: #fff;
    font-size: 12px;
    font-weight: 1000;
    box-shadow:
        0 5px 12px rgba(0, 0, 0, .28);
}

.btbnb-trip-map-popup {
    min-width: 210px;
    display: grid;
    gap: 5px;
    color: #171717;
}

.btbnb-trip-map-popup small {
    color: #b8630c;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.btbnb-trip-map-popup strong {
    font-size: 15px;
    line-height: 1.25;
}

.btbnb-trip-map-popup span {
    color: #5d554d;
    font-size: 12px;
    font-weight: 700;
}

.btbnb-trip-map-popup em {
    color: #8a4a08;
    font-size: 11px;
    font-style: normal;
    font-weight: 850;
}

.btbnb-trip-map-popup a {
    margin-top: 5px;
    padding: 8px 11px;
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
}

@media (max-width: 760px) {
    .mytrips-map-actions {
        width: 100%;
        justify-content: stretch;
    }

    .mytrips-map-actions .btn {
        flex: 1 1 120px;
        min-width: 0;
    }
}

/* ==========================================================
   BIKETRIP_TRIPS_OVERVIEW_END
   ========================================================== */

/* BIKETRIPBNB_MOBILE_OVERFLOW_FIX_START
   Corrige rolagem horizontal ao abrir o menu mobile.
   Não modifica cores, animações, posições verticais ou submenus.
   ============================================================ */

@media (max-width: 900px) {
    html {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
        overflow-x: clip !important;
    }

    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
        overflow-x: clip !important;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    .topbar,
    .navbar,
    .site-navbar,
    .mbnb-navbar,
    .navbar-container,
    .topbar-inner {
        width: 100%;
        max-width: 100vw;
        min-width: 0;
    }

    /*
     * Seletores dos possíveis painéis mobile já usados no projeto.
     * Somente largura e contenção são corrigidas.
     */
    .main-nav,
    .mobile-menu,
    .mobile-nav,
    .mobile-nav-panel,
    .mobile-menu-panel,
    .nav-mobile,
    .nav-drawer,
    .navbar-drawer,
    .navbar-menu-mobile,
    .mbnb-mobile-menu,
    .mbnb-mobile-nav,
    .mbnb-menu-drawer,
    .mbnb-menu-panel,
    .biketrip-mobile-menu {
        max-width: calc(100vw - 16px) !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        overscroll-behavior-x: none;
    }

    /*
     * Quando o menu for um drawer fixado à direita,
     * evita que border, padding ou sombra ultrapassem a tela.
     */
    .mobile-menu,
    .mobile-nav-panel,
    .mobile-menu-panel,
    .nav-drawer,
    .navbar-drawer,
    .navbar-menu-mobile,
    .mbnb-mobile-menu,
    .mbnb-mobile-nav,
    .mbnb-menu-drawer,
    .mbnb-menu-panel,
    .biketrip-mobile-menu {
        width: min(380px, calc(100vw - 16px)) !important;
        right: 8px;
        left: auto;
    }

    /*
     * Links, formulários e submenus não podem aumentar
     * artificialmente a largura do drawer.
     */
    .main-nav *,
    .mobile-menu *,
    .mobile-nav *,
    .mobile-nav-panel *,
    .mobile-menu-panel *,
    .nav-drawer *,
    .navbar-drawer *,
    .navbar-menu-mobile *,
    .mbnb-mobile-menu *,
    .mbnb-mobile-nav *,
    .mbnb-menu-drawer *,
    .mbnb-menu-panel *,
    .biketrip-mobile-menu * {
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .main-nav a,
    .main-nav button,
    .main-nav form,
    .mobile-menu a,
    .mobile-menu button,
    .mobile-menu form,
    .mobile-nav a,
    .mobile-nav button,
    .mobile-nav form,
    .nav-drawer a,
    .nav-drawer button,
    .nav-drawer form,
    .mbnb-mobile-menu a,
    .mbnb-mobile-menu button,
    .mbnb-mobile-menu form,
    .mbnb-menu-drawer a,
    .mbnb-menu-drawer button,
    .mbnb-menu-drawer form {
        width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    /*
     * Bloqueia a página atrás do menu sem criar deslocamento lateral.
     * As classes que não existirem simplesmente não terão efeito.
     */
    body.menu-open,
    body.nav-open,
    body.mobile-menu-open,
    body.mbnb-menu-open,
    body.biketrip-menu-open {
        max-width: 100vw;
        overflow: hidden !important;
        touch-action: none;
    }

    /*
     * Backdrop deve usar inset, não largura somada a left/right.
     */
    .mobile-menu-backdrop,
    .mobile-nav-backdrop,
    .nav-backdrop,
    .menu-overlay,
    .navbar-overlay,
    .mbnb-menu-overlay,
    .mbnb-mobile-overlay {
        inset: 0 !important;
        width: auto !important;
        max-width: 100vw !important;
    }
}

/* BIKETRIPBNB_MOBILE_OVERFLOW_FIX_END */
