/* ============================================================
   SQUARE DESIGN RESIDENCE — style-square.css
   Menu, Slider, Sobre
   ============================================================ */

/* ============================================================
   SQUARE DESIGN — menu, slider e sobre
   Variáveis próprias (não interferem no restante do site WA)
   ============================================================ */
:root {
  --sd-primary:      #9b946d;
  --sd-primary-hvr:  #cdc075;
  --sd-dark:         #111111;
  --sd-dark-soft:    #1a1a1a;
  --sd-white:        #FFFFFF;
  --sd-overlay:      rgba(1,67,83,0.55);
  --sd-font:         Verdana,'Segoe UI',Geneva,sans-serif;
  --sd-header-h:     75px;
  --sd-tr:           opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  --sd-radius:       6px;
}

/* ============================================================
   ANTI-OVERFLOW GLOBAL — corrige conteúdo cortado no mobile
   Aplica em todo o documento sem afetar layouts internos
   ============================================================ */
body {
  overflow-x: clip;
  overflow-y: scroll;
  max-width: 100%;
  scrollbar-width: thin;
  margin: 0;
  padding: 0;
}
*, *::before, *::after {
  box-sizing: border-box;
}
img, iframe, embed, object, video {
  max-width: 100%;
}

/* Espaçador para subpáginas (compensa o header fixo + respiro original) */
.sd-page-spacer { height: calc(var(--sd-header-h) + 160px); display: block; }

/* ---- RESET LOCAL ---- */
#sd-header *, #sd-slider *, #sd-sobre * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
#sd-header a, #sd-slider a, #sd-sobre a { text-decoration: none; color: inherit; }
#sd-header ul, #sd-sobre ul { list-style: none; }
#sd-header img, #sd-slider img, #sd-sobre img { display: block; max-width: 100%; height: auto; }

/* ============================================================
   HEADER
   ============================================================ */
#sd-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 9000;
  transition: var(--sd-tr);
  background: #111111;
  padding: 0 24px;
}
#sd-header.sd-scrolled {
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.0) 100%);
  box-shadow: none;
}
.sd-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--sd-header-h);
  max-width: 1400px;
  margin: 0 auto;
}
/* Logo */
.sd-logo img { height: 44px; width: auto; transition: var(--sd-tr); }
.sd-logo .sd-logo-natural { display: none !important; }
#sd-header.sd-scrolled .sd-logo-white   { display: block !important; }
#sd-header.sd-scrolled .sd-logo-natural { display: none !important; }

/* Nav */
.sd-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.sd-nav li a {
  font-family: var(--sd-font);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff !important;
  position: relative;
  transition: var(--sd-tr);
}
.sd-nav li a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: rgba(255,255,255,0.5);
  transition: var(--sd-tr);
}
.sd-nav li a:hover { color: rgba(255,255,255,0.7) !important; text-decoration: none; }
.sd-nav li a:hover::after { width: 100% !important; }
#sd-header.sd-scrolled .sd-nav li a { color: #ffffff !important; }
#sd-header.sd-scrolled .sd-nav li a:hover { color: rgba(255,255,255,0.7) !important; text-decoration: none; }

/* Botão CTA */
@keyframes sd-shake {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  10%       { transform: translateX(-3px) rotate(-1deg); }
  20%       { transform: translateX(3px) rotate(1deg); }
  30%       { transform: translateX(-3px) rotate(0deg); }
  40%       { transform: translateX(3px) rotate(1deg); }
  50%       { transform: translateX(-2px) rotate(-1deg); }
  60%       { transform: translateX(2px) rotate(0deg); }
  70%       { transform: translateX(-1px) rotate(0deg); }
}
.sd-cta-btn {
  background: #25D366 !important;
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px;
  animation: sd-shake 3s ease-in-out 2s infinite !important;
  animation-fill-mode: both !important;
}
.sd-cta-btn::after { display: none !important; }
.sd-cta-btn:hover {
  background: #1FB855 !important;
  color: #fff !important;
  animation: none;
  transform: translateY(-1px);
}
#sd-header.sd-scrolled .sd-cta-btn { color: #fff !important; }

/* Dropdown "Nos Siga" */
.sd-dropdown { position: relative; }
.sd-dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.sd-dropdown-toggle i { font-size: 0.65rem; transition: var(--sd-tr); }
.sd-dropdown.open .sd-dropdown-toggle i { transform: rotate(180deg); }
.sd-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--sd-dark);
  border-radius: var(--sd-radius);
  padding: 8px 0;
  min-width: 160px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 10;
}
.sd-dropdown.open .sd-dropdown-menu { display: block; }
.sd-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.82rem;
  color: var(--sd-white) !important;
  white-space: nowrap;
}
.sd-dropdown-menu li a:hover { background: rgba(255,255,255,0.08); color: #ffffff !important; }
.sd-dropdown-menu li a::after { display: none !important; }

/* Hamburger */
.sd-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 9001;
}
.sd-hamburger span {
  width: 26px; height: 2px;
  background: var(--sd-white);
  display: block;
  transition: var(--sd-tr);
}
#sd-header.sd-scrolled .sd-hamburger span { background: var(--sd-dark); }
.sd-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.sd-hamburger.active span:nth-child(2) { opacity: 0; }
.sd-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav overlay */
.sd-nav-mobile {
  position: fixed;
  top: 0; right: -320px;
  width: 80%; max-width: 300px;
  height: 100vh;
  background: var(--sd-dark);
  padding: 90px 28px 28px;
  transition: right 0.4s ease;
  visibility: hidden;
  z-index: 8999;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sd-nav-mobile.open { right: 0; visibility: visible; }
.sd-nav-mobile li a {
  font-family: var(--sd-font);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--sd-white) !important;
  display: block;
  padding: 6px 0;
  transition: var(--sd-tr);
  border: none !important;
  border-bottom: none !important;
  text-decoration: none !important;
  box-shadow: none !important;
}
.sd-nav-mobile li a:hover { color: var(--sd-primary); }
.sd-nav-mobile .sd-mobile-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.sd-nav-mobile .sd-mobile-social a {
  color: var(--sd-white);
  font-size: 1.2rem;
  padding: 0;
  transition: var(--sd-tr);
}
.sd-nav-mobile .sd-mobile-social a:hover { color: var(--sd-primary); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
#sd-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  font-family: var(--sd-font);
  background: #111111;
}
.sd-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
}
.sd-slide.active { opacity: 1; z-index: 1; }
.sd-slide.sd-slide--first { opacity: 1 !important; z-index: 1 !important; transition: none !important; }
.sd-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
.sd-slide {
  background: #111111;
}
.sd-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.28), rgba(0,0,0,0.62));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
}
.sd-slide-tag {
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.sd-slide-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--sd-white);
  line-height: 1.1;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.sd-slide-title span { color: var(--sd-white); }
