/* ─────────────────────────────────────────────────────────────────── */
/* segundachanceleilao.com.br — design tokens                           */
:root {
  --sdl-blue: #0066B3;
  --sdl-blue-d: #00518F;
  --sdl-blue-dd: #003E6E;
  --sdl-orange: #F7941E;
  --sdl-orange-d: #DE7E0E;
  --sdl-white: #FFFFFF;
  --sdl-gray-50: #F7F9FC;
  --sdl-gray-100: #E6EBF0;
  --sdl-gray-200: #D1D9E0;
  --sdl-gray-300: #C5CFD2;
  --sdl-gray-500: #7A8794;
  --sdl-text: #14202D;
  --sdl-muted: #6B7785;
  --sdl-border: #E6EBF0;
  --sdl-radius: 8px;
  --sdl-radius-lg: 14px;
  --sdl-shadow-sm: 0 1px 2px rgba(20, 32, 45, .06);
  --sdl-shadow: 0 4px 16px rgba(20, 32, 45, .08);
  --sdl-shadow-lg: 0 24px 60px rgba(0, 62, 110, .18);
  --sdl-serif: 'Playfair Display', Georgia, serif;
  --sdl-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
/* Rede de segurança: nenhum elemento pode alargar o viewport no mobile (senão
   overlays fixos, como o gate de qualificação, acompanham a largura e ficam cortados) */
html { overflow-x: clip; }
body {
  font-family: var(--sdl-sans);
  color: var(--sdl-text);
  background: var(--sdl-white);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--sdl-blue); cursor: pointer; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 15px; }

.sdl-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─────────────────────────────────────────────────────────────────── */
/* BUTTONS                                                              */
.sdl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: var(--sdl-radius);
  font-family: var(--sdl-sans); font-weight: 700; font-size: 13px; letter-spacing: 0.02em;
  border: 1px solid transparent; cursor: pointer; transition: all .16s ease;
  white-space: nowrap;
}
.sdl-btn-orange { background: var(--sdl-orange); color: white; }
.sdl-btn-orange:hover { background: var(--sdl-orange-d); }
.sdl-btn-blue { background: var(--sdl-blue); color: white; }
.sdl-btn-blue:hover { background: var(--sdl-blue-d); }
.sdl-btn-outline { background: white; color: var(--sdl-blue); border-color: var(--sdl-blue); }
.sdl-btn-outline:hover { background: var(--sdl-blue); color: white; }
.sdl-btn-whatsapp { background: #25D366; color: white; }
.sdl-btn-whatsapp:hover { background: #128C7E; }
.sdl-btn-whatsapp-outline { background: white; color: #128C7E; border-color: #25D366; }
.sdl-btn-whatsapp-outline:hover { background: #25D366; color: white; border-color: #25D366; }

.sdl-btn-ghost { background: rgba(255,255,255,.12); color: white; border-color: rgba(255,255,255,.4); backdrop-filter: blur(8px); }
.sdl-btn-ghost:hover { background: rgba(255,255,255,.22); }
.sdl-btn-lg { padding: 14px 26px; font-size: 14px; }
.sdl-btn-block { width: 100%; }
.sdl-btn-search { padding: 14px 22px; height: 100%; }

.sdl-more-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.sdl-btn-more-featured {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--sdl-orange) 0%, var(--sdl-orange-d) 100%);
  color: white;
  text-decoration: none;
  font-family: var(--sdl-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(247, 148, 30, 0.22);
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}
.sdl-btn-more-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s;
  opacity: 0;
}
.sdl-btn-more-featured:hover {
  background: linear-gradient(135deg, var(--sdl-blue) 0%, var(--sdl-blue-d) 100%);
  box-shadow: 0 6px 20px rgba(0, 102, 179, 0.35);
  transform: translateY(-2px);
  color: white;
}
.sdl-btn-more-featured:hover::before {
  left: 125%;
  opacity: 1;
}
.sdl-btn-more-featured svg {
  transition: transform 0.25s ease;
}
.sdl-btn-more-featured:hover svg {
  transform: translateX(4px);
}
.sdl-btn-more-featured:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(0, 102, 179, 0.25);
}

/* ─────────────────────────────────────────────────────────────────── */
/* HEADER                                                               */
.sdl-header { position: sticky; top: 0; z-index: 50; background: white; box-shadow: 0 1px 0 var(--sdl-border); }
.sdl-header-inner { display: flex; align-items: center; gap: 32px; height: 72px; }
.sdl-nav { display: flex; gap: 28px; flex: 1; }
.sdl-nav a {
  font-size: 14px; font-weight: 500; color: var(--sdl-text); text-decoration: none;
  padding: 6px 0; position: relative; transition: color .12s ease;
}
.sdl-nav a:hover { color: var(--sdl-blue); }
.sdl-nav a.active { color: var(--sdl-blue); }
.sdl-nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -28px;
  height: 3px; background: var(--sdl-orange); border-radius: 2px 2px 0 0;
}
.sdl-credential-bar {
  background: var(--sdl-blue-dd); color: white; font-size: 12.5px;
  padding: 10px 0; font-weight: 500; letter-spacing: 0.01em;
}

/* ─────────────────────────────────────────────────────────────────── */
/* HERO + ROTATING BANNER                                               */
.sdl-hero {
  background: linear-gradient(180deg, #F7F9FC 0%, #E6EBF0 60%, white 100%);
  padding: 56px 0 100px; position: relative; overflow: hidden;
}
.sdl-hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,102,179,.06) 0, transparent 60%);
  pointer-events: none;
}

/* Banner slides container */
.sdl-banner { position: relative; min-height: 540px; }
.sdl-banner-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .6s ease, transform .6s ease;
  transform: translateY(8px);
}
.sdl-banner-slide.is-active {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
  position: relative;
}
.sdl-banner-slide h1 em { font-style: italic; color: var(--sdl-blue); }

/* Banner arrows */
.sdl-banner-arrow {
  position: absolute; top: 38%; transform: translateY(-50%); z-index: 4;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--sdl-border);
  background: white; cursor: pointer; display: grid; place-items: center;
  color: var(--sdl-blue); transition: all .15s; box-shadow: var(--sdl-shadow-sm);
}
.sdl-banner-arrow:hover { background: var(--sdl-blue); color: white; border-color: var(--sdl-blue); }
.sdl-banner-prev { left: 12px; }
.sdl-banner-next { right: 12px; }

