:root {
    --bg: #f6fbf9;
    --bg-2: #ffffff;
    --text: #0f172a;
    --muted: #5b6b82;
    --line: #dbe7e2;
    --soft: #eef6f2;
    --soft-2: #f9fcfb;
    --primary: #56e58a;
    --primary-dark: #22c55e;
    --accent: #0b7a53;
    --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.05);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(86, 229, 138, .12), transparent 24%),
        radial-gradient(circle at top right, rgba(34, 197, 94, .08), transparent 20%),
        linear-gradient(180deg, #f8fcfa 0%, #f4faf7 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    appearance: none;
    -webkit-appearance: none;
}

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

.skip-link {
    position: absolute;
    left: 16px;
    top: -120px;
    background: #111827;
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    z-index: 2000;
    font-weight: 700;
}

.skip-link:focus {
    top: 16px;
}

:focus-visible {
    outline: 3px solid rgba(11, 122, 83, 0.45);
    outline-offset: 3px;
}

.container {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
}

.hidden-trigger {
    display: none !important;
}

.card {
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.btn {
    border: 0;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 16px;
    font-weight: 700;
    font-size: .96rem;
    transition: .25s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #08331d;
    background: linear-gradient(135deg, var(--primary), #98f5b8);
    box-shadow: 0 16px 32px rgba(86, 229, 138, .28);
}

.btn-outline {
    color: var(--text);
    background: rgba(255, 255, 255, .88);
    border: 1px solid var(--line);
}

.btn-soft {
    color: #27445f;
    background: var(--soft-2);
    border: 1px solid var(--line);
}

.btn-full {
    width: 100%;
    margin-bottom: 10px;
}

.btn-full:last-child {
    margin-bottom: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--line);
    color: #365166;
    font-size: .88rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--primary-dark);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, .12);
}

.messages {
    margin: 0 0 12px;
    color: #9a3412;
}

.messages ul {
    margin: 0;
    padding-left: 18px;
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.brand-logo-wrap {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    display: block;
    width: auto;
    height: 42px;
    max-width: min(220px, 42vw);
    object-fit: contain;
}

.brand-logo-light {
    display: none;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
}

.footer-logo {
    width: auto;
    height: 40px;
    object-fit: contain;
}

.hero-brand-lockup {
    display: flex;
    justify-content: center;
    margin: 0 auto 22px;
}

.hero-brand-logo {
    width: min(100%, 420px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 38px rgba(34, 197, 94, .18));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(248, 252, 250, .88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(219, 231, 226, .8);
}

.nav-shell {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #43556d;
    font-size: .95rem;
    font-weight: 600;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-footer {
    padding: 34px 0 50px;
    color: rgba(255, 255, 255, .78);
    background: #0f172a;
    margin-top: 40px;
}


.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}


.footer-title,
.footer-brand {
    display: block;
    color: #ffffff;
    margin-bottom: 8px;
}


.footer-text {
    color: rgba(255, 255, 255, .78);
}


.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, .86);
    font-weight: 600;
}


.hero-section {
    padding: 54px 0 30px;
}

.hero-wrap {
    text-align: center;
    padding: 26px 0 10px;
}

.hero-wrap h1 {
    margin: 20px auto 16px;
    font-size: clamp(2.7rem, 7vw, 5.7rem);
    line-height: .96;
    letter-spacing: -.07em;
    max-width: 11ch;
}

.gradient {
    background: linear-gradient(135deg, #0f172a 0%, #0f172a 45%, #27b36b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-wrap > p {
    margin: 0 auto;
    max-width: 760px;
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--muted);
}

/* =========================================================
   BUSCA PRINCIPAL
   ========================================================= */

.search-shell {
    margin: 34px auto 10px;
    max-width: 980px;
    padding: 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.search-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    text-align: left;
}

.search-title {
    font-size: 1rem;
    font-weight: 800;
    color: #142033;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: #edf9f0;
    color: #18824c;
    font-weight: 700;
    font-size: .82rem;
    border: 1px solid #ccefd7;
}

.search-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.4fr) minmax(220px, 1fr) minmax(220px, 1fr) 180px;
    gap: 14px;
    align-items: stretch;
    width: 100%;
}

.search-grid .messages {
    grid-column: 1 / -1;
}