.sd-slide-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 18px;
}
.sd-slide-specs {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 26px;
  color: var(--sd-white);
  font-size: 0.9rem;
  font-weight: 500;
}
.sd-spec-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.6); flex-shrink: 0; }
.sd-slide-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.sd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--sd-radius);
  font-family: var(--sd-font);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--sd-tr);
  cursor: pointer;
  border: none;
}
.sd-btn-primary { background: rgba(255,255,255,0.92); color: #111111; border: none; }
.sd-btn-primary:hover { background: #ffffff; color: #111111; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.sd-btn-outline { border: 2px solid rgba(255,255,255,0.8); color: #ffffff !important; background: transparent; }
.sd-btn-outline:hover { background: #ffffff; color: #111111 !important; }

/* Setas slider */
.sd-arrow {
  position: absolute;
  top: 50%; z-index: 5;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  color: var(--sd-white);
  font-size: 1.4rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--sd-tr);
  cursor: pointer;
  border: none;
}
.sd-arrow:hover { background: var(--sd-primary); color: var(--sd-dark); }
.sd-arrow-prev { left: 18px; }
.sd-arrow-next { right: 18px; }

/* Dots slider */
.sd-dots {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}
.sd-dot-btn {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 2px solid var(--sd-white);
  background: transparent;
  transition: var(--sd-tr);
  cursor: pointer;
}
.sd-dot-btn.active { background: var(--sd-primary); border-color: var(--sd-primary); }

/* ============================================================
   SOBRE
   ============================================================ */
#sd-sobre {
  background: #1C1C1A;
  padding: 80px 20px;
  font-family: var(--sd-font);
}
.sd-sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.sd-sobre-img-col { position: relative; }
.sd-sobre-img-col img {
  width: 100%;
  max-width: 480px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
.sd-sobre-caption {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
  font-style: italic;
}
.sd-sobre-eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.sd-sobre-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--sd-white);
  line-height: 1.3;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sd-sobre-divider {
  width: 40px; height: 2px;
  background: rgba(255,255,255,0.3);
  margin-bottom: 24px;
}
.sd-sobre-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 2.0;
  margin-bottom: 18px;
  font-weight: 300;
}
.sd-sobre-desc strong { color: var(--sd-white); font-weight: 600; }
.sd-pilares {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 0;
  padding-top: 52px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sd-pilar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--sd-radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sd-pilar i {
  font-size: 1.0rem;
  color: rgba(255,255,255,0.9);
  line-height: 1;
}
.sd-pilar h3 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sd-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.sd-pilar p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}
.sd-sobre-rsf {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
}
.sd-sobre-rsf strong { color: rgba(255,255,255,0.7); }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 767px) {
  .sd-nav { display: none; }
  .sd-hamburger { display: flex; }
  .sd-sobre-grid { grid-template-columns: 1fr; gap: 32px; }
  .sd-sobre-img-col { text-align: center; }
  .sd-sobre-img-col img { max-width: 340px; max-height: 420px; object-fit: cover; object-position: top; width: 100%; clip-path: none !important; border-radius: 12px !important; }
  .sd-pilares { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  #sd-slider { height: 100svh; min-height: 500px; }
  #sd-sobre { padding: 0 16px 40px; background: #111111; }
  .sd-mobile-spacer { height: 24px; }
  .sd-sobre-grid { padding-top: 0 !important; border-top: none !important; }
  .sd-pilares { grid-template-columns: 1fr; gap: 12px; margin-top: 24px; padding-top: 24px; }
  .sd-slide-btns { flex-direction: column; width: 100%; padding: 0 20px; align-items: center; }
  .sd-slide-btns .sd-btn { width: 70%; }
  .sd-arrow { width: 36px; height: 36px; font-size: 1rem; }
  .sd-arrow-prev { left: 8px; }
  .sd-arrow-next { right: 8px; }
}

/* ============================================================
   SCROLL INDICATOR — bolinha animada
   ============================================================ */
.sd-scroll-indicator {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
}
.sd-scroll-indicator__mouse {
  width: 32px;
  height: 52px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 16px;
  position: relative;
}
.sd-scroll-indicator__ball {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  animation: sd-scroll-ball 1.8s ease-in-out infinite;
  top: 6px;
}
@keyframes sd-scroll-ball {
  0%   { transform: translateX(-50%) translateY(0);  opacity: 1; }
  60%  { transform: translateX(-50%) translateY(24px); opacity: 1; }
  100% { transform: translateX(-50%) translateY(24px); opacity: 0; }
}
.sd-scroll-indicator__text {
  display: none;
}
@media (max-width: 600px) {
  .sd-scroll-indicator { display: none; }
}

/* Mobile: sem espaços brancos entre seções SD */
@media (max-width: 767px) {
  #sd-header { background: #111111 !important; }
  #sd-header.sd-scrolled { background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.0) 100%) !important; }
}

/* ============================================================
   TORRE MOBILE — full-width com fancybox
   ============================================================ */
.sd-torre-mobile-link {
  display: none;
  margin-bottom: 160px;
}
.sd-torre-mobile-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.sd-torre-mobile-caption {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  /* Mostrar bloco mobile */
  .sd-torre-mobile-link { display: block; }
  /* Espaço entre imagem e texto */
  /* Ocultar torre desktop */
  .sd-sobre-img-col { display: none !important; }
}

/* Spacer torre → texto */
.sd-mobile-spacer { display: block; height: 10px; }

/* Remover espaço branco entre sd-sobre e próximo bloco WA no mobile */
@media (max-width: 767px) {
  #sd-sobre + script + .comp_78,
  #sd-sobre + script ~ .comp_78,
  .comp_78:first-of-type {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .comp_79, .comp_80, .comp_81, .comp_82 {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

/* ============================================================
   SKY LOUNGE — fundo preto, texto branco
   ============================================================ */
.comp_115,
.comp_115 .innerBox,
.comp_115 .wa_inner_col,
.comp_115 .wa_inner_col2 {
  background: #111111 !important;
  background-color: #111111 !important;
}
.comp_115 h2,
.comp_115 h3,
.comp_115 h4,
.comp_115 p,
.comp_115 b,
.comp_115 span,
.comp_115 .wa-txt-par {
  color: #ffffff !important;
}
.comp_115 h3,
.comp_115 h4:first-of-type {
  color: rgba(255,255,255,0.65) !important;
}

/* ============================================================
   SKY LOUNGE — seção reconstruída
   ============================================================ */
#sd-skylounge {
  background: #111111;
  padding: 60px 10%;
  width: 100%;
}
.sd-sky-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  text-align: left;
  margin-bottom: 12px;
  line-height: 1.2;
}
.sd-sky-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  text-align: left;
  margin-bottom: 24px;
  font-style: italic;
}
.sd-sky-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  text-align: left;
}
.sd-sky-body strong {
  color: #ffffff;
}
@media (max-width: 767px) {
  #sd-skylounge { padding: 48px 16px; }
  .sd-sky-title { font-size: 1.8rem; }
}

