:root{
  --bg:#f3ecdf;
  --surface:#ffffff;
  --surface-soft:#f7ecda;
  --text:#173328;
  --muted:#5d6f66;
  --border:#d8c8b1;
  --shadow:0 12px 30px rgba(23,51,40,0.12);
  --shadow-soft:0 6px 20px rgba(23,51,40,0.09);
  --accent:#c39a56;
  --accent-dark:#9d7637;
  --success:#25d366;
  --radius-lg:24px;
  --radius-md:16px;
  --radius-sm:12px;
  --shell:min(1180px, calc(100% - 48px));
  --brand-deep:#0f3b2e;
  --brand-deep-soft:#1b4e3d;
  --brand-cream:#f7efdf;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:
    radial-gradient(circle at top left, rgba(195, 154, 86, 0.22), transparent 28%),
    linear-gradient(180deg, #f6efe0 0%, #f1e9d9 18%, #ece2d1 100%);
  color:var(--text);
  font-family:"Circular Std","Avenir Next","Nunito Sans","Segoe UI",sans-serif;
  line-height:1.5;
}

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

a{
  color:inherit;
}

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

.site-header,
.page-shell,
.detail-shell,
.auth-shell,
.panel-shell{
  width:var(--shell);
  margin:0 auto;
}

.site-header{
  padding:32px 0 18px;
}

.header-inner{
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(245,233,211,0.98) 100%);
  border:1px solid rgba(131,102,57,0.14);
  border-radius:36px;
  box-shadow:0 24px 60px rgba(15,59,46,0.14);
  padding:36px;
  display:grid;
  grid-template-columns:minmax(0, 1.35fr) minmax(320px, 420px);
  grid-template-areas:
    "account account"
    "brand hero";
  gap:28px;
  overflow:hidden;
  position:relative;
}

.header-inner::after{
  content:"";
  position:absolute;
  top:-120px;
  right:-90px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(195,154,86,0.30) 0%, rgba(195,154,86,0) 72%);
  pointer-events:none;
}

.brand-block h1,
.section-head h2,
.info-perfil h2,
.auth-card h1,
.panel-card h1,
#titulo{
  margin:0;
  font-size:clamp(2rem, 4vw, 3.5rem);
  line-height:1.02;
  letter-spacing:-0.04em;
  font-weight:700;
}

.brand-block p,
.section-head p,
.info-perfil p,
.auth-card p,
.panel-card p,
.detail-description{
  margin:0;
  color:var(--muted);
  font-size:1rem;
}

.brand-block{
  display:grid;
  gap:10px;
  grid-area:brand;
}

.brand-kicker,
.section-kicker,
.search-label{
  display:inline-block;
  font-size:0.82rem;
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--brand-deep-soft);
  margin-bottom:10px;
}

.hero-panel{
  display:grid;
  align-content:start;
  grid-area:hero;
}

.search-shell{
  background:rgba(255,255,255,0.82);
  border:1px solid rgba(157,118,55,0.16);
  border-radius:26px;
  padding:22px;
  box-shadow:0 14px 34px rgba(15,59,46,0.10);
}

.header-account-shell{
  grid-area:account;
  display:flex;
  justify-content:flex-end;
}

.header-account-card{
  width:min(100%, 360px);
  display:grid;
  gap:12px;
  padding:18px 20px;
  border-radius:24px;
  background:rgba(255,255,255,0.84);
  border:1px solid rgba(131,102,57,0.1);
  box-shadow:var(--shadow-soft);
}

.header-account-card p{
  margin:0;
  color:var(--muted);
  font-size:0.95rem;
}

.header-auth-actions{
  display:grid;
  gap:10px;
}

.header-account-button{
  width:100%;
}