.field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    min-height: 92px;
    padding: 14px 18px;
    border-radius: 20px;
    background: #fbfefd;
    border: 1px solid var(--line);
    text-align: left;
    width: 100%;
}

.field label {
    display: block;
    margin-bottom: 8px;
    font-size: .76rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #7a8ca3;
    font-weight: 700;
    line-height: 1.2;
}

.field input,
.field select,
.field textarea,
.input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    min-height: 34px;
    line-height: 1.35;
    display: block;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 34px;
    background-image:
        linear-gradient(45deg, transparent 50%, #0f172a 50%),
        linear-gradient(135deg, #0f172a 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 2px),
        calc(100% - 12px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.field:focus-within {
    border-color: #9adcb0;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.10);
    background: #ffffff;
}

.field-termo,
.field-cidade,
.field-bairro {
    grid-column: auto;
}

.field-botao {
    padding: 0;
    border: 0;
    background: transparent;
    min-height: 92px;
    display: flex;
    align-items: stretch;
}

.field-botao .btn-search {
    width: 100%;
    min-height: 92px;
    height: 100%;
    border-radius: 20px;
    padding-inline: 26px;
    font-size: 1rem;
}

.location-feedback {
    min-height: 24px;
    margin-top: 10px;
    color: #486079;
    font-size: .92rem;
    font-weight: 600;
}

.quick-searches {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    color: #335067;
    background: rgba(255, 255, 255, .88);
    border: 1px solid var(--line);
    font-size: .9rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    transition: .2s ease;
}

.chip:hover {
    transform: translateY(-2px);
    color: #163225;
    border-color: #bfe6ca;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-notes {
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    margin-top: 20px;
    color: #486079;
    font-size: .95rem;
    font-weight: 500;
}

.hero-notes span::before {
    content: "•";
    color: var(--primary-dark);
    margin-right: 8px;
}

.section {
    padding: 34px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 20px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    letter-spacing: -.05em;
}

.section-head p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
    max-width: 650px;
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.category {
    padding: 22px;
    transition: .25s ease;
}

.category:hover,
.listing:hover {
    transform: translateY(-4px);
}

.icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #eff9f3;
    border: 1px solid #d5eee0;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.category h3,
.listing h3 {
    margin: 0 0 8px;
    font-size: 1.12rem;
    letter-spacing: -.03em;
}

.category p,
.listing p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: .94rem;
}

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

.listing {
    overflow: hidden;
    transition: .25s ease;
}

.listing-cover {
    min-height: 180px;
    padding: 18px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(86, 229, 138, .18), rgba(34, 197, 94, .08)), linear-gradient(180deg, #f3fbf6, #edf8f1);
    border-bottom: 1px solid var(--line);
}

.pill {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line);
    color: #325068;
    font-size: .8rem;
    font-weight: 700;
}

.listing-body {
    padding: 20px;
}

.meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    color: #5d7490;
    font-size: .86rem;
    font-weight: 600;
}

.listing-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat {
    padding: 22px;
    text-align: center;
}

.stat strong {
    display: block;
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    letter-spacing: -.06em;
    margin-bottom: 8px;
}

.stat span {
    color: var(--muted);
    line-height: 1.6;
    font-size: .94rem;
}

.cta-band {
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, #ffffff, #f1fbf4);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 20px;
    align-items: center;
}

.cta-band h2 {
    margin: 12px 0 10px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -.06em;
    max-width: 10ch;
}

.cta-band p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    max-width: 60ch;
}

.cta-box {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--line);
}

.cta-box-text {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.7;
}

.anchor-fix {
    height: 1px;
}

.hero {
    padding: 24px 0 18px;
}

.breadcrumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    color: #6b7f96;
    font-size: .92rem;
    margin-bottom: 16px;
}

.breadcrumbs a {
    color: #486079;
    font-weight: 600;
}

.hero-card {
    padding: 22px;
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcfa 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 20px;
    align-items: stretch;
}

.hero-copy h1 {
    margin: 16px 0 10px;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: .95;
    letter-spacing: -.06em;
    max-width: 10ch;
}

.hero-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    max-width: 62ch;
}

.meta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 18px 0 22px;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--soft-2);
    border: 1px solid var(--line);
    color: #486079;
    font-size: .88rem;
    font-weight: 600;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.hero-visual {
    display: grid;
    gap: 14px;
    grid-template-rows: 1.1fr .9fr;
}