/* Banner dots / progress */
.sdl-banner-dots {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: -10px;
  display: flex; gap: 10px; z-index: 4;
}
.sdl-banner-dot {
  border: none; background: none; padding: 6px 0; cursor: pointer;
  width: 56px;
}
.sdl-banner-dot-bar {
  display: block; height: 3px; border-radius: 2px;
  background: rgba(0, 62, 110, .15); overflow: hidden; position: relative;
}
.sdl-banner-dot.is-active .sdl-banner-dot-bar { background: rgba(0, 62, 110, .2); }
.sdl-banner-dot-bar span {
  position: absolute; inset: 0; background: var(--sdl-orange);
  width: 0;
}
.sdl-banner-dot.is-active .sdl-banner-dot-bar span.fill {
  animation: sdlBannerFill 6.5s linear forwards;
}
@keyframes sdlBannerFill {
  from { width: 0; } to { width: 100%; }
}

.sdl-hero-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.sdl-eyebrow {
  display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.15em;
  color: var(--sdl-blue); padding: 6px 12px; background: rgba(0,102,179,.08);
  border-radius: 100px; margin-bottom: 24px;
}
.sdl-eyebrow-orange { color: var(--sdl-orange); background: rgba(247,148,30,.10); }

.sdl-hero h1, .sdl-hero .sdl-banner-title {
  font-family: var(--sdl-serif); font-weight: 700; font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.05; letter-spacing: -0.015em; margin: 0 0 22px;
  color: var(--sdl-blue-dd); text-wrap: balance;
}
.sdl-h-accent { color: var(--sdl-blue); font-style: italic; }
.sdl-hero p { font-size: 17px; color: var(--sdl-muted); margin: 0 0 28px; max-width: 520px; text-wrap: pretty; }
.sdl-hero-cta { display: flex; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.sdl-hero-cta .sdl-btn-ghost { color: var(--sdl-blue); border-color: var(--sdl-blue); background: transparent; }
.sdl-hero-cta .sdl-btn-ghost:hover { background: var(--sdl-blue); color: white; }
.sdl-hero-stats { display: flex; gap: 36px; padding-top: 24px; border-top: 1px solid var(--sdl-border); }
.sdl-hero-stats > div { display: flex; flex-direction: column; }
.sdl-hero-stats strong {
  font-family: var(--sdl-serif); font-size: 28px; color: var(--sdl-blue); font-weight: 700;
}
.sdl-hero-stats span { font-size: 12.5px; color: var(--sdl-muted); }

.sdl-hero-art { position: relative; }
.sdl-hero-photo {
  position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 5/4;
  box-shadow: var(--sdl-shadow-lg); background: var(--sdl-gray-100);
}
.sdl-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.sdl-hero-photo-fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 62, 110, 0.25) 100%);
}
.sdl-hero-logo-frame {
  background: white;
  padding: 0;
  box-shadow: var(--sdl-shadow-lg);
}
.sdl-hero-logo-frame img { object-fit: cover !important; width: 100%; height: 100%; max-width: 100%; max-height: 100%; }
.sdl-hero-prop-info {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(0deg, rgba(0, 62, 110, .92), rgba(0, 62, 110, .4) 70%, transparent);
  color: white;
  display: flex; justify-content: space-between; align-items: end; gap: 12px;
}
.sdl-hero-prop-loc { display: block; font-size: 11.5px; opacity: .85; letter-spacing: 0.04em; text-transform: uppercase; }
.sdl-hero-prop-info > div strong { font-family: var(--sdl-serif); font-size: 22px; }
.sdl-hero-prop-price { text-align: right; }
.sdl-hero-prop-price span { display: block; font-size: 12px; opacity: .7; text-decoration: line-through; }
.sdl-hero-prop-price strong { font-family: var(--sdl-serif); font-size: 26px; color: var(--sdl-orange); display: block; line-height: 1.05; }

.sdl-hero-tag {
  position: absolute; bottom: -22px; left: -22px; z-index: 3;
  background: white; padding: 14px 18px; border-radius: 12px;
  box-shadow: var(--sdl-shadow); display: flex; align-items: center; gap: 12px;
}
.sdl-hero-tag > svg { color: var(--sdl-blue); width: 28px; height: 28px; }
.sdl-hero-tag strong { display: block; font-size: 13px; color: var(--sdl-text); }
.sdl-hero-tag span { font-size: 11.5px; color: var(--sdl-muted); }

/* SEARCH CARD overlapping hero */
.sdl-search-card {
  margin-top: 48px; background: white; border-radius: var(--sdl-radius-lg);
  box-shadow: var(--sdl-shadow); padding: 12px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr auto; gap: 4px;
  position: relative; z-index: 5;
  border: 1px solid var(--sdl-border);
}
.sdl-search-field { padding: 8px 14px; border-right: 1px solid var(--sdl-border); }
.sdl-search-field:last-of-type { border-right: none; }
.sdl-search-field label {
  display: block; font-size: 11.5px; font-weight: 600; color: var(--sdl-muted);
  letter-spacing: 0.02em; margin-bottom: 4px;
}
.sdl-search-field input, .sdl-search-field select {
  border: none; outline: none; width: 100%; font-size: 14px;
  color: var(--sdl-text); background: transparent; padding: 4px 0;
}
.sdl-search-field input::placeholder { color: var(--sdl-gray-500); }

/* ─────────────────────────────────────────────────────────────────── */
/* SECTIONS                                                             */
.sdl-section { padding: 72px 0; }
.sdl-section-light { background: var(--sdl-gray-50); }
.sdl-section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 32px; gap: 24px; flex-wrap: wrap; }
.sdl-section-head-center { justify-content: center; text-align: center; }
.sdl-section-head h2 {
  font-family: var(--sdl-serif); font-weight: 700; font-size: 36px;
  margin: 0 0 6px; color: var(--sdl-blue-dd); letter-spacing: -0.01em;
}
.sdl-section-head p { color: var(--sdl-muted); margin: 0; font-size: 15px; }
.sdl-link-cta {
  font-size: 13px; font-weight: 700; letter-spacing: 0.05em; color: var(--sdl-blue);
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
}
.sdl-link-cta:hover { color: var(--sdl-orange); }

/* ─────────────────────────────────────────────────────────────────── */
/* PROPERTY CARD                                                        */
.sdl-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sdl-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1100px) { .sdl-grid-4 { grid-template-columns: repeat(2, 1fr); } .sdl-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .sdl-grid-4, .sdl-grid-3 { grid-template-columns: 1fr; } }