/* ============================================================
   SEÇÃO AGENDAMENTO
   ============================================================ */
#sd-agendamento {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#sd-agendamento *,
#sd-agendamento *::before,
#sd-agendamento *::after {
  box-sizing: border-box;
}
.sd-agend-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top; /* ancora no topo — preserva proporção visual */
  z-index: 0;
}
/* ===== AGENDAMENTO ===== */
#sd-agendamento {
  position: relative;
  overflow: hidden;
}
.sd-agend-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.sd-agend-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 24px;
  box-sizing: border-box;
}
.sd-agend-text {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.sd-agend-pipe {
  display: block;
  width: 4px;
  min-height: 80px;
  background: #ffffff;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 4px;
}
.sd-agend-pre {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  line-height: 1.5;
  font-weight: 300;
}
.sd-agend-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
}
.sd-agend-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 36px;
  width: 460px;
  flex-shrink: 0;
  box-sizing: border-box;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.sd-agend-card-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.6rem;
  color: #111111;
  text-align: center;
  margin-bottom: 8px;
}
.sd-agend-card-sub {
  font-size: 0.82rem;
  color: #555;
  text-align: center;
  margin-bottom: 6px;
  line-height: 1.5;
}
.sd-agend-card-obrig {
  font-size: 0.75rem;
  color: #666;
  text-align: center;
  margin-bottom: 20px;
}
.sd-agend-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sd-agend-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.88rem;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.sd-agend-input:focus { border-color: #111111; }
.sd-agend-select { cursor: pointer; }
.sd-agend-date { cursor: pointer; }
.sd-agend-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: #555;
  line-height: 1.4;
  cursor: pointer;
}
.sd-agend-check { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.sd-agend-btn {
  width: 100%;
  padding: 14px;
  background: #111111;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 4px;
  box-sizing: border-box;
}
.sd-agend-btn:hover { background: #333333; transform: translateY(-1px); }
.sd-agend-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.sd-agend-msg { font-size: 0.82rem; text-align: center; min-height: 20px; }
.sd-agend-msg--ok   { color: #1a7a3a; }
.sd-agend-msg--erro { color: #c0392b; }
@media (max-width: 767px) {
  .sd-agend-inner {
    flex-direction: column;
    padding: 40px 16px;
    align-items: center;
    gap: 24px;
  }
  .sd-agend-text { width: 100%; }
  .sd-agend-card {
    width: 100%;
    padding: 28px 16px;
  }
}


/* ============================================================
   YOUTUBE LAZY PLAYER
   ============================================================ */
.sd-yt-lazy {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  overflow: hidden;
  background: transparent; /* sem fundo preto — só o botão Play */
  border-radius: 4px;
}
.sd-yt-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}
.sd-yt-play { z-index: 2; }
.sd-yt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease;
  z-index: 2;
}
.sd-yt-play svg { width: 100%; height: 100%; }
.sd-yt-lazy:hover .sd-yt-play,
.sd-yt-play:focus-visible {
  transform: translate(-50%, -50%) scale(1.18);
  filter: drop-shadow(0 0 22px rgba(255,255,255,0.65));
  outline: none;
}
.sd-yt-lazy iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ============================================================
   TOUR VIRTUAL
   ============================================================ */
#sd-tour {
  padding: 72px 0 80px;
  background: var(--sd-dark-soft);
}
.sd-tour-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* breadcrumb */
.sd-tour-breadcrumb {
  font-family: var(--sd-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sd-primary);
  margin-bottom: 36px;
}
.sd-tour-breadcrumb span { color: rgba(255,255,255,0.35); margin: 0 8px; }

/* cabeçalho */
.sd-tour-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
}
.sd-tour-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--sd-white);
  line-height: 1.2;
  margin: 0;
}
.sd-tour-desc {
  font-family: var(--sd-font);
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}

/* abas */
.sd-tour-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.sd-tour-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--sd-radius);
  cursor: pointer;
  transition: var(--sd-tr);
  font-family: var(--sd-font);
}
.sd-tour-tab:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}
.sd-tour-tab.active {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.sd-tour-tab-icon {
  width: 20px; height: 20px;
  opacity: 0.7;
  flex-shrink: 0;
  color: #fff;
}
.sd-tour-tab.active .sd-tour-tab-icon { opacity: 1; }
.sd-tour-tab-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.sd-tour-tab.active .sd-tour-tab-label { color: rgba(255,255,255,0.85); }
.sd-tour-tab-size {
  font-size: 18px;
  font-weight: 700;
  color: var(--sd-white);
  display: block;
  line-height: 1;
}

/* painel com imagem + play */
.sd-tour-panels {
  position: relative;
  max-width: 900px; /* quadro menor, proporcional ao exemplo */
  margin: 0 auto;
}
.sd-tour-panel {
  display: none;
  background: #fff;
  border-radius: 10px;
  padding: 10px; /* cria a borda branca visível */
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
}
.sd-tour-panel.active { display: block; }

.sd-tour-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
}
.sd-tour-frame picture,
.sd-tour-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.sd-tour-frame:hover picture img,
.sd-tour-frame:hover > img { transform: scale(1.04); }

/* overlay escuro sobre a imagem */
.sd-tour-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  transition: background 0.3s ease;
  z-index: 1;
}
.sd-tour-frame:hover::after { background: rgba(0,0,0,0.25); }

/* botão play (igual ao sd-yt-play, tamanho 120px) */
.sd-tour-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.sd-tour-play svg { width: 100%; height: 100%; display: block; }
.sd-tour-frame:hover .sd-tour-play,
.sd-tour-play:focus-visible {
  transform: translate(-50%, -50%) scale(1.18);
  filter: drop-shadow(0 0 22px rgba(255,255,255,0.7));
  outline: none;
}