.cover {
    min-height: 280px;
    border-radius: 26px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(86, 229, 138, .16), rgba(34, 197, 94, .06)), linear-gradient(180deg, #f3fbf6, #edf8f1);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.cover::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, .12), transparent 68%);
}

.cover-badge {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--line);
    color: #42627d;
    font-size: .82rem;
    font-weight: 700;
}

.cover-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
}

.cover-content h3 {
    margin: 0 0 10px;
    font-size: 1.45rem;
    letter-spacing: -.03em;
    max-width: 13ch;
}

.cover-content p {
    margin: 0;
    color: #587089;
    line-height: 1.75;
    max-width: 40ch;
}

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

.mini-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line);
}

.mini-card small {
    color: #7a8ca3;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .7rem;
    font-weight: 700;
}

.mini-card strong {
    display: block;
    font-size: 1.32rem;
    margin: 8px 0 4px;
    letter-spacing: -.03em;
}

.mini-card span {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.6;
}

.page {
    padding: 10px 0 56px;
}

.layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 20px;
    align-items: start;
}

.stack {
    display: grid;
    gap: 18px;
}

.section-card {
    padding: 24px;
    border-radius: 26px;
}

.content p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.85;
}

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

.service {
    padding: 18px;
    border-radius: 20px;
    background: var(--soft-2);
    border: 1px solid var(--line);
}

.service h3 {
    margin: 0 0 8px;
    font-size: 1.02rem;
    letter-spacing: -.02em;
}

.service p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: .94rem;
}

.gallery {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 14px;
}

.photo {
    min-height: 190px;
    border-radius: 22px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(86, 229, 138, .14), rgba(34, 197, 94, .05)), linear-gradient(180deg, #f3fbf6, #edf8f1);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.photo span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    color: #486079;
    font-size: .8rem;
    font-weight: 700;
}

.photo strong {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: 1.02rem;
    letter-spacing: -.02em;
}

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

.review {
    padding: 20px;
    border-radius: 22px;
    background: var(--soft-2);
    border: 1px solid var(--line);
}

.review strong {
    display: block;
    margin: 10px 0 10px;
    font-size: 1rem;
    letter-spacing: -.02em;
}

.review p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: .94rem;
}

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

.info-box {
    padding: 18px;
    border-radius: 20px;
    background: var(--soft-2);
    border: 1px solid var(--line);
}

.info-box h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    letter-spacing: -.02em;
}

.info-box p,
.info-box li {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    font-size: .94rem;
}

.info-box ul {
    margin: 0;
    padding-left: 18px;
}

.faq {
    display: grid;
    gap: 12px;
}

details {
    padding: 16px 18px;
    border-radius: 18px;
    background: var(--soft-2);
    border: 1px solid var(--line);
}

summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

aside {
    position: sticky;
    top: 102px;
    display: grid;
    gap: 16px;
}

.sidebar-card {
    padding: 20px;
    border-radius: 24px;
}

.sidebar-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    letter-spacing: -.02em;
}

.sidebar-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: .94rem;
}

.contact-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.contact-item {
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: 16px;
    background: var(--soft-2);
    border: 1px solid var(--line);
}

.contact-item small {
    color: #7a8ca3;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .68rem;
    font-weight: 700;
}

.contact-item strong {
    font-size: .94rem;
    letter-spacing: -.01em;
}

.sidebar-actions {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.search-again,
.similar {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.search-again a,
.bottom-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    color: #335067;
    background: var(--soft-2);
    border: 1px solid var(--line);
    font-weight: 600;
}

.similar-card {
    padding: 16px;
    border-radius: 18px;
    background: var(--soft-2);
    border: 1px solid var(--line);
}

.similar-card h4 {
    margin: 0 0 8px;
    font-size: .98rem;
    letter-spacing: -.02em;
}

.similar-card p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.65;
}

.similar-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: #5d7490;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.bottom-nav {
    margin-top: 18px;
    padding: 26px;
    border-radius: 28px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 18px;
    align-items: center;
    background: linear-gradient(135deg, #ffffff, #f1fbf4);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.bottom-nav h2 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: -.06em;
    max-width: 12ch;
}

.bottom-nav p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    max-width: 60ch;
}

.bottom-links {
    display: grid;
    gap: 10px;
}