.sdl-card {
  background: white; border-radius: var(--sdl-radius-lg); overflow: hidden;
  border: 1px solid var(--sdl-border); cursor: pointer; transition: all .2s ease;
  display: flex; flex-direction: column; position: relative;
}
.sdl-card:hover { transform: translateY(-3px); box-shadow: var(--sdl-shadow); border-color: var(--sdl-blue); }
.sdl-img { position: relative; overflow: hidden; }
.sdl-fav {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(20, 32, 45, .45); backdrop-filter: blur(6px);
  display: grid; place-items: center; cursor: pointer; color: white;
  transition: all .15s ease;
}
.sdl-fav:hover { background: rgba(20, 32, 45, .65); }
.sdl-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 6px 10px; border-radius: 4px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; color: white;
}
.sdl-badge-blue { background: var(--sdl-blue); }
.sdl-badge-orange { background: var(--sdl-orange); }
.sdl-badge-soft { background: var(--sdl-gray-100); color: var(--sdl-text); position: static; display: inline-flex; gap: 4px; align-items: center; }

.sdl-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.sdl-card-titlerow { display: flex; justify-content: space-between; align-items: start; gap: 8px; }
.sdl-card-body h3 {
  font-family: var(--sdl-sans); font-weight: 600; font-size: 16px;
  margin: 0; color: var(--sdl-text);
}
.sdl-discount {
  background: rgba(247, 148, 30, 0.12); color: var(--sdl-orange-d);
  font-size: 11.5px; font-weight: 700; padding: 3px 8px; border-radius: 4px;
}
.sdl-card-loc { font-size: 13px; color: var(--sdl-muted); margin: 2px 0 12px; }
.sdl-card-meta { display: flex; gap: 14px; padding-bottom: 12px; border-bottom: 1px dashed var(--sdl-border); }
.sdl-card-meta span {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12.5px; color: var(--sdl-muted);
}
.sdl-card-meta svg { width: 14px; height: 14px; color: var(--sdl-blue); }
.sdl-card-price { display: flex; flex-direction: column; padding: 12px 0; flex: 1; }
.sdl-card-old { font-size: 12px; color: var(--sdl-muted); text-decoration: line-through; }
.sdl-card-new {
  font-family: var(--sdl-serif); font-weight: 700; font-size: 24px; color: var(--sdl-blue);
  letter-spacing: -0.01em;
}
.sdl-card-cta {
  background: var(--sdl-blue); color: white; border: none;
  padding: 10px; border-radius: 6px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  cursor: pointer; transition: all .15s;
}
.sdl-card-cta:hover { background: var(--sdl-blue-d); }
.sdl-card:hover .sdl-card-cta { background: var(--sdl-orange); }

/* ─────────────────────────────────────────────────────────────────── */
/* FEATURES                                                             */
.sdl-feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .sdl-feat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .sdl-feat-grid { grid-template-columns: minmax(0, 1fr); } }
.sdl-feat { display: flex; gap: 14px; align-items: start; padding: 8px; }
.sdl-feat-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  background: white; border: 1px solid var(--sdl-border);
  display: grid; place-items: center; color: var(--sdl-blue);
}
.sdl-feat h4 { font-size: 15px; font-weight: 700; margin: 0 0 4px; color: var(--sdl-text); }
.sdl-feat p { font-size: 13.5px; color: var(--sdl-muted); margin: 0; }

/* STEPS */
.sdl-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 8px; }
@media (max-width: 900px) { .sdl-steps { grid-template-columns: repeat(2, 1fr); } }
.sdl-step { padding: 28px 24px; border-radius: var(--sdl-radius-lg); border: 1px solid var(--sdl-border); background: white; position: relative; }
.sdl-step-num {
  font-family: var(--sdl-serif); font-size: 36px; font-weight: 700;
  color: var(--sdl-orange); line-height: 1; display: block; margin-bottom: 8px;
}
.sdl-step h3 { font-size: 18px; margin: 0 0 6px; color: var(--sdl-blue-dd); font-family: var(--sdl-serif); font-weight: 700; }
.sdl-step p { color: var(--sdl-muted); margin: 0; font-size: 13.5px; }

/* CTA STRIP */
.sdl-cta-strip { background: var(--sdl-blue); color: white; padding: 48px 0; }
.sdl-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.sdl-cta-inner h3 { font-family: var(--sdl-serif); font-size: 28px; margin: 0 0 4px; }
.sdl-cta-inner p { margin: 0; opacity: .82; font-size: 14.5px; }
.sdl-newsletter { display: flex; gap: 8px; }
.sdl-newsletter input {
  background: white; border: none; border-radius: var(--sdl-radius);
  padding: 14px 18px; min-width: 280px; font-size: 14px;
}
@media (max-width: 640px) {
  .sdl-newsletter { flex-wrap: wrap; width: 100%; }
  .sdl-newsletter input { min-width: 0; flex: 1 1 100%; }
}

/* ─────────────────────────────────────────────────────────────────── */
/* FOOTER                                                               */
.sdl-footer { background: #0F1B26; color: rgba(255,255,255,.78); padding: 56px 0 0; }
.sdl-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
@media (max-width: 900px) { .sdl-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .sdl-footer-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; } }
.sdl-footer-grid > * { min-width: 0; overflow-wrap: anywhere; }
.sdl-footer h4 { color: white; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 16px; }
.sdl-footer a, .sdl-footer p {
  color: rgba(255,255,255,.7); text-decoration: none; font-size: 13.5px;
  display: flex; align-items: center; gap: 8px; padding: 4px 0; cursor: pointer; margin: 0;
}
.sdl-footer a:hover { color: var(--sdl-orange); }
.sdl-footer-tag { font-size: 13px; line-height: 1.6; margin: 18px 0 18px !important; max-width: 320px; padding: 0 !important; }
.sdl-trust-row { display: flex; flex-wrap: wrap; gap: 12px; }
.sdl-trust-row span { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,.6); }
.sdl-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: 12.5px; color: rgba(255,255,255,.5); }

/* ─────────────────────────────────────────────────────────────────── */
/* LISTAGEM                                                             */
.sdl-page-head {
  background: linear-gradient(180deg, var(--sdl-gray-50), white);
  padding: 36px 0 28px; border-bottom: 1px solid var(--sdl-border);
}
.sdl-breadcrumbs { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--sdl-muted); margin-bottom: 14px; }
.sdl-breadcrumbs a { color: var(--sdl-muted); text-decoration: none; cursor: pointer; }
.sdl-breadcrumbs a:hover { color: var(--sdl-blue); }
.sdl-page-head h1 {
  font-family: var(--sdl-serif); font-weight: 700; font-size: 38px; margin: 0; color: var(--sdl-blue-dd);
  letter-spacing: -0.01em;
}
.sdl-page-head > .sdl-container > p { color: var(--sdl-muted); margin: 6px 0 0; }