input{
  width:100%;
  border:1px solid var(--border);
  background:#fff;
  border-radius:999px;
  padding:15px 18px;
  color:var(--text);
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

input:focus{
  border-color:rgba(195,154,86,0.7);
  box-shadow:0 0 0 4px rgba(195,154,86,0.18);
}

.page-shell{
  padding:10px 0 48px;
}

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

.home-content{
  min-width:0;
}

.sidebar{
  position:sticky;
  top:24px;
  display:grid;
  gap:18px;
}

.sidebar-card{
  background:var(--surface);
  border:1px solid rgba(131,102,57,0.08);
  border-radius:28px;
  box-shadow:var(--shadow-soft);
  padding:22px;
}

.sidebar-head h2,
.footer-brand h2{
  margin:0;
  font-size:1.55rem;
  line-height:1.1;
  letter-spacing:-0.03em;
}

.sidebar-head{
  margin-bottom:16px;
}

.sidebar-card p{
  margin:0;
  color:var(--muted);
}

.filter-stack,
.auth-actions{
  display:grid;
  gap:14px;
}

.field-stack{
  display:grid;
  gap:8px;
}

.field-stack label{
  font-size:0.92rem;
  font-weight:700;
  color:var(--text);
}

select{
  width:100%;
  border:1px solid var(--border);
  background:#fff;
  border-radius:18px;
  padding:14px 16px;
  color:var(--text);
  outline:none;
}

.ghost-button{
  min-height:46px;
  border:1px solid var(--border);
  border-radius:999px;
  background:#fff;
  color:var(--text);
  font-weight:700;
  cursor:pointer;
}

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

.favorite-item{
  display:grid;
  gap:4px;
  padding:14px 16px;
  border-radius:18px;
  background:var(--surface-soft);
  text-decoration:none;
}

.favorite-item span{
  color:var(--muted);
  font-size:0.94rem;
}

.favorites-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:18px;
}

.account-favorites{
  margin-top:30px;
  padding-top:26px;
  border-top:1px solid rgba(0,0,0,0.06);
}

.account-favorites-head{
  margin-bottom:22px;
}

.favorite-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}

.favorite-card-image{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}

.favorite-card-body{
  display:grid;
  gap:8px;
  padding:18px;
}

.favorite-card-body h3{
  margin:0;
  font-size:1.1rem;
  letter-spacing:-0.02em;
}

.favorite-card-body p{
  margin:0;
  color:var(--muted);
}

.favorite-card-price{
  color:var(--text) !important;
  font-weight:700;
}

.empty-state{
  color:var(--muted);
}

.listing-section,
.launch-section,
.sobre,
.map-section,
.panel-card,
.auth-card{
  background:var(--surface);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:32px;
  box-shadow:var(--shadow-soft);
}

.listing-section,
.launch-section,
.sobre,
.map-section{
  padding:30px;
}

.launch-section{
  margin-bottom:24px;
  background:
    radial-gradient(circle at top right, rgba(195,154,86,0.24), transparent 34%),
    linear-gradient(180deg, #f4e6cb 0%, #ffffff 100%);
}

.launch-intro{
  display:grid;
  gap:10px;
  margin-bottom:24px;
}

.launch-intro h2{
  margin:0;
  font-size:clamp(2rem, 3vw, 3rem);
  letter-spacing:-0.04em;
}

.launch-intro p{
  margin:0;
  color:var(--muted);
}

.launch-carousel{
  min-height:420px;
}

.launch-video-expand{
  min-height:38px;
  padding:0 14px;
  border:1px solid rgba(255,255,255,0.28);
  border-radius:999px;
  background:rgba(255,255,255,0.14);
  color:#fff;
  font-weight:700;
  cursor:pointer;
  backdrop-filter:blur(10px);
}

.launch-card{
  display:grid;
  grid-template-columns:minmax(320px, 1.1fr) minmax(0, 1fr);
  gap:24px;
  align-items:stretch;
}

.launch-visual{
  position:relative;
  min-height:420px;
}

.launch-main-image,
.launch-main-video{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  border-radius:28px;
  box-shadow:0 24px 50px rgba(36,47,39,0.18);
}

.launch-video-overlay{
  position:absolute;
  top:18px;
  left:18px;
  right:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  z-index:2;
}

.launch-video-badge{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(34,34,34,0.72);
  color:#fff;
  font-size:0.9rem;
  font-weight:700;
}

.launch-image-counter{
  position:absolute;
  top:18px;
  left:18px;
  min-height:34px;
  display:inline-flex;
  align-items:center;
  padding:0 14px;
  border-radius:999px;
  background:rgba(34,34,34,0.72);
  color:#fff;
  font-size:0.9rem;
  font-weight:700;
}

.launch-image-dots{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  display:flex;
  gap:8px;
  justify-content:center;
}

.launch-image-dot{
  width:9px;
  height:9px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,0.54);
  cursor:pointer;
}