.login-hero .hero-grid {
    grid-template-columns: 1fr 420px;
    align-items: center;
}

.login-card {
    padding: 24px;
}

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

.login-actions {
    display: grid;
    gap: 10px;
    margin-top: 6px;
}

.label-title {
    display: block;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.radio-planos-hidden {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 10px;
}

.plano-card {
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    padding: 18px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    outline: none;
}

.plano-card:hover,
.plano-card:focus {
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
}

.plano-card.selecionado {
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.16);
}

.plano-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plano-topo {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.plano-topo h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #0f172a;
}

.plano-preco {
    font-weight: 800;
    font-size: 1rem;
    color: #2563eb;
    white-space: nowrap;
}

.plano-descricao {
    margin: 0;
    color: #475569;
    line-height: 1.5;
    min-height: 48px;
}

.plano-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.plano-meta span {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.85rem;
    color: #334155;
}

.plano-acao {
    margin-top: 6px;
}

.plano-badge {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    background: #e2e8f0;
    color: #334155;
}

.plano-card.selecionado .plano-badge {
    background: #2563eb;
    color: #fff;
}

.error-message {
    display: block;
    margin-top: 8px;
    color: #dc2626;
    font-size: 0.9rem;
}

.page-auth {
    min-height: calc(100vh - 40px);
    display: flex;
    align-items: center;
}

.auth-shell {
    padding: 28px 0 48px;
}

.auth-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 430px);
    gap: 24px;
    align-items: stretch;
}

.auth-copy,
.auth-card {
    padding: 28px;
    border-radius: 28px;
}

.auth-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(248, 252, 250, .96) 100%);
}

.auth-title {
    margin: 18px 0 14px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: .97;
    letter-spacing: -.06em;
    max-width: 11ch;
}

.auth-text {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    max-width: 58ch;
    font-size: 1rem;
}

.auth-benefits {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.auth-benefit {
    padding: 18px;
    border-radius: 20px;
    background: var(--soft-2);
    border: 1px solid var(--line);
}

.auth-benefit strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
    color: var(--text);
    letter-spacing: -.02em;
}

.auth-benefit span {
    display: block;
    color: var(--muted);
    line-height: 1.7;
    font-size: .95rem;
}

.auth-card {
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow);
}

.auth-card-title {
    margin: 0 0 8px;
    font-size: 1.6rem;
    letter-spacing: -.04em;
}

.auth-card-subtitle {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
}

.auth-messages {
    margin-bottom: 14px;
}

.auth-messages ul {
    margin: 0;
    padding-left: 18px;
}

.form-stack .field {
    padding: 16px 18px;
    border-radius: 18px;
    background: #fbfefd;
    border: 1px solid var(--line);
    text-align: left;
    min-height: auto;
}

.form-stack .field label {
    display: block;
    margin-bottom: 6px;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #7a8ca3;
    font-weight: 700;
}

.form-stack .field input,
.form-stack .field select,
.form-stack .field textarea {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
}

.form-stack .field input::placeholder,
.form-stack .field textarea::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.page-auth .btn-full {
    margin-bottom: 0;
}

.page-auth .card {
    border-radius: 28px;
}

.hero-visual-single {
    display: block;
}

/* =========================================================
   TELA: SOLICITAÇÃO DE ORÇAMENTO
   ========================================================= */

.orcamento-page {
    padding: 18px 0 42px;
}

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

.orcamento-intro {
    padding: 24px;
    border-radius: 26px;
}

.orcamento-intro h1 {
    margin: 14px 0 10px;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -.05em;
    max-width: 18ch;
}

.orcamento-intro p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    max-width: 70ch;
}

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

.field-full {
    grid-column: 1 / -1;
}

.field small {
    display: block;
    margin-top: 6px;
    color: #64748b;
    line-height: 1.55;
    font-size: .88rem;
}

.required-mark {
    color: #b42318;
    margin-left: 4px;
    font-weight: 700;
}

.help-box {
    padding: 16px 18px;
    border-radius: 18px;
    background: #f8fcfa;
    border: 1px solid var(--line);
    color: #486079;
    line-height: 1.7;
    font-size: .95rem;
}

.actions-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 4px;
}

.btn-full-mobile {
    min-width: 220px;
}

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

.table-section-top h2 {
    margin: 0 0 6px;
}

.table-section-top p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.data-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: #fff;
}