.sdl-listagem-grid { display: grid; grid-template-columns: 280px 1fr; gap: 32px; padding: 40px 24px 80px; }
@media (max-width: 1000px) { .sdl-listagem-grid { grid-template-columns: 1fr; } }

.sdl-filters {
  background: white; border: 1px solid var(--sdl-border); border-radius: var(--sdl-radius-lg);
  padding: 22px; height: fit-content; position: sticky; top: 96px;
}
.sdl-filters-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--sdl-border); }
.sdl-filters-head h3 { font-size: 14px; margin: 0; display: inline-flex; gap: 6px; align-items: center; color: var(--sdl-text); }
.sdl-link-mini { background: none; border: none; color: var(--sdl-blue); font-size: 12px; cursor: pointer; padding: 0; font-weight: 600; }
.sdl-link-mini:hover { color: var(--sdl-orange); }
.sdl-filter-block { margin-bottom: 18px; }
.sdl-filter-block label {
  display: block; font-size: 12px; font-weight: 600; color: var(--sdl-muted);
  margin-bottom: 6px; letter-spacing: 0.02em;
}
.sdl-filter-block select, .sdl-filter-block input[type="text"] {
  width: 100%; padding: 9px 12px; border: 1px solid var(--sdl-border);
  border-radius: 6px; font-size: 13.5px; color: var(--sdl-text); background: white;
}
.sdl-filter-block input[type="range"] { width: 100%; accent-color: var(--sdl-blue); }
.sdl-input-wrap { position: relative; }
.sdl-input-wrap svg { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--sdl-gray-500); }
.sdl-input-wrap input { padding-left: 32px !important; }
.sdl-range-ends { display: flex; justify-content: space-between; font-size: 11px; color: var(--sdl-muted); margin-top: 2px; }
.sdl-pill-row { display: flex; flex-wrap: wrap; gap: 6px; }
.sdl-pill {
  padding: 6px 11px; border-radius: 100px; font-size: 12px; font-weight: 600;
  border: 1px solid var(--sdl-border); background: white; cursor: pointer; color: var(--sdl-muted);
}
.sdl-pill.is-active { background: var(--sdl-blue); color: white; border-color: var(--sdl-blue); }
.sdl-pill-sq { min-width: 38px; padding: 6px 10px; }
.sdl-check { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.sdl-check input { accent-color: var(--sdl-blue); width: 16px; height: 16px; }
.sdl-check span { font-size: 13.5px; color: var(--sdl-text); font-weight: 500; }

.sdl-results-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 0 18px; margin-bottom: 18px; border-bottom: 1px solid var(--sdl-border);
  font-size: 13.5px; color: var(--sdl-muted);
}
.sdl-order { display: flex; align-items: center; gap: 8px; }
.sdl-order select { border: 1px solid var(--sdl-border); border-radius: 6px; padding: 6px 10px; font-size: 13px; }
.sdl-empty {
  text-align: center; padding: 80px 20px; border: 1px dashed var(--sdl-border);
  border-radius: var(--sdl-radius-lg); color: var(--sdl-muted);
}
.sdl-empty svg { width: 32px; height: 32px; margin-bottom: 12px; color: var(--sdl-gray-300); }
.sdl-empty h3 { color: var(--sdl-text); margin: 0 0 4px; }
.sdl-empty p { margin: 0; font-size: 14px; }

/* ─────────────────────────────────────────────────────────────────── */
/* DETALHE                                                              */
.sdl-detalhe { padding: 24px 0 60px; }
.sdl-detalhe > .sdl-container > .sdl-breadcrumbs { margin-bottom: 12px; }
.sdl-detalhe-titlebar { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.sdl-d-badges { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.sdl-d-badges .sdl-badge { position: static; }
.sdl-detalhe-titlebar h1 {
  font-family: var(--sdl-serif); font-weight: 700; font-size: 38px;
  margin: 0; color: var(--sdl-blue-dd); letter-spacing: -0.01em;
}
.sdl-d-loc { display: flex; align-items: center; gap: 6px; color: var(--sdl-muted); margin: 8px 0 0; font-size: 14px; }
.sdl-d-actions { display: flex; gap: 8px; }
.sdl-icon-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border: 1px solid var(--sdl-border); background: white;
  border-radius: var(--sdl-radius); cursor: pointer; font-size: 13px; font-weight: 600;
  color: var(--sdl-text);
}
.sdl-icon-btn:hover { border-color: var(--sdl-blue); color: var(--sdl-blue); }

.sdl-detalhe-grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
@media (max-width: 1000px) { .sdl-detalhe-grid { grid-template-columns: minmax(0, 1fr); } }
.sdl-detalhe-grid > * { min-width: 0; }

/* GALLERY */
.sdl-gallery { position: relative; border-radius: var(--sdl-radius-lg); overflow: hidden; background: var(--sdl-gray-100); }
.sdl-gal-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.92); display: grid; place-items: center; cursor: pointer;
  box-shadow: var(--sdl-shadow); color: var(--sdl-blue); transition: all .15s;
}
.sdl-gal-arrow:hover { background: var(--sdl-blue); color: white; }
.sdl-gal-prev { left: 14px; }
.sdl-gal-next { right: 14px; }
.sdl-gal-count {
  position: absolute; bottom: 14px; right: 14px; background: rgba(20,32,45,.7);
  color: white; padding: 5px 10px; border-radius: 100px; font-size: 12px; font-weight: 600;
}
.sdl-gal-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 8px; }
.sdl-thumb { background: none; border: 2px solid transparent; border-radius: 8px; overflow: hidden; padding: 0; cursor: pointer; }
.sdl-thumb.is-active { border-color: var(--sdl-blue); }

/* SPECS */
.sdl-specs {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
  background: var(--sdl-gray-50); padding: 16px; border-radius: var(--sdl-radius-lg); margin: 28px 0;
}
@media (max-width: 720px) { .sdl-specs { grid-template-columns: repeat(3, 1fr); } }
.sdl-spec { display: flex; gap: 10px; align-items: center; }
.sdl-spec-icon {
  width: 36px; height: 36px; background: white; border-radius: 8px;
  display: grid; place-items: center; color: var(--sdl-blue); flex-shrink: 0;
}
.sdl-spec-label { display: block; font-size: 11.5px; color: var(--sdl-muted); }
.sdl-spec strong { font-size: 14px; color: var(--sdl-text); }