/* ---- MOBILE ---- */
@media (max-width: 767px) {
  #sd-tour { padding: 52px 0 60px; }
  .sd-tour-header {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }
  .sd-tour-tabs { flex-direction: column; gap: 10px; }
  .sd-tour-tab { padding: 12px 18px; }
  .sd-tour-play { width: 80px; height: 80px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
#sd-footer {
  background: #111 !important;
  color: rgba(255,255,255,0.65) !important;
  font-family: var(--sd-font);
  display: block !important;
  width: 100% !important;
}
.sd-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.sd-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Logo + brand */
.sd-footer-logo {
  display: block;
  width: 140px;
  height: auto;
  margin-bottom: 20px;
  opacity: 0.9;
}
.sd-footer-tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin: 0 0 10px;
  text-transform: uppercase;
}
.sd-footer-addr {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0;
}

/* Heading colunas */
.sd-footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9) !important;
  margin: 0 0 20px;
}

/* Navegação */
.sd-footer-nav {
  list-style: none;
  margin: 0; padding: 0;
}
.sd-footer-nav li { margin-bottom: 12px; }
.sd-footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.5) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.sd-footer-nav a:hover { color: #fff !important; }

/* Contato */
.sd-footer-contact {
  list-style: none;
  margin: 0 0 28px; padding: 0;
}
.sd-footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.sd-footer-contact i {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.sd-footer-contact a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}
.sd-footer-contact a:hover { color: #fff; }

/* Redes sociais */
.sd-footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sd-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.sd-social-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* Barra inferior */
.sd-footer-bottom {
  background: #0a0a0a !important;
  padding: 28px 0;
  text-align: center;
}
.sd-footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 0 0 10px;
}
.sd-footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  max-width: 800px;
  margin: 0 auto 10px;
  line-height: 1.7;
}
.sd-footer-privacy a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}
.sd-footer-privacy a:hover { color: rgba(255,255,255,0.7); }

/* ---- MOBILE ---- */
@media (max-width: 767px) {
  .sd-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0 40px;
  }
  .sd-footer-inner { padding: 0 20px; }
}

/* ============================================================
   TÍTULO DAS SUBPÁGINAS
   ============================================================ */
.sd-page-title-block {
  padding: 40px 0 32px;
  text-align: center;
  background: #fff;
}
.sd-page-title-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.sd-page-title {
  font-family: var(--sd-font);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 16px;
  line-height: 1.2;
}
.sd-page-subtitle {
  font-family: var(--sd-font);
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   LANÇAMENTOS DA REGIÃO — outros-lancamentos-alphaville
   Prefixo rl- (region-launches) para evitar conflito com WA
   ============================================================ */
.rl-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}
.rl-region-section {
  padding: 64px 0;
  background: #fff;
}
.rl-region-section--alt {
  background: #f6f6f4;
}
.rl-region-header {
  text-align: center;
  margin-bottom: 48px;
}
.rl-region-badge {
  display: inline-block;
  background: #6b6b6b;
  color: #fff;
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.rl-region-title {
  font-family: var(--sd-font);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #111;
  margin: 0 0 12px;
  line-height: 1.2;
}
.rl-region-description {
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--sd-font);
  font-size: 15px;
  color: #666;
  line-height: 1.75;
}
/* Grid */
.rl-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
/* Card */
.rl-project-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.rl-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}
.rl-project-image {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #eee;
}
.rl-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.rl-project-card:hover .rl-project-image img {
  transform: scale(1.07);
}
.rl-project-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(17,17,17,0.75);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.rl-project-content {
  padding: 18px 18px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.rl-project-title {
  font-family: var(--sd-font);
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin: 0 0 10px;
  line-height: 1.3;
}
.rl-project-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.rl-project-spec {
  background: #f2f2f2;
  color: #555;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
}
.rl-project-description {
  font-family: var(--sd-font);
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 16px;
  flex-grow: 1;
}
.rl-project-cta {
  display: inline-block;
  padding: 9px 22px;
  background: transparent;
  color: #111;
  border: 1.5px solid #6b6b6b;
  border-radius: 6px;
  font-family: var(--sd-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none !important;
  text-align: center;
  transition: background 0.22s ease, color 0.22s ease;
  align-self: flex-start;
}
.rl-project-cta:hover {
  background: #6b6b6b;
  color: #fff !important;
}
/* Responsivo */
@media (max-width: 1200px) {
  .rl-projects-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .rl-projects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .rl-projects-grid { grid-template-columns: 1fr; }
  .rl-region-section { padding: 40px 0; }
}

/* ============================================================
   CORREÇÕES MOBILE — mapa e imagens WA
   ============================================================ */
@media (max-width: 767px) {
  /* Wrapper de imagem do WebAcappella — impede overflow do mapa estático */
  .wa-image-wrap {
    overflow: hidden;
    width: 100% !important;
    max-width: 100% !important;
  }
  .wa-image-wrap img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
  }
  /* iframes (Google Maps) — responsivos */
  iframe {
    width: 100% !important;
    max-width: 100% !important;
  }
  /* Imagens WA com width fixo em atributo HTML — forçar responsivo */
  img[width="600"],
  img[width="853"],
  img[width="1920"],
  img[width="1600"] {
    width: 100% !important;
    height: auto !important;
  }
  /* Rooftop — coluna col-8 offset-2 vira full width no mobile */
  .col-8.offset-2 {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    flex: 0 0 100% !important;
  }
}

/* ============================================================
   FIX DEFINITIVO — Formulário agendamento mobile
   Neutraliza regras globais do Bootstrap/WebAcappella
   ============================================================ */
#sd-agendamento .sd-agend-inner {
  width: 100% !important;
  max-width: 100% !important;
}
#sd-agendamento .sd-agend-card {
  flex-shrink: 1 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}
/* Neutraliza font-size:18px do select global que causa zoom e overflow no mobile */
#sd-agendamento select,
#sd-agendamento input,
#sd-agendamento textarea {
  font-size: 16px !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Corrige margin-left:10px do wafxMenuBgStaticPanel que causa overflow global */
.wafxMenuBgStaticPanel {
  margin-left: 0 !important;
  width: 100% !important;
  max-width: 100vw !important;
}

/* Agendamento — fix largura card desktop */
@media (min-width: 768px) {
  .sd-agend-card {
    width: min(460px, 50%);
  }
}