.data-table th,
.data-table td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
}

.data-table th {
    background: #f8fcfa;
    color: #1e293b;
    font-size: .9rem;
    font-weight: 800;
    white-space: nowrap;
}

.data-table td {
    color: #334155;
    line-height: 1.6;
    font-size: .94rem;
}

.data-table tr:hover td {
    background: #fbfefd;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #edf9f0;
    border: 1px solid #ccefd7;
    color: #18824c;
    font-size: .84rem;
    font-weight: 700;
}

.table-empty {
    padding: 18px;
    border-radius: 18px;
    background: #f8fcfa;
    border: 1px dashed #cbd5e1;
    color: #64748b;
    line-height: 1.7;
}

.orcamento-page .messages {
    margin: 0 0 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff7ed;
    border: 1px solid #fdba74;
    color: #9a3412;
}

.orcamento-page .messages ul {
    margin: 0;
    padding-left: 18px;
}

.orcamento-page .field {
    padding: 16px 18px;
    border-radius: 18px;
    background: #fbfefd;
    border: 1px solid var(--line);
    text-align: left;
    min-height: auto;
}

.orcamento-page .field label {
    display: block;
    margin-bottom: 6px;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
}

.orcamento-page .field input,
.orcamento-page .field select,
.orcamento-page .field textarea,
.orcamento-page .input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
}