/* TABS */
.sdl-tabs {
  display: flex; gap: 4px; border-bottom: 1px solid var(--sdl-border);
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.sdl-tabs::-webkit-scrollbar { display: none; }
.sdl-tab {
  background: none; border: none; padding: 14px 18px; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--sdl-muted); position: relative;
  flex-shrink: 0; white-space: nowrap;
}
.sdl-tab:hover { color: var(--sdl-text); }
.sdl-tab.is-active { color: var(--sdl-blue); }
.sdl-tab.is-active::after {
  content: ''; position: absolute; left: 12px; right: 12px; bottom: 0; height: 3px;
  background: var(--sdl-orange); border-radius: 2px 2px 0 0;
}
.sdl-tab-panel { padding: 28px 0; }
.sdl-tab-panel h4 { font-size: 16px; margin: 24px 0 12px; color: var(--sdl-blue-dd); font-family: var(--sdl-serif); }
.sdl-feat-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
.sdl-feat-list li { display: flex; gap: 8px; align-items: start; font-size: 14px; color: var(--sdl-text); }
.sdl-feat-list svg { flex-shrink: 0; margin-top: 2px; color: var(--sdl-blue); }

.sdl-pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 12px 0; }
@media (max-width: 600px) { .sdl-pay-grid { grid-template-columns: 1fr; } }
.sdl-pay { display: flex; gap: 12px; padding: 14px; border-radius: 10px; border: 1px solid var(--sdl-border); align-items: center; }
.sdl-pay-icon { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.sdl-pay.is-ok .sdl-pay-icon { background: rgba(0,102,179,.12); color: var(--sdl-blue); }
.sdl-pay.is-no .sdl-pay-icon { background: var(--sdl-gray-100); color: var(--sdl-gray-500); }
.sdl-pay.is-no { opacity: .55; }
.sdl-pay strong { display: block; font-size: 14px; color: var(--sdl-text); }
.sdl-pay span { font-size: 12.5px; color: var(--sdl-muted); }

.sdl-callout {
  display: flex; gap: 14px; padding: 16px; border-radius: 10px;
  background: rgba(0,102,179,.06); border-left: 3px solid var(--sdl-blue);
  margin-top: 20px; align-items: flex-start;
}
.sdl-callout svg { color: var(--sdl-blue); flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; }
.sdl-callout strong { display: block; color: var(--sdl-text); font-size: 14px; }
.sdl-callout span { font-size: 13px; color: var(--sdl-muted); }
.sdl-callout-orange { background: rgba(247,148,30,.08); border-left-color: var(--sdl-orange); }
.sdl-callout-orange svg { color: var(--sdl-orange); }

.sdl-docs { display: flex; flex-direction: column; gap: 6px; }
.sdl-doc-item {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  border: 1px solid var(--sdl-border); border-radius: 8px;
}
.sdl-doc-item svg { color: var(--sdl-blue); }
.sdl-doc-item span { flex: 1; font-size: 14px; }

/* MAP */
.sdl-map {
  position: relative; height: 280px; border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, #E8EEF4, #D5DDE6); margin: 8px 0 16px;
}
.sdl-map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,102,179,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,102,179,.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.sdl-map-pin {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -100%);
  width: 44px; height: 44px; background: var(--sdl-orange); border-radius: 50% 50% 50% 0;
  transform-origin: bottom; transform: translate(-50%, -100%) rotate(-45deg);
  display: grid; place-items: center; box-shadow: 0 6px 14px rgba(0,0,0,.2);
}
.sdl-map-pin svg { transform: rotate(45deg); color: white; }
.sdl-map-cap {
  position: absolute; bottom: 14px; left: 14px; background: white;
  padding: 10px 14px; border-radius: 8px; font-size: 13px;
  box-shadow: var(--sdl-shadow-sm);
}
.sdl-muted { color: var(--sdl-muted); font-size: 13px; }

/* SIDEBAR */
.sdl-d-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 16px; }
.sdl-d-price {
  background: white; border: 1px solid var(--sdl-border); border-radius: var(--sdl-radius-lg);
  padding: 22px; box-shadow: var(--sdl-shadow-sm);
}
.sdl-d-aval { font-size: 12.5px; color: var(--sdl-muted); display: block; }
.sdl-d-aval strong { color: var(--sdl-text); text-decoration: line-through; font-weight: 500; margin-left: 4px; }
.sdl-d-priceline { display: flex; justify-content: space-between; align-items: center; margin: 12px 0 4px; }
.sdl-d-label { font-size: 13px; color: var(--sdl-muted); }
.sdl-d-discount {
  background: var(--sdl-orange); color: white; font-size: 12px; font-weight: 700;
  padding: 4px 8px; border-radius: 4px;
}
.sdl-d-pricebig {
  font-family: var(--sdl-serif); font-size: 36px; font-weight: 700;
  color: var(--sdl-blue); letter-spacing: -0.01em; line-height: 1;
}
.sdl-d-savings { font-size: 12.5px; color: var(--sdl-muted); margin: 8px 0 18px; }
.sdl-d-savings strong { color: var(--sdl-orange-d); }
.sdl-d-price .sdl-btn { margin-bottom: 8px; }
.sdl-d-encerra {
  display: flex; align-items: center; gap: 8px; margin-top: 14px;
  padding-top: 14px; border-top: 1px solid var(--sdl-border); font-size: 13px; color: var(--sdl-muted);
}
.sdl-d-encerra svg { color: var(--sdl-orange); }

.sdl-sim { background: white; border: 1px solid var(--sdl-border); border-radius: var(--sdl-radius-lg); padding: 22px; }
.sdl-sim h4 { font-family: var(--sdl-serif); margin: 0 0 14px; font-size: 18px; color: var(--sdl-blue-dd); }
.sdl-sim-field { margin-bottom: 14px; }
.sdl-sim-field label { display: flex; justify-content: space-between; font-size: 13px; color: var(--sdl-muted); margin-bottom: 4px; }
.sdl-sim-field label strong { color: var(--sdl-text); }
.sdl-sim-field input[type="range"] { width: 100%; accent-color: var(--sdl-blue); }
.sdl-sim-result {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--sdl-blue); color: white; padding: 14px 16px; border-radius: 8px; margin-top: 8px;
}
.sdl-sim-result span { font-size: 13px; opacity: .9; }
.sdl-sim-result strong { font-family: var(--sdl-serif); font-size: 20px; }
.sdl-sim-disclaimer { font-size: 11.5px; color: var(--sdl-muted); margin: 10px 0 0; }

.sdl-d-help { background: var(--sdl-gray-50); border-radius: var(--sdl-radius-lg); padding: 18px; }
.sdl-d-help h4 { margin: 0 0 10px; font-size: 14px; color: var(--sdl-text); }
.sdl-helprow {
  display: flex; align-items: center; gap: 8px; color: var(--sdl-blue);
  text-decoration: none; font-size: 13.5px; padding: 4px 0; cursor: pointer;
}