.launch-image-dot.ativa{
  width:26px;
  border-radius:999px;
  background:#fff;
}

.launch-copy{
  display:grid;
  gap:18px;
  align-content:center;
}

.launch-label{
  display:inline-flex;
  width:max-content;
  min-height:34px;
  align-items:center;
  padding:0 14px;
  border-radius:999px;
  background:rgba(195,154,86,0.18);
  color:var(--brand-deep);
  font-size:0.9rem;
  font-weight:700;
}

.launch-copy h3{
  margin:0;
  font-size:clamp(1.8rem, 2.5vw, 2.8rem);
  line-height:1.03;
  letter-spacing:-0.04em;
}

.launch-copy p{
  margin:0;
  color:var(--muted);
}

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

.launch-meta-item{
  display:grid;
  gap:4px;
  padding:16px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.05);
}

.launch-meta-item strong{
  font-size:0.9rem;
}

.launch-meta-item span{
  color:var(--muted);
}

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

.launch-characteristic{
  display:grid;
  gap:4px;
  padding:16px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.05);
}

.launch-characteristic strong{
  font-size:0.9rem;
  color:var(--text);
}

.launch-characteristic span{
  font-size:1rem;
  color:var(--muted);
  font-weight:400;
  line-height:1.3;
}

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

.launch-ghost{
  background:#fff;
  text-decoration:none;
  padding:12px 18px;
  min-height:48px;
  white-space:normal;
  text-align:center;
  line-height:1.25;
}

.launch-dots{
  display:flex;
  gap:10px;
  justify-content:center;
  margin-top:20px;
}

.launch-dot{
  width:10px;
  height:10px;
  border:none;
  border-radius:50%;
  background:#d8d8d8;
  cursor:pointer;
}

.launch-dot.ativa{
  width:28px;
  border-radius:999px;
  background:var(--brand-deep);
  box-shadow:0 6px 16px rgba(15,59,46,0.24);
}

.launch-empty{
  min-height:260px;
  display:grid;
  place-items:center;
  text-align:center;
  border-radius:26px;
  background:#fff;
  padding:28px;
}

.launch-empty h3{
  margin:0 0 8px;
}

.launch-empty p{
  margin:0;
  color:var(--muted);
}

.listing-section{
  margin-bottom:24px;
}

.section-head{
  display:grid;
  gap:10px;
  margin-bottom:26px;
}

.section-head h2{
  font-size:clamp(1.8rem, 3vw, 2.6rem);
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:22px;
}

.card{
  background:var(--surface);
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(131,102,57,0.08);
  padding:0;
  transition:transform .22s ease, box-shadow .22s ease;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}

.card img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}

.card h3,
.card p,
.card a,
.card button{
  margin-left:18px;
  margin-right:18px;
}

.card h3{
  margin-top:16px;
  margin-bottom:8px;
  font-size:1.1rem;
  letter-spacing:-0.02em;
}

.card p{
  margin-top:0;
  margin-bottom:8px;
  color:var(--muted);
}

.card p:last-of-type{
  color:var(--text);
  font-weight:700;
  margin-bottom:16px;
}

.card a,
.card button,
.botao{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border:none;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
}

.card a,
.botao{
  background:var(--brand-deep);
  color:#fff;
  box-shadow:0 10px 22px rgba(15,59,46,0.24);
}

