.elementor-kit-7{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Verdana";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Verdana";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Verdana";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Verdana";--e-global-typography-accent-font-weight:500;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* 🚫 Bloqueia o scroll lateral em todo o site */
html, body {
  width: 100% !important;
  overflow-x: hidden !important;
  position: relative !important;
}

/* 🔒 Corrige seções esticadas (Elementor) */
.elementor-section.elementor-section-stretched {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important;
  position: relative !important;
  transform: none !important;
}

/* 🧩 Garante que colunas, containers e widgets fiquem dentro da tela */
.elementor, .elementor-section, .elementor-container, .elementor-column, .elementor-widget-wrap {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

/* 📸 Corrige imagens, vídeos e embeds que “vazam” pro lado */
img, iframe, video {
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
}

/* 📱 Evita rolagem lateral em telas menores (mobile e tablet) */
@media (max-width: 1024px) {
  html, body {
    overflow-x: hidden !important;
  }
  .elementor-section {
    width: 100% !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* 🧱 Remove qualquer deslocamento forçado */
*[style*="width: 100vw"] {
  width: 100% !important;
}
*[style*="left: -"] {
  left: 0 !important;
}




/* GRID – 3 colunas no desktop, 2 centralizados na linha de baixo */
.grid.unidades {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: stretch;
  max-width: 1050px;           /* controla a largura para centralizar */
  margin: 0 auto;              /* centraliza o grid */
}

/* Centraliza a 2ª linha quando há 5 cartões: coloca o 4º e 5º nas colunas 2 e 3 */
.grid.unidades.unidades--52 > .unidade:nth-child(4) { grid-column: 2; }
.grid.unidades.unidades--52 > .unidade:nth-child(5) { grid-column: 3; }

/* Cartão */
.unidade {
  background: rgba(255,255,255,0.96);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  text-align: center;
  max-width: 330px;
}
.unidade:hover { transform: translateY(-6px); box-shadow: 0 10px 22px rgba(0,0,0,0.10); }

.unidade img { width: 100%; height: 200px; object-fit: cover; }
.unidade .info { padding: 20px; }
.unidade h4 { font-size: 1.12em; color: #57067e; margin-bottom: 8px; }
.unidade p  { font-size: .95em; margin-bottom: 16px; }

/* Botão com hover branco */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px; padding:10px 18px; border-radius:999px;
  border:2px solid transparent; font-weight:bold; text-decoration:none;
  background: linear-gradient(135deg,#57067e,#9561ce); color:#fff;
  transition: all .25s ease;
}
.btn:hover{ background:#fff; color:#57067e; border-color:#57067e; }

/* Responsivo */
@media (max-width: 1024px){
  .grid.unidades{ grid-template-columns: repeat(2, minmax(260px, 1fr)); max-width: 760px; }
  /* Remove posicionamentos manuais quando virar 2 colunas */
  .grid.unidades.unidades--52 > .unidade:nth-child(4),
  .grid.unidades.unidades--52 > .unidade:nth-child(5){ grid-column: auto; }
}
@media (max-width: 560px){
  .grid.unidades{ grid-template-columns: 1fr; max-width: 420px; }
}/* End custom CSS */