/* ─────────────────────────────────────────────────────────────────── */
/* MODAL                                                                */
.sdl-modal-bg {
  position: fixed; inset: 0; background: rgba(15, 27, 38, .55);
  display: grid; place-items: center; z-index: 200; padding: 20px;
  backdrop-filter: blur(4px);
}
.sdl-modal {
  background: white; border-radius: var(--sdl-radius-lg); max-width: 560px;
  width: 100%; max-height: 90vh; overflow: auto; position: relative;
  box-shadow: var(--sdl-shadow-lg);
}
.sdl-modal-close {
  position: absolute; top: 16px; right: 16px; background: none; border: none;
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; color: var(--sdl-muted);
}
.sdl-modal-close:hover { background: var(--sdl-gray-100); color: var(--sdl-text); }
.sdl-modal-head { padding: 28px 28px 20px; border-bottom: 1px solid var(--sdl-border); }
.sdl-modal-head h2 { font-family: var(--sdl-serif); margin: 8px 0 14px; font-size: 26px; color: var(--sdl-blue-dd); }
.sdl-steps-dot { display: flex; gap: 8px; }
.sdl-steps-dot span {
  width: 28px; height: 28px; border-radius: 50%; background: var(--sdl-gray-100);
  display: grid; place-items: center; font-size: 13px; font-weight: 700; color: var(--sdl-muted);
}
.sdl-steps-dot span.on { background: var(--sdl-orange); color: white; }
.sdl-modal-body { padding: 24px 28px; }
.sdl-modal-foot { padding: 16px 28px 24px; display: flex; justify-content: space-between; border-top: 1px solid var(--sdl-border); }
.sdl-form-block { margin-bottom: 14px; }
.sdl-form-block label { display: block; font-size: 12.5px; font-weight: 600; color: var(--sdl-text); margin-bottom: 6px; }
.sdl-form-block textarea, .sdl-form-block select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--sdl-border);
  border-radius: 6px; font-size: 14px; font-family: inherit; resize: vertical;
}
.sdl-input { display: flex; align-items: center; border: 1px solid var(--sdl-border); border-radius: 6px; overflow: hidden; }
.sdl-input:focus-within { border-color: var(--sdl-blue); }
.sdl-input input { flex: 1; border: none; padding: 10px 12px; outline: none; }
.sdl-input-prefix { padding: 0 10px 0 12px; color: var(--sdl-muted); font-weight: 600; font-size: 14px; }
.sdl-req { color: var(--sdl-orange); }
.sdl-form-row { margin-bottom: 14px; }
.sdl-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sdl-form-hint { font-size: 12.5px; color: var(--sdl-muted); margin: -4px 0 14px; }
.sdl-radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sdl-radio {
  display: flex; align-items: center; gap: 8px; padding: 10px 12px;
  border: 1px solid var(--sdl-border); border-radius: 6px; cursor: pointer;
  font-size: 13.5px;
}
.sdl-radio.is-active { border-color: var(--sdl-blue); background: rgba(0,102,179,.04); color: var(--sdl-blue); font-weight: 600; }
.sdl-radio input { accent-color: var(--sdl-blue); }

.sdl-modal-success { padding: 48px 32px; text-align: center; }
.sdl-success-circ {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(0,102,179,.1);
  color: var(--sdl-blue); display: grid; place-items: center; margin: 0 auto 18px;
}
.sdl-success-circ svg { width: 32px; height: 32px; }
.sdl-modal-success h2 { font-family: var(--sdl-serif); color: var(--sdl-blue-dd); margin: 0 0 8px; }
.sdl-modal-success p { color: var(--sdl-muted); margin: 0 0 20px; }

/* ─────────────────────────────────────────────────────────────────── */
/* COMO FUNCIONA + CONTATO                                              */
.sdl-static { padding-bottom: 0; }
.sdl-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 900px) { .sdl-two-col { grid-template-columns: 1fr; } }
.sdl-modalidade-card {
  background: white; border: 1px solid var(--sdl-border); border-radius: var(--sdl-radius-lg);
  padding: 32px;
}
.sdl-modalidade-card h2 { font-family: var(--sdl-serif); font-size: 28px; margin: 16px 0 12px; color: var(--sdl-blue-dd); }
.sdl-modalidade-card p { color: var(--sdl-muted); margin: 0 0 18px; }
.sdl-modalidade-card .sdl-feat-list { grid-template-columns: 1fr; }

.sdl-timeline { max-width: 720px; margin: 0 auto; }
.sdl-timeline-item {
  display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px dashed var(--sdl-border);
  align-items: flex-start;
}
.sdl-timeline-item:last-child { border-bottom: none; }
.sdl-timeline-num {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--sdl-blue); color: white; display: grid; place-items: center;
  font-family: var(--sdl-serif); font-size: 20px; font-weight: 700;
}
.sdl-timeline-item h4 { margin: 6px 0 4px; font-size: 17px; color: var(--sdl-text); font-family: var(--sdl-serif); font-weight: 700; }
.sdl-timeline-item p { margin: 0; color: var(--sdl-muted); font-size: 14px; }

.sdl-faq { max-width: 800px; margin: 0 auto; }
.sdl-faq-item { border-bottom: 1px solid var(--sdl-border); }
.sdl-faq-item button {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; background: none; border: none; cursor: pointer;
  font-size: 15.5px; font-weight: 600; color: var(--sdl-text); text-align: left;
  font-family: inherit;
}
.sdl-faq-item svg { transition: transform .2s; color: var(--sdl-blue); }
.sdl-faq-item.is-open svg { transform: rotate(180deg); }
.sdl-faq-item p { margin: 0 0 18px; color: var(--sdl-muted); font-size: 14.5px; max-width: 700px; }

/* CONTATO */
.sdl-contato-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; }
@media (max-width: 900px) { .sdl-contato-grid { grid-template-columns: 1fr; } }
.sdl-contato-grid h3 { font-family: var(--sdl-serif); font-size: 24px; color: var(--sdl-blue-dd); margin: 0 0 24px; }
.sdl-contato-channels { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.sdl-channel {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px;
  border: 1px solid var(--sdl-border); border-radius: var(--sdl-radius-lg);
}
.sdl-channel-icon {
  width: 44px; height: 44px; background: rgba(0,102,179,.08);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--sdl-blue); flex-shrink: 0;
}
.sdl-channel strong { display: block; font-size: 14px; color: var(--sdl-text); margin-bottom: 2px; }
.sdl-channel span { display: block; font-size: 14.5px; color: var(--sdl-blue); font-weight: 600; }
.sdl-channel small { display: block; font-size: 12.5px; color: var(--sdl-muted); margin-top: 4px; }