/* Agendamento — card proporcional ao container real */
@media (min-width: 768px) {
  #sd-agendamento .sd-agend-card {
    width: 420px !important;
    flex-shrink: 0 !important;
  }
  #sd-agendamento .sd-agend-text {
    flex: 1 !important;
    min-width: 200px !important;
  }
}

/* Agendamento — ajuste proporcional final */
@media (min-width: 768px) {
  #sd-agendamento .sd-agend-card {
    width: 500px !important;
  }
}

/* ===== SEÇÃO PLANTAS ===== */
#sd-plantas-secao {
  padding: 60px 24px;
  background: #fff;
  box-sizing: border-box;
}
.sd-plantas-secao__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 60px;
}
.sd-plantas-secao__texto {
  flex: 1;
  min-width: 0;
}
.sd-plantas-secao__galeria {
  flex: 1.2;
  min-width: 0;
}
.sd-plantas-secao__h2 {
  font-family: var(--sd-font);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #111;
  margin: 0 0 8px;
}
.sd-plantas-secao__h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #2e7d32;
  font-weight: 400;
  font-style: italic;
  margin: 0 0 24px;
}
.sd-plantas-secao__p {
  font-family: var(--sd-font);
  font-size: 0.95rem;
  color: #333;
  line-height: 1.8;
  margin: 0 0 16px;
  text-align: justify;
}
@media (max-width: 767px) {
  #sd-plantas-secao { padding: 40px 16px; }
  .sd-plantas-secao__inner {
    flex-direction: column;
    gap: 32px;
  }
  .sd-plantas-secao__galeria { width: 100%; }
}
/* ===== FIM SEÇÃO PLANTAS ===== */

/* ===== FICHA TÉCNICA ===== */
#sd-ficha {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.sd-ficha__banner {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}
.sd-ficha__bg {
  width: 100%;
  display: block;
  height: 400px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .sd-ficha__bg { height: 220px; }
  .sd-ficha__banner { display: none; }
}
/* ===== FIM FICHA TÉCNICA ===== */

/* ===== FICHA TÉCNICA ===== */
#sd-ficha {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.sd-ficha__banner {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}
.sd-ficha__bg {
  width: 100%;
  display: block;
  height: 400px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .sd-ficha__bg { height: 220px; }
  .sd-ficha__banner { display: none; }
}
/* ===== FIM FICHA TÉCNICA ===== */

/* Parallax ficha */

/* ===== VÍDEO SEÇÃO ===== */
.sd-video-secao {
  background: #0a0a0a;
  padding: 0;
}
.sd-video-secao__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 24px;
}
#sd-video-1 .sd-yt-lazy {
  max-width: 100%;
  border-radius: 0;
}
.sd-video-secao__label {
  font-family: var(--sd-font);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  margin: 0 0 8px;
}
.sd-video-secao__desc {
  font-family: var(--sd-font);
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin: 0 0 24px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .sd-video-secao { padding: 0; }
}
/* ===== FIM VÍDEO SEÇÃO ===== */

/* Overlay texto sobre vídeo */
.sd-video-secao__overlay {
  position: absolute;
  bottom: 40px;
  left: 48px;
  z-index: 2;
  max-width: 600px;
}
.sd-video-secao__label {
  font-family: var(--sd-font);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 10px;
}
.sd-video-secao__desc {
  font-family: var(--sd-font);
  font-size: 1.4rem;
  font-weight: 300;
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
@media (max-width: 767px) {
  .sd-video-secao__overlay { bottom: 20px; left: 20px; right: 20px; }
  .sd-video-secao__desc { font-size: 1rem; }
}

/* ===== LAZER ===== */
#sd-lazer { background: #0a0a0a; padding: 60px 10%; color: #fff; }
.sd-lazer__inner { max-width: 1200px; margin: 0 auto; }
.sd-lazer__titulo { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; color: #fff; text-align: left; margin: 0 0 24px; line-height: 1.2; }
.sd-lazer__desc { font-family: var(--sd-font); font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.8; margin: 0 0 16px; }
.sd-lazer__mapa { width: 60%; height: auto; display: block; border-radius: 8px; margin: 24px auto; }
@media (max-width: 767px) { .sd-lazer__mapa { width: 100%; border-radius: 0; margin: 16px 0; } }
.sd-lazer__lista { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0 32px; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 80px; }
.sd-lazer__col { list-style: none; padding: 0; margin: 0; }
.sd-lazer__col li { font-size: 1rem; color: rgba(255,255,255,0.75); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
/* Galeria — padrão Liv Stay: largura e altura fixas */
.lazer__galeria-wrapper { position: relative; margin-top: 10px; width: 100%; display: block; }
.lazer__galeria { display: flex; gap: 12px; overflow-x: auto; scroll-behavior: smooth; padding-bottom: 12px; -ms-overflow-style: none; scrollbar-width: none; }
.lazer__galeria::-webkit-scrollbar { display: none; }
.lazer__galeria-item { position: relative; flex: 0 0 132px; height: 99px; overflow: hidden; border-radius: 8px; cursor: pointer; border: 2px solid transparent; transition: all 0.35s ease; }
.lazer__galeria-item:hover { border-color: rgba(255,255,255,0.5); }
.lazer__galeria-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.lazer__galeria-item:hover img { transform: scale(1.08); }
.lazer__galeria-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 40px; height: 40px; border-radius: 50%; background: rgba(0,0,0,0.5); color: #fff; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; transition: all 0.35s ease; }
.lazer__galeria-arrow:hover { background: rgba(255,255,255,0.3); }
.lazer__galeria-arrow--prev { left: -16px; }
.lazer__galeria-arrow--next { right: -16px; }
@media (max-width: 767px) { #sd-lazer { padding: 40px 16px; } .sd-lazer__lista.sd-desktop-only { display: none; } .sd-lazer__lista.sd-mobile-only { display: grid; grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .sd-lazer__lista.sd-desktop-only { display: grid !important; grid-template-columns: 1fr 1fr 1fr; } .sd-lazer__lista.sd-mobile-only { display: none !important; } }
/* ===== FIM LAZER ===== */

/* Fix: garantir visibilidade da galeria de lazer */
#sd-lazer .lazer__galeria-wrapper,
#sd-lazer .lazer__galeria,
#sd-lazer .lazer__galeria-item {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Espaço entre agendamento e vídeo 1 */
#sd-agendamento {
  margin-bottom: 0 !important;
}

/* ===== VÍDEO 2 ===== */
#sd-video-2 {
  position: relative;
  padding: 80px 10%;
  min-height: 500px;
}
.sd-video2__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 0;
}
.sd-video2__inner {
  position: relative;
  z-index: 1;
}
.sd-video2__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.sd-video2__titulo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.sd-video2__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}
.sd-video2__player .sd-yt-lazy {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
@media (max-width: 767px) {
  .sd-video2__inner { grid-template-columns: 1fr; }
  #sd-video-2 { padding: 40px 16px; }
}

/* ===== EQUIPE ===== */
#sd-equipe {
  background: #111;
  padding: 60px 10%;
}
.sd-equipe__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.sd-equipe__texto--2 { display: none; }
.sd-equipe__foto { margin-top: 150px; }
.sd-equipe__vcard { margin-top: 300px; }
.sd-equipe__titulo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #c9a96e;
  margin-bottom: 20px;
  line-height: 1.2;
}
.sd-equipe__desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .sd-equipe__inner { grid-template-columns: 1fr; }
  #sd-equipe { padding: 40px 16px; }
  .sd-equipe__texto--1 { order: 1; }
  .sd-equipe__foto { order: 2; margin-top: 0; }
  .sd-equipe__foto img { max-height: 280px; width: 100%; object-fit: cover; border-radius: 8px; }
  .sd-equipe__texto--2 { order: 3; display: block; }
  .sd-equipe__vcard { order: 4; margin-top: 0; }
  .sd-equipe__vcard img { max-height: 280px; width: 100%; object-fit: cover; }
}