.orcamento-page .field input::placeholder,
.orcamento-page .field textarea::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.orcamento-page .field select {
    padding-right: 28px;
    background-image:
        linear-gradient(45deg, transparent 50%, #0f172a 50%),
        linear-gradient(135deg, #0f172a 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.orcamento-page .field input:focus,
.orcamento-page .field select:focus,
.orcamento-page .field textarea:focus {
    outline: none;
}

.orcamento-page .field:focus-within {
    border-color: #9adcb0;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.10);
    background: #ffffff;
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 1120px) {
    .hero-grid,
    .layout,
    .bottom-nav,
    .reviews,
    .gallery {
        grid-template-columns: 1fr;
    }

    aside {
        position: static;
    }
}

@media (max-width: 1080px) {
    .categories,
    .stats,
    .listings,
    .cta-band {
        grid-template-columns: 1fr 1fr;
    }

    .cta-band {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .search-grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .field-termo {
        grid-column: 1 / -1;
    }

    .field-cidade,
    .field-bairro {
        grid-column: auto;
    }

    .field-botao {
        grid-column: 1 / -1;
        min-height: auto;
    }

    .field-botao .btn-search {
        min-height: 60px;
    }
}

@media (max-width: 960px) {
    .auth-grid {
        grid-template-columns: 1fr;
    }

    .auth-copy,
    .auth-card {
        padding: 22px;
    }

    .auth-title {
        max-width: none;
    }
}

@media (max-width: 860px) {
    .services-grid,
    .reviews,
    .mini-grid,
    .info-grid,
    .login-hero .hero-grid {
        grid-template-columns: 1fr;
    }

    .nav-shell {
        padding: 14px 0;
        flex-wrap: wrap;
    }

    .nav-actions {
        width: 100%;
    }

    .nav-actions .btn {
        flex: 1;
    }
}

@media (max-width: 840px) {
    .nav-links {
        display: none;
    }

    .categories,
    .stats,
    .listings {
        grid-template-columns: 1fr;
    }

    .search-shell {
        padding: 14px;
        border-radius: 24px;
    }

    .hero-wrap h1 {
        max-width: 9ch;
    }

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

    .actions-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-full-mobile {
        width: 100%;
        min-width: auto;
    }

    .data-table {
        min-width: 640px;
    }
}

@media (max-width: 640px) {
    .search-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .field-termo,
    .field-cidade,
    .field-bairro,
    .field-botao {
        grid-column: auto;
    }

    .field {
        min-height: 78px;
        padding: 12px 16px;
    }

    .field-botao .btn-search {
        min-height: 58px;
    }

    .auth-shell {
        padding: 18px 0 34px;
    }

    .auth-copy,
    .auth-card {
        padding: 18px;
        border-radius: 22px;
    }

    .auth-title {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }

    .auth-benefit {
        padding: 16px;
        border-radius: 18px;
    }

    .orcamento-page {
        padding: 14px 0 30px;
    }

    .orcamento-intro,
    .section-card {
        padding: 18px;
    }

    .orcamento-intro {
        border-radius: 22px;
    }

    .table-wrap {
        border-radius: 16px;
    }

    .data-table th,
    .data-table td {
        padding: 12px 14px;
    }
}
.search-grid-duas-linhas {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 1fr) 150px;
    gap: 12px;
    align-items: stretch;
    width: 100%;
}

.search-grid-duas-linhas .messages {
    grid-column: 1 / -1;
}

.search-grid-duas-linhas .field-termo {
    grid-column: 1 / -1;
}

.search-grid-duas-linhas .field-cidade {
    grid-column: 1 / 2;
}

.search-grid-duas-linhas .field-bairro {
    grid-column: 2 / 3;
}

.search-grid-duas-linhas .field-botao {
    grid-column: 3 / 4;
    min-height: 70px;
    padding: 0;
    border: 0;
    background: transparent;
    display: flex;
    align-items: stretch;
}

.search-grid-duas-linhas .field-botao .btn-search {
    width: 100%;
    min-height: 70px;
    height: 100%;
    border-radius: 22px;
    font-size: 1rem;
    font-weight: 800;
}

.btn-search-green {
    color: #ffffff !important;
    background: linear-gradient(135deg, #4ade80, #22c55e) !important;
    box-shadow: 0 16px 32px rgba(34, 197, 94, .28) !important;
}

.btn-search-green:hover {
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
}

.fake-label {
    display: block;
    height: 18px;
    margin-bottom: 8px;
    visibility: hidden;
}

@media (max-width: 860px) {
    .search-grid-duas-linhas {
        grid-template-columns: 1fr 1fr;
    }

    .search-grid-duas-linhas .field-termo {
        grid-column: 1 / -1;
    }

    .search-grid-duas-linhas .field-cidade {
        grid-column: 1 / 2;
    }

    .search-grid-duas-linhas .field-bairro {
        grid-column: 2 / 3;
    }

    .search-grid-duas-linhas .field-botao {
        grid-column: 1 / -1;
    }

    .search-grid-duas-linhas .field-botao .btn-search {
        min-height: 60px;
    }
}

@media (max-width: 640px) {
    .search-grid-duas-linhas {
        grid-template-columns: 1fr;
    }

    .search-grid-duas-linhas .field-termo,
    .search-grid-duas-linhas .field-cidade,
    .search-grid-duas-linhas .field-bairro,
    .search-grid-duas-linhas .field-botao {
        grid-column: auto;
    }

    .search-grid-duas-linhas .field-botao .btn-search {
        min-height: 58px;
    }
}
@media (max-width: 920px) {
    .brand-logo {
        height: 36px;
        max-width: 190px;
    }

    .footer-logo {
        height: 34px;
    }

    .hero-brand-logo {
        width: min(100%, 320px);
    }
}

@media (max-width: 640px) {
    .brand-logo {
        height: 30px;
        max-width: 160px;
    }

    .nav-shell {
        align-items: flex-start;
    }

    .hero-brand-lockup {
        margin-bottom: 18px;
    }

    .hero-brand-logo {
        width: min(100%, 260px);
    }
}
.search-suggest-wrap {
    position: relative;
}

.search-input-shell {
    position: relative;
}

.search-input-animated {
    position: relative;
    z-index: 2;
    background: transparent;
}

.fake-placeholder {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #8a8f98;
    pointer-events: none;
    z-index: 1;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 28px);
}

.search-input-shell.has-value .fake-placeholder,
.search-input-shell.is-focused .fake-placeholder {
    display: none;
}

.cursor-blink {
    display: inline-block;
    animation: blinkCursor 0.8s infinite;
    font-weight: 600;
}

@keyframes blinkCursor {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.search-suggestions-box {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
    padding: 14px;
    z-index: 30;
}

.suggestions-header {
    font-size: 0.86rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.suggestions-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.suggestion-chip {
    border: 0;
    background: #f1f5f9;
    color: #0f172a;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.suggestion-chip:hover {
    background: #0f172a;
    color: #ffffff;
    transform: translateY(-1px);
}

.hidden-trigger {
    display: none;
}

@media (max-width: 768px) {
    .search-suggestions-box {
        padding: 12px;
        border-radius: 14px;
    }

    .suggestion-chip {
        font-size: 0.88rem;
        padding: 9px 12px;
    }
}