.sdl-trust-box {
  display: flex; gap: 14px; padding: 18px; align-items: flex-start;
  background: linear-gradient(135deg, rgba(0,102,179,.06), rgba(247,148,30,.05));
  border-radius: var(--sdl-radius-lg);
}
.sdl-trust-box svg { color: var(--sdl-blue); flex-shrink: 0; width: 24px; height: 24px; margin-top: 2px; }
.sdl-trust-box strong { display: block; font-size: 14px; }
.sdl-trust-box span { font-size: 13px; color: var(--sdl-muted); }

.sdl-contato-form {
  background: white; padding: 32px; border: 1px solid var(--sdl-border);
  border-radius: var(--sdl-radius-lg); box-shadow: var(--sdl-shadow-sm);
}
.sdl-contato-success { text-align: center; padding: 40px 20px; }
.sdl-contato-success h3 { margin: 0 0 8px; }
.sdl-contato-success p { color: var(--sdl-muted); }

/* ─────────────────────────────────────────────────────────────────── */
/* MOBILE TOGGLE + utilities (PHP build)                                */
.sdl-mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; border-radius: 8px; color: var(--sdl-blue);
  align-items: center; justify-content: center;
}
.sdl-mobile-toggle:hover { background: var(--sdl-gray-50); }
.sdl-gal-item[hidden], .sdl-tab-panel[hidden] { display: none; }

/* ─────────────────────────────────────────────────────────────────── */
/* RESPONSIVE TWEAKS                                                    */
@media (max-width: 980px) {
  .sdl-mobile-toggle { display: inline-flex; margin-left: auto; }
  .sdl-header-inner { gap: 16px; }
  .sdl-header-inner > .sdl-btn-orange { display: none; }
  .sdl-nav {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: white; flex-direction: column; gap: 0; padding: 8px 16px 16px;
    box-shadow: 0 8px 16px rgba(20,32,45,.08); border-top: 1px solid var(--sdl-border);
    z-index: 49;
  }
  .sdl-nav.is-open { display: flex; }
  .sdl-nav a { padding: 12px 0; border-bottom: 1px solid var(--sdl-border); }
  .sdl-nav a:last-child { border-bottom: none; }
  .sdl-nav a.active::after { display: none; }
  .sdl-hero-inner { grid-template-columns: 1fr; }
  .sdl-search-card { grid-template-columns: 1fr 1fr; }
  .sdl-search-field { border-right: none; border-bottom: 1px solid var(--sdl-border); }
  .sdl-search-card .sdl-btn-search { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .sdl-search-card { grid-template-columns: 1fr; }
  .sdl-hero h1 { font-size: 36px; }
  .sdl-hero-stats { gap: 18px; flex-wrap: wrap; }
  .sdl-section { padding: 48px 0; }
  .sdl-page-head h1, .sdl-detalhe-titlebar h1 { font-size: 26px; }
}

/* ─────────────────────────────────────────────────────────────────── */
/* PAGINATION                                                           */
.sdl-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--sdl-border);
}
.sdl-pag-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--sdl-border);
  border-radius: var(--sdl-radius);
  color: var(--sdl-text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
  box-shadow: var(--sdl-shadow-sm);
}
.sdl-pag-btn:hover {
  border-color: var(--sdl-blue);
  color: var(--sdl-blue);
  background: var(--sdl-gray-50);
}
.sdl-pag-pages {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sdl-pag-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--sdl-border);
  border-radius: var(--sdl-radius);
  color: var(--sdl-text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
  background: white;
}
.sdl-pag-link:hover {
  border-color: var(--sdl-blue);
  color: var(--sdl-blue);
  background: var(--sdl-gray-50);
}
.sdl-pag-link.is-active {
  background: var(--sdl-blue);
  border-color: var(--sdl-blue);
  color: white;
  box-shadow: 0 4px 10px rgba(0, 102, 179, 0.2);
}
.sdl-pag-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  color: var(--sdl-muted);
  font-weight: 600;
}

/* ─────────────────────────────────────────────────────────────────── */
/* DISABLED SELECT STATES (matte/opaque look)                            */
.sdl-search-field,
.sdl-filter-block,
.sdl-search-field select,
.sdl-filter-block select {
  transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

/* Homepage search fields disabled state (seamless opacity fade) */
.sdl-search-field.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.sdl-search-field:has(select:disabled) {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Sidebar filter blocks disabled state (opacity fade) */
.sdl-filter-block.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.sdl-filter-block:has(select:disabled) {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Cursor rules for child elements */
.sdl-search-field.is-disabled *,
.sdl-filter-block.is-disabled * {
  cursor: not-allowed !important;
}
.sdl-search-field:has(select:disabled) *,
.sdl-filter-block:has(select:disabled) * {
  cursor: not-allowed !important;
}

/* Custom styled dropdown disabled state (only for sidebar where select has a border) */
.sdl-filter-block select:disabled {
  background-color: var(--sdl-gray-50) !important;
  border-color: var(--sdl-gray-200) !important;
  color: var(--sdl-muted) !important;
}

/* ─────────────────────────────────────────────────────────────────── */
/* QUEM SOMOS (ABOUT US PAGE)                                          */
.sdl-page-head-dark {
  background: linear-gradient(135deg, #003E6E 0%, #0D1B2A 100%);
  padding: 48px 0 44px;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sdl-page-head-dark h1 {
  font-family: var(--sdl-serif);
  font-weight: 700;
  font-size: 38px;
  margin: 0;
  color: white;
  letter-spacing: -0.015em;
}
.sdl-page-head-dark .sdl-breadcrumbs {
  margin-bottom: 14px;
  color: rgba(255,255,255,0.6);
}
.sdl-page-head-dark .sdl-breadcrumbs a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.sdl-page-head-dark .sdl-breadcrumbs a:hover {
  color: white;
}

.sdl-about-intro {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: center;
}
.sdl-about-intro-text p {
  font-size: 16px;
  color: var(--sdl-text);
  line-height: 1.65;
  margin-bottom: 22px;
}
.sdl-about-intro-text p:last-child {
  margin-bottom: 0;
}

/* Elegant logo card */
.sdl-about-logo-card {
  background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid var(--sdl-border);
  border-radius: var(--sdl-radius-lg);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--sdl-shadow);
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.sdl-about-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(20, 32, 45, 0.08);
  border-color: var(--sdl-blue);
}
.sdl-about-logo-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
  box-shadow: var(--sdl-shadow-sm);
  margin-bottom: 24px;
  border: 4px solid var(--sdl-gray-50);
}
.sdl-about-logo {
  max-width: 96px;
  max-height: 96px;
  object-fit: contain;
}
.sdl-about-logo-info h3 {
  font-family: var(--sdl-serif);
  font-size: 22px;
  color: var(--sdl-blue-dd);
  margin: 0 0 4px;
  font-weight: 700;
}
.sdl-about-creci {
  display: inline-block;
  background: var(--sdl-orange);
  color: white;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 12px 0 16px;
  box-shadow: 0 4px 10px rgba(247, 148, 30, 0.25);
}
.sdl-about-sub {
  font-size: 13.5px;
  color: var(--sdl-muted);
  margin: 0;
  font-weight: 500;
}

/* Accent Grid Text Cards */
.sdl-about-grid-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}
.sdl-about-text-card {
  background: white;
  border-radius: var(--sdl-radius-lg);
  padding: 36px;
  box-shadow: var(--sdl-shadow-sm);
  border: 1px solid var(--sdl-border);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sdl-about-text-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sdl-shadow);
}
.sdl-about-card-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--sdl-blue);
}
.sdl-about-card-accent.accent-orange {
  background: var(--sdl-orange);
}
.sdl-about-text-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--sdl-text);
}