/* ===== SIMULAÇÃO ===== */
#sd-simulacao {
  background: #111;
  padding: 60px 10%;
}
.sd-sim__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.sd-sim__titulo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 48px;
}
.sd-sim__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.sd-sim__itens {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sd-sim__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.sd-sim__item img {
  flex-shrink: 0;
  width: 80px;
  height: auto;
}
.sd-sim__item-titulo {
  font-family: Verdana, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.sd-sim__item-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.sd-sim__cta {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sd-sim__btn {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-family: Verdana, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.3s;
  white-space: nowrap;
}
.sd-sim__btn:hover { background: rgba(255,255,255,0.25); }
@media (max-width: 767px) {
  .sd-sim__grid { grid-template-columns: 1fr; }
  #sd-simulacao { padding: 40px 16px; }
}

/* Esconder scrollbar mantendo funcionalidade */
html {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-x: hidden;
  font-family: Verdana, 'Segoe UI', sans-serif;
  font-size: 16px;
  box-sizing: border-box;
}
html::-webkit-scrollbar {
  display: none;
}


/* Desktop/Mobile visibility */
.sd-desktop-only { display: block !important; }
.sd-mobile-only { display: none !important; }
@media (max-width: 991px) {
  .sd-desktop-only { display: none !important; }
  .sd-mobile-only { display: block !important; }
}

/* ===== SKY LOUNGE EXTRA ===== */
.sd-sky-extra {
  background: #111;
  padding: 60px 10%;
}
.sd-sky-extra__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.sd-sky-lista {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px 24px;
  margin-top: 24px;
}
.sd-sky-lista__col p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (max-width: 767px) {
  .sd-sky-extra__inner { grid-template-columns: 1fr; }
  .sd-sky-extra { padding: 40px 16px; }
  .sd-sky-parallax { background-attachment: scroll !important; min-height: 250px !important; }
  .sd-lazer__lista.sd-mobile-only { display: grid !important; grid-template-columns: 1fr 1fr !important; }
  .sd-lazer__lista.sd-desktop-only { display: none !important; }
}


/* ===== FIX MOBILE (unificado) ===== */
@media (max-width: 991px) {
  body { overflow-x: clip; }
  .ta-cnt,
  .ta-cnt__wrap { overflow-x: hidden; max-width: 100%; }
}
@media (max-width: 480px) {
  #sd-agendamento .sd-agend-inner {
    padding: 40px 12px !important;
  }
  #sd-agendamento .sd-agend-card {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    padding: 28px 16px !important;
    box-sizing: border-box !important;
  }
}


/* ===== CONTADOR MÊS (unificado) ===== */
/* ==========================================================================
   Terra Alta — Contador "Virada do mês" (MODULAR, sem dependências)
   Arquivo: /css/ta-contador-mes.css
   ========================================================================== */

:root{
  --ta-cnt-bg: #080808;                 /* fundo escuro */
  --ta-cnt-title: #ffffff;             /* título */
  --ta-cnt-text: rgba(255,255,255,.75);/* texto */
  --ta-cnt-accent: #58a95d;            /* números (destaque) */
  --ta-cnt-btn-wpp-bg: #25d366;        /* botão verde */
  --ta-cnt-btn-wpp-hover: #1da851;
  --ta-cnt-btn-outline: #58a95d;       /* botão contorno */
}

.ta-cnt{
  padding: 6rem 0;
  background: var(--ta-cnt-bg);
  color: #fff;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.ta-cnt *,
.ta-cnt *::before,
.ta-cnt *::after {
  box-sizing: border-box;
}

.ta-cnt__wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.ta-cnt__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items:center;
}

@media (max-width: 768px){
  .ta-cnt__grid{ grid-template-columns: 1fr; text-align:center; }
  .ta-cnt__wrap{ padding: 0 1.25rem; max-width: 100%; overflow: hidden; }
  .ta-cnt__titulo{ font-size: 1.5rem; word-break: break-word; overflow-wrap: break-word; }
  .ta-cnt__texto{ font-size: 0.95rem; }
  .ta-cnt__blk{ min-width: 56px; }
  .ta-cnt__n{ font-size: 2.2rem; }
}

.ta-cnt__titulo{
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
  color: var(--ta-cnt-title);
  word-break: break-word;
  overflow-wrap: break-word;
}

.ta-cnt__texto{
  font-size: 1.1rem;
  color: var(--ta-cnt-text);
  line-height: 1.8;
  margin-bottom: .85rem;
}

.ta-cnt__btns{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
  margin-top: 1.2rem;
}

@media (max-width: 768px){
  .ta-cnt__btns{ justify-content:center; }
}

.ta-cnt-btn{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding: .78rem 1.6rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  transition: all .25s ease;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.ta-cnt-btn--wpp{
  background: var(--ta-cnt-btn-wpp-bg);
  color:#fff;
}
.ta-cnt-btn--wpp:hover{ background: var(--ta-cnt-btn-wpp-hover); }

.ta-cnt-btn--out{
  background: transparent;
  border: 2px solid var(--ta-cnt-btn-outline);
  color: var(--ta-cnt-btn-outline);
}
.ta-cnt-btn--out:hover{
  background: var(--ta-cnt-btn-outline);
  color:#fff;
}

.ta-cnt__right{ text-align:center; }

.ta-cnt__right small{
  display:block;
  color: rgba(255,255,255,.7);
  margin-bottom: .75rem;
  letter-spacing: .02em;
}

.ta-cnt__display{
  display:flex;
  gap: 1rem;
  justify-content:center;
  align-items:flex-end;
  margin: 1.1rem 0 .6rem;
}

.ta-cnt__blk{ text-align:center; min-width: 70px; }

.ta-cnt__n{
  display:block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--ta-cnt-accent);
  line-height: 1;
}

.ta-cnt__u{
  display:block;
  font-size: .72rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: .35rem;
}

.ta-cnt__sep{
  font-size: 2rem;
  color: rgba(255,255,255,.25);
  line-height: 2.8rem;
}

.ta-cnt__lbl{
  font-size: .95rem;
  color: rgba(255,255,255,.6);
}

@media (max-width: 480px) {
  .ta-cnt__display { gap: 0.4rem; }
  .ta-cnt__blk { min-width: 44px; }
  .ta-cnt__n { font-size: 1.8rem; }
  .ta-cnt__sep { font-size: 1.4rem; }
  .ta-cnt__u { font-size: 0.62rem; letter-spacing: 0; }
}


/* ===== LANÇAMENTOS (unificado) ===== */
/* =========================================
   Módulo: Outros Lançamentos
   =========================================

   ✏️  CONFIGURAÇÕES DO PROJETO — EDITE AQUI
   -----------------------------------------
   Troque apenas os valores abaixo.
   Não precisa mexer em mais nada no arquivo.
   ========================================= */

:root {
  --lanc-cor-tag:        #7a7a7a;     /* Cinza prateado — tag "Imóveis Cardoso"         */
  --lanc-cor-titulo:     #111111;     /* Preto escuro — título principal da seção       */
  --lanc-cor-badge:      #6b6b6b;     /* Cinza prateado — badge "Barueri" / "Alphaville"*/
  --lanc-cor-fundo:      #ffffff; /* Fundo branco */
  --lanc-padding-top:    3rem;        /* Espaço acima da seção                          */
  --lanc-padding-bottom: 3rem;        /* Espaço abaixo da seção                         */
}

/* =========================================
   FIM DAS CONFIGURAÇÕES — não edite abaixo
   ========================================= */

.lanc{padding:var(--lanc-padding-top) 0 var(--lanc-padding-bottom);background:var(--lanc-cor-fundo)}

/* Container: limita largura e respeita o padrão do site */
.lanc > .container{max-width:1200px;margin:0 auto;padding:0 24px;width:100%;box-sizing:border-box}

/* Cabeçalho */
.lanc .sec-hdr{text-align:center;margin-bottom:2rem}
.lanc .sec-tag{display:inline-block;font-size:16px;letter-spacing:.18em;text-transform:uppercase;color:var(--lanc-cor-tag);margin-bottom:.4rem}
.lanc .sec-title{font-size:40px;line-height:1.15;margin:0 0 .35rem 0;font-weight:700;color:var(--lanc-cor-titulo)}
.lanc .sec-sub{margin:0 auto;max-width:62ch;font-size:18px;opacity:.85}

/* GRID: 6 no desktop, 2 no mobile */
.lanc__grid{
  display:grid;
  grid-template-columns:repeat(6, minmax(0,1fr));
  gap:18px;
}

/* Card reset (evita azul/sublinhado do tema) */
.lanc__card{
  display:block;
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  text-decoration:none !important;
  color:inherit !important;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  transition:transform .18s ease, box-shadow .18s ease;
}
.lanc__card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 32px rgba(0,0,0,.10);
}