.card button{
  background:#fff;
  color:var(--text);
  border:1px solid var(--border);
  cursor:pointer;
  margin-bottom:18px;
}

.empty-results{
  grid-column:1 / -1;
  background:var(--surface-soft);
  border-radius:24px;
  padding:26px;
}

.empty-results h3,
.footer-column h3{
  margin:0 0 8px;
  letter-spacing:-0.02em;
}

.botao:hover,
.card a:hover{
  background:var(--brand-deep-soft);
}

.sobre-container{
  display:grid;
  grid-template-columns:minmax(240px, 320px) 1fr;
  gap:28px;
  align-items:center;
}

.foto-perfil{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
  border-radius:24px;
  box-shadow:var(--shadow);
}

.info-perfil{
  display:grid;
  gap:12px;
}

.professional-footer{
  padding:34px 30px;
}

.footer-top{
  display:grid;
  gap:28px;
}

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

.footer-column{
  padding:20px;
  border-radius:22px;
  background:linear-gradient(180deg, #fbf4e7 0%, #f7ecda 100%);
}

.footer-photo{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:var(--shadow-soft);
}

.footer-column p{
  margin:0 0 6px;
  color:var(--muted);
}

.detail-shell{
  padding:32px 0 48px;
}

.detail-hero{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(320px, 520px);
  gap:28px;
  align-items:start;
}

.detail-copy,
.detail-media,
.map-section{
  background:var(--surface);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:32px;
  box-shadow:var(--shadow-soft);
  padding:28px;
}

.detail-copy{
  display:grid;
  gap:18px;
}

.detail-price{
  margin:0;
  font-size:2rem;
  letter-spacing:-0.03em;
}

.detail-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
}

.detail-media img{
  width:100%;
  max-height:460px;
  border-radius:24px;
  object-fit:cover;
}

.viewer-frame{
  position:relative;
}

.viewer-topbar{
  position:absolute;
  top:16px;
  left:16px;
  right:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  z-index:3;
}

.viewer-counter,
.lightbox-counter{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(34,34,34,0.72);
  color:#fff;
  font-size:0.92rem;
  font-weight:700;
  backdrop-filter:blur(10px);
}

.viewer-expand{
  min-height:36px;
  padding:0 14px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,0.92);
  color:var(--text);
  font-weight:700;
  box-shadow:var(--shadow-soft);
  cursor:pointer;
}

#fotoPrincipal{
  width:100%;
  min-height:420px;
  cursor:zoom-in;
  box-shadow:var(--shadow-soft);
  opacity:0.72;
  transform:scale(0.985);
  transition:opacity .24s ease, transform .24s ease;
}

#fotoPrincipal.ativa,
.lightbox-image.ativa{
  opacity:1;
  transform:scale(1);
}

.viewer-nav,
.lightbox-nav,
.lightbox-close{
  border:none;
  cursor:pointer;
}

.viewer-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  background:rgba(255,255,255,0.92);
  color:var(--text);
  box-shadow:var(--shadow-soft);
  font-size:1.7rem;
  z-index:2;
}

.viewer-prev{
  left:16px;
}

.viewer-next{
  right:16px;
}

.miniaturas,
.galeria{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(92px,1fr));
  gap:10px;
  margin-top:14px;
}

.thumb-button,
.foto-card{
  border:none;
  padding:0;
  margin:0;
  background:transparent;
  cursor:pointer;
}

.thumb-button{
  border-radius:16px;
  overflow:hidden;
  border:2px solid transparent;
}

.thumb-button.ativa{
  border-color:var(--accent);
  box-shadow:0 8px 18px rgba(176,138,82,0.22);
}

.thumb,
.foto-imovel{
  width:100%;
  height:90px;
  object-fit:cover;
  border-radius:14px;
}

.foto-card .foto-imovel{
  height:120px;
}

.lightbox{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(34,34,34,0.92);
  z-index:1000;
  padding:24px;
}

.lightbox.aberto{
  display:flex;
}