/* Elegant Highlight Callout */
.sdl-about-highlight-box {
  background: linear-gradient(135deg, rgba(0, 102, 179, 0.02) 0%, rgba(247, 148, 30, 0.02) 100%);
  border-left: 4px solid var(--sdl-orange);
  border-radius: 0 var(--sdl-radius-lg) var(--sdl-radius-lg) 0;
  padding: 36px 44px;
  margin: 48px auto;
  max-width: 800px;
  box-shadow: var(--sdl-shadow-sm);
}
.sdl-about-highlight-box p {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--sdl-blue-dd);
  margin: 0;
  font-weight: 500;
}

/* Citation Section */
.sdl-about-quote-section {
  background: radial-gradient(circle at top right, var(--sdl-blue-d), var(--sdl-blue-dd));
  color: white;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.sdl-about-quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom left, rgba(247, 148, 30, 0.15), transparent 50%);
  pointer-events: none;
}
.sdl-about-quote-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sdl-quote-mark {
  font-size: 80px;
  font-family: var(--sdl-serif);
  color: var(--sdl-orange);
  line-height: 1;
  display: block;
  margin-bottom: -10px;
}
.sdl-about-blockquote {
  font-family: var(--sdl-serif);
  font-size: clamp(24px, 3.8vw, 32px);
  font-style: italic;
  line-height: 1.35;
  margin: 0 0 28px;
  color: var(--sdl-white);
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.sdl-about-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.sdl-about-cite {
  font-style: normal;
  font-weight: 700;
  color: var(--sdl-orange);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sdl-about-creci-footer {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

@media (max-width: 900px) {
  .sdl-about-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sdl-about-grid-text {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sdl-about-highlight-box {
    padding: 24px 30px;
  }
}

/* Custom premium tooltips for info trigger */
.sdl-info-trigger {
  position: relative;
  cursor: help;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.sdl-info-trigger::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(8px) scale(0.95);
  background: #14202D;
  color: #FFFFFF;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  width: 250px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(20, 32, 45, 0.2);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1), transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: normal;
  text-transform: none;
  font-family: var(--sdl-sans), sans-serif;
}

.sdl-info-trigger::before {
  content: '';
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: #14202D transparent transparent;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1), transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.sdl-info-trigger:hover::after,
.sdl-info-trigger:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Make sure mobile click or active trigger works too */
.sdl-info-trigger:active::after,
.sdl-info-trigger:active::before,
.sdl-info-trigger:focus::after,
.sdl-info-trigger:focus::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* No mobile o balão vira uma barra fixa no rodapé da tela: ancorado no ícone, os
   250px dele passavam da borda direita e alargavam a página */
@media (max-width: 640px) {
  .sdl-info-trigger::before { display: none; }
  .sdl-info-trigger::after {
    position: fixed; left: 16px; right: 16px; bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    width: auto; transform: translateY(8px);
  }
  .sdl-info-trigger:hover::after,
  .sdl-info-trigger:active::after,
  .sdl-info-trigger:focus::after { transform: translateY(0); }
}

/* ─────────────────────────────────────────────────────────────────── */
/* BOTÃO FLUTUANTE DE WHATSAPP                                          */
.sdl-whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(20, 32, 45, .25);
  transition: transform .15s, box-shadow .15s;
}
.sdl-whatsapp-float:hover { transform: scale(1.06); box-shadow: 0 8px 24px rgba(20, 32, 45, .32); }
@media (max-width: 640px) {
  .sdl-whatsapp-float { width: 50px; height: 50px; right: 14px; bottom: calc(14px + env(safe-area-inset-bottom, 0px)); }
}

/* ─────────────────────────────────────────────────────────────────── */
/* GATE DE QUALIFICAÇÃO DE LEAD (tráfego de anúncios)                   */
.sdl-qual-gate {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(15, 27, 38, .72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.sdl-qual-gate[hidden] { display: none; }
.sdl-qual-box {
  background: white;
  border-radius: 14px;
  padding: 32px;
  max-width: 460px;
  width: 100%;
  min-width: 0;
  margin: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.sdl-qual-box h2 { font-family: var(--sdl-serif); color: var(--sdl-blue-dd); margin: 0 0 8px; font-size: 22px; }
.sdl-qual-box p { color: var(--sdl-muted); margin: 0 0 20px; font-size: 14.5px; line-height: 1.5; }
.sdl-qual-q { margin-bottom: 20px; }
.sdl-qual-q > span { display: block; font-weight: 600; color: var(--sdl-blue-dd); margin-bottom: 10px; font-size: 14.5px; }
.sdl-qual-opts { display: flex; gap: 10px; }
.sdl-qual-opts button {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: 1.5px solid var(--sdl-border);
  background: white;
  color: var(--sdl-blue-dd);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all .15s;
}
.sdl-qual-opts button:hover { border-color: var(--sdl-blue); }
.sdl-qual-opts button.is-active { border-color: var(--sdl-blue); background: var(--sdl-blue); color: white; }
#sdl-qual-submit:disabled { opacity: .5; cursor: not-allowed; }
.sdl-qual-countdown { margin: 14px 0 0 !important; font-size: 13px !important; text-align: center; }
@media (max-width: 480px) {
  .sdl-qual-gate { padding: 12px; }
  .sdl-qual-box { padding: 22px 18px; }
  .sdl-qual-box h2 { font-size: 20px; }
  .sdl-qual-opts button { min-width: 0; padding: 12px 8px; }
}