/* Imagem: trava altura e impede "gigante" */
.lanc__card-img-box{
  position:relative;
  width:100%;
  height:150px;
  overflow:hidden;
  background:#f2f2f2;
}
.lanc__card-img{
  width:100% !important;
  height:100% !important;
  object-fit:cover;
  display:block;
}

/* Badge */
.lanc__card-badge{
  position:absolute;
  top:14px;
  left:14px;
  background:var(--lanc-cor-badge);
  color:#fff;
  padding:4px 9px;
  border-radius:6px;
  font-size:18px;
  line-height:1;
}

/* Corpo */
.lanc__card-body{padding:14px 14px 16px}
.lanc__card-body h3{
  margin:0 0 6px 0;
  font-size:16px;
  line-height:1.2;
  font-weight:700;
  text-decoration:none !important;
}
.lanc__card-body p{
  margin:0;
  font-size:13px;
  line-height:1.35;
  opacity:.78;
  text-decoration:none !important;
}

/* Breakpoints */
@media (max-width:1200px){
  .lanc__grid{grid-template-columns:repeat(3, minmax(0,1fr))}
}
@media (max-width:768px){
  .lanc{padding:2.5rem 0}
  .lanc .sec-title{font-size:26px}
  .lanc__grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .lanc__card-img-box{height:135px}
}
@media (max-width:768px){
  .lanc__card-body h3{font-size:14px}
}

/* Botão CTA — Ver Todos os Lançamentos */
.lanc__cta {
  text-align: center;
  margin-top: 2.5rem;
}
.lanc__cta-btn {
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  color: #111;
  border: 2px solid #6b6b6b;
  border-radius: 6px;
  font-family: Verdana, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.lanc__cta-btn:hover {
  background: #6b6b6b;
  color: #fff;
  border-color: #6b6b6b;
}


/* ===== POPUP STYLES (unificado) ===== */
/* ==========================================================================
   POPUP STYLES — Liv Stay Residence
   Estética: Rose Gold (#E9D5C3) sobre fundo escuro (#1D1D1B)
   ========================================================================== */

/* ===== OVERLAY BACKDROP ===== */
.lspopup {
  display:none;
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.55);
  z-index:9998;
  align-items:center;
  justify-content:center;
  padding:16px;
  animation:lspopupFadeIn 0.35s ease;
}
.lspopup.active { display:flex; }

@keyframes lspopupFadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}

/* ===== POPUP 1 & 2 — MODAL CENTRAL ===== */
.lspopup__box {
  position:relative;
  max-width:480px;
  width:100%;
  background:#1D1D1B;
  padding:48px 32px;
  border-radius:12px;
  text-align:center;
  animation:lspopupSlideUp 0.4s ease;
}
@keyframes lspopupSlideUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}