.lightbox-image{
  width:min(92vw, 1200px);
  max-height:88vh;
  border-radius:20px;
  object-fit:contain;
  opacity:0.72;
  transform:scale(0.985);
  transition:opacity .24s ease, transform .24s ease;
}

.lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:54px;
  height:54px;
  border-radius:50%;
  background:rgba(255,255,255,0.9);
  color:var(--text);
  font-size:2rem;
}

.lightbox-counter{
  position:absolute;
  top:24px;
  left:24px;
}

.lightbox-prev{
  left:24px;
}

.lightbox-next{
  right:24px;
}

.lightbox-close{
  position:absolute;
  top:24px;
  right:24px;
  width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(255,255,255,0.92);
  color:var(--text);
  font-size:2rem;
  line-height:1;
}

.lightbox-open{
  overflow:hidden;
}

.pdf-open{
  overflow:hidden;
}

.pdf-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:1200;
}

.pdf-modal.aberto{
  display:block;
}

.pdf-backdrop{
  position:absolute;
  inset:0;
  background:rgba(15,31,25,0.74);
  backdrop-filter:blur(8px);
}

.pdf-dialog{
  position:relative;
  width:min(1180px, calc(100% - 32px));
  height:min(88vh, 860px);
  margin:4vh auto 0;
  display:grid;
  grid-template-rows:auto 1fr;
  background:#fff;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 30px 70px rgba(15,59,46,0.28);
}

.pdf-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 24px;
  border-bottom:1px solid rgba(131,102,57,0.12);
  background:linear-gradient(180deg, #fbf4e7 0%, #f7ecda 100%);
}

.pdf-header h2{
  margin:0;
  font-size:1.5rem;
  letter-spacing:-0.03em;
}

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

.pdf-link{
  text-decoration:none;
  padding:0 16px;
}

.pdf-close{
  width:48px;
  height:48px;
  border:none;
  border-radius:50%;
  background:var(--brand-deep);
  color:#fff;
  font-size:2rem;
  line-height:1;
  cursor:pointer;
}

.pdf-frame-shell{
  min-height:0;
  background:#efe7d8;
}

.pdf-frame{
  width:100%;
  height:100%;
  min-height:520px;
  border:none;
  border-radius:0;
  background:#fff;
}

.video-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:1250;
}

.video-modal.aberto{
  display:block;
}

.video-backdrop{
  position:absolute;
  inset:0;
  background:rgba(8,19,15,0.84);
  backdrop-filter:blur(10px);
}

.video-dialog{
  position:relative;
  width:min(1100px, calc(100% - 24px));
  margin:4vh auto 0;
  background:#0e2019;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 28px 70px rgba(0,0,0,0.34);
}

.video-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px;
  color:#fff;
}

.video-header h2{
  margin:0;
  font-size:1.2rem;
  letter-spacing:-0.02em;
}

.video-close{
  width:44px;
  height:44px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,0.14);
  color:#fff;
  font-size:2rem;
  line-height:1;
  cursor:pointer;
}

.video-player{
  display:block;
  width:100%;
  max-height:82vh;
  background:#000;
}

.map-section{
  margin-top:24px;
}

iframe{
  border:none;
  border-radius:24px;
  background:#f1f1f1;
}

.page-auth,
.page-panel{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:24px 0;
}

.auth-shell,
.panel-shell{
  width:min(520px, calc(100% - 32px));
}

.auth-card,
.panel-card{
  padding:32px;
}

.form-stack{
  display:grid;
  gap:14px;
  margin-top:22px;
}

.auth-card-wide{
  display:grid;
  gap:8px;
}

.auth-trust{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:8px;
}

.auth-trust-item{
  padding:16px;
  border-radius:18px;
  background:linear-gradient(180deg, #fbf4e7 0%, #f7ecda 100%);
  border:1px solid rgba(131,102,57,0.08);
}

.auth-trust-item strong{
  display:block;
  margin-bottom:6px;
}

.auth-trust-item span{
  color:var(--muted);
  font-size:0.94rem;
}

.auth-tabs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:10px;
}