/* Close X */
.lspopup__close {
  position:absolute;
  top:14px; right:14px;
  width:32px; height:32px;
  font-size:22px;
  color:rgba(255,255,255,0.5);
  background:none; border:none;
  cursor:pointer;
  transition:color 0.3s;
  line-height:1;
}
.lspopup__close:hover { color:#fff; }

/* Icon */
.lspopup__icon {
  font-size:2.5rem;
  margin-bottom:20px;
  display:block;
}

/* Title */
.lspopup__title {
  font-family:Verdana,sans-serif;
  font-size:1.1rem;
  font-weight:600;
  color:#E9D5C3;
  margin-bottom:14px;
  line-height:1.5;
}

/* Text */
.lspopup__text {
  color:rgba(255,255,255,0.75);
  font-size:0.88rem;
  line-height:1.7;
  margin-bottom:14px;
}

/* Highlight */
.lspopup__highlight {
  color:#E9D5C3;
  font-weight:600;
  font-size:0.88rem;
  margin-bottom:24px;
  line-height:1.6;
}

/* CTA Button */
.lspopup__btn {
  display:block;
  width:100%;
  padding:15px 24px;
  background:#E9D5C3;
  color:#1D1D1B;
  font-family:Verdana,sans-serif;
  font-size:0.85rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  text-align:center;
  border:none;
  border-radius:8px;
  cursor:pointer;
  transition:all 0.3s ease;
  text-decoration:none;
}
.lspopup__btn:hover {
  background:#C9A98C;
  transform:translateY(-2px);
  box-shadow:0 4px 16px rgba(0,0,0,0.3);
}

/* ===== POPUP 2 — COM IMAGEM DE FUNDO ===== */
.lspopup__box--image {
  position:relative;
  background-size:cover;
  background-position:center;
  overflow:hidden;
  max-width:600px;
  padding:0;
  min-height:400px;
}
.lspopup__box--image .lspopup__overlay {
  /* opacity controlada via JS pelo config */
  background:rgba(29,29,27,0.45);
  padding:48px 32px;
  width:100%;
  min-height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  box-sizing:border-box;
}
.lspopup__box--image .lspopup__title {
  font-size:1.4rem;
  color:#fff;
}
.lspopup__box--image .lspopup__text {
  color:rgba(255,255,255,0.85);
  font-size:0.95rem;
}

/* ===== POPUP 3 — HELLOBAR LATERAL ===== */
.lspopup-side {
  display:none;
  position:fixed;
  bottom:28px; left:28px;
  z-index:9997;
  max-width:320px;
  width:calc(100vw - 56px);
  animation:lspopupSlideIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.lspopup-side.active { display:block; }

@keyframes lspopupSlideIn {
  from { opacity:0; transform:translateX(-32px) scale(0.95); }
  to   { opacity:1; transform:translateX(0) scale(1); }
}

.lspopup-side__box {
  border-radius:16px;
  padding:30px 24px 20px;
  box-shadow:0 14px 52px rgba(0,0,0,0.24);
  position:relative;
}

/* Fechar */
.lspopup-side__close {
  position:absolute;
  top:10px; right:12px;
  width:28px; height:28px;
  font-size:22px;
  background:none; border:none;
  cursor:pointer;
  line-height:1;
  opacity:0.45;
  transition:opacity 0.2s;
}
.lspopup-side__close:hover { opacity:0.85; }

/* Título */
.lspopup-side__title {
  font-family:Verdana,'Open Sans',sans-serif;
  font-size:0.95rem;
  font-weight:700;
  line-height:1.5;
  margin:0 0 12px 0;
}

/* Subtítulo */
.lspopup-side__subtitle {
  font-size:0.78rem;
  line-height:1.55;
  opacity:0.7;
  margin:0 0 14px 0;
}

/* Disclaimer (acima do botão) */
.lspopup-side__disclaimer {
  font-size:0.63rem;
  opacity:0.55;
  line-height:1.55;
  margin:0 0 14px 0;
  text-align:center;
}

/* CTA */
.lspopup-side__btn {
  display:block;
  width:100%;
  padding:14px 16px;
  border-radius:8px;
  font-family:Verdana,'Open Sans',sans-serif;
  font-size:0.82rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.07em;
  text-align:center;
  border:none;
  cursor:pointer;
  margin-bottom:8px;
  transition:opacity 0.2s, transform 0.2s;
  text-decoration:none;
}
.lspopup-side__btn:hover { opacity:0.85; transform:translateY(-1px); }

/* Dismiss */
.lspopup-side__dismiss {
  display:block;
  width:100%;
  font-size:0.78rem;
  text-align:center;
  background:none; border:none;
  cursor:pointer;
  padding:6px;
  opacity:0.5;
  transition:opacity 0.2s;
}
.lspopup-side__dismiss:hover { opacity:0.8; }

/* ===== BOTÃO FLUTUANTE — CÍRCULO COM ÍCONE SVG ===== */
.lspopup-float-btn {
  position:fixed;
  left:20px; bottom:20px;
  display:none;
  align-items:center;
  justify-content:center;
  width:54px; height:54px;
  border-radius:50%;
  border:none;
  cursor:pointer;
  box-shadow:0 5px 22px rgba(0,0,0,0.28);
  z-index:9996;
  transition:transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
             box-shadow 0.2s;
  animation:lsFloatPop 0.45s cubic-bezier(0.34,1.56,0.64,1);
}
.lspopup-float-btn.active { display:flex; }

@keyframes lsFloatPop {
  from { opacity:0; transform:scale(0.4); }
  to   { opacity:1; transform:scale(1); }
}

.lspopup-float-btn:hover {
  transform:scale(1.12);
  box-shadow:0 8px 28px rgba(0,0,0,0.32);
}
.lspopup-float-btn svg { pointer-events:none; }

/* ===== RESPONSIVO ===== */
@media(max-width:768px) {
  .lspopup__box { padding:36px 20px; max-width:calc(100vw - 32px); }
  .lspopup__box--image .lspopup__overlay {
  position:absolute;
  inset:0; padding:36px 20px; }
  .lspopup__box--image {
  position:relative; max-width:calc(100vw - 32px); }
  .lspopup__title { font-size:1rem; }
  .lspopup__box--image .lspopup__title { font-size:1.2rem; }

  .lspopup-side { left:12px; bottom:12px; width:calc(100vw - 24px); max-width:none; }
}
/* Acessibilidade — visualmente oculto */
.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; }

/* SVG icons color fix */
.sd-pilar svg { color: #ffffff; }