.auth-tab{
  min-height:44px;
  border:1px solid var(--border);
  border-radius:999px;
  background:#fff;
  color:var(--text);
  font-weight:700;
  cursor:pointer;
}

.auth-tab.ativa{
  background:var(--brand-deep);
  color:#fff;
  border-color:var(--brand-deep);
}

.hidden-field{
  display:none;
}

.auth-inline-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.auth-check{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-size:0.94rem;
}

.auth-link-button{
  padding:0;
  border:none;
  background:transparent;
  color:var(--brand-deep);
  font-weight:700;
  cursor:pointer;
}

.forgot-box{
  margin-top:6px;
  padding:18px;
  border-radius:20px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.05);
  box-shadow:var(--shadow-soft);
}

.forgot-box strong{
  display:block;
  margin-bottom:6px;
}

.forgot-box p{
  margin:0 0 14px;
}

.auth-help-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.auth-help-link{
  text-decoration:none;
  padding:0 18px;
}

.form-feedback{
  min-height:24px;
  margin:0;
  font-size:0.95rem;
}

.form-feedback.erro{
  color:#b43c3c;
}

.form-feedback.sucesso{
  color:var(--brand-deep);
}

.account-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  width:max-content;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  background:#edf7f1;
  color:var(--brand-deep);
  border:1px solid rgba(37,211,102,0.24);
  margin-top:6px;
}

.account-badge-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#25d366;
}

.botao-full{
  width:100%;
  cursor:pointer;
}

.whatsapp{
  position:fixed;
  right:20px;
  bottom:20px;
  width:58px;
  height:58px;
  border-radius:50%;
  background:var(--success);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:1.2rem;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 14px 28px rgba(37,211,102,0.28);
}

@media (max-width: 860px){
  .home-layout,
  .header-inner,
  .launch-card,
  .detail-hero,
  .sobre-container{
    grid-template-columns:1fr;
  }

  .listing-section,
  .sobre,
  .map-section,
  .detail-copy,
  .detail-media,
  .header-inner,
  .auth-card,
  .panel-card{
    padding:22px;
    border-radius:24px;
  }

  .site-header,
  .page-shell,
  .detail-shell{
    width:min(100% - 24px, 1180px);
  }

  .header-inner{
    grid-template-areas:
      "account"
      "brand"
      "hero";
  }

  .header-account-shell{
    justify-content:stretch;
  }

  .header-account-card{
    width:100%;
  }

  .sidebar{
    position:static;
  }

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

  .auth-trust{
    grid-template-columns:1fr;
  }

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

  .launch-characteristics{
    grid-template-columns:1fr;
  }

  .launch-main-video{
    min-height:280px;
  }

  .launch-video-overlay{
    align-items:flex-start;
    flex-direction:column;
  }

  .launch-meta{
    grid-template-columns:1fr;
  }

  .pdf-dialog{
    width:min(100% - 20px, 1180px);
    height:min(92vh, 860px);
    margin:10px auto 0;
    border-radius:22px;
  }

  .pdf-header{
    padding:18px;
    align-items:flex-start;
    flex-direction:column;
  }

  .pdf-actions{
    width:100%;
    justify-content:space-between;
  }

  .video-dialog{
    width:min(100% - 16px, 1100px);
    margin:10px auto 0;
    border-radius:20px;
  }

  .launch-carousel,
  .launch-visual,
  .launch-main-image{
    min-height:280px;
  }

  .foto-perfil{
    min-height:280px;
  }

  #fotoPrincipal{
    min-height:280px;
  }

  .viewer-topbar{
    top:12px;
    left:12px;
    right:12px;
  }

  .viewer-expand{
    font-size:0.88rem;
    padding:0 12px;
  }

  .lightbox-nav{
    width:46px;
    height:46px;
  }

  .lightbox-prev{
    left:12px;
  }

  .lightbox-next{
    right:12px;
  }
}
