/* ==========================================================================
   Upstart Badge CSS - efeito líquido premium para fundo branco
========================================================================== */
.desenvolvedor-upstart {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: 0;
}

.upstart-badge {
  position: relative;
  overflow: hidden;
  background: #434343;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 20px 5px 16px;
  text-decoration: none;
  font-size: 0.85rem;
  max-width: fit-content;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 0 4px rgba(255, 255, 255, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.06);
}

.upstart-badge::before,
.upstart-badge::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 0;
  filter: blur(10px);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.6;
}

.upstart-icon,
.upstart-text {
  position: relative;
  z-index: 1;
}

.upstart-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.5s ease;
}

.upstart-text {
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.upstart-badge:hover .upstart-icon {
  transform: rotate(360deg) scale(1.05);
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.2));
}

.upstart-badge:hover .upstart-text {
  opacity: 0.8;
  transform: translateX(0);
}

.upstart-badge:hover .upstart-text.dark {
  opacity: 0.8;
}

/* ===== Lista de Contatos — layout base ===== */
.cs_contact_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cs_contact_list li {
  display: flex;
  align-items: center;
  gap: 12px;                     /* espaço ícone <-> texto */
  margin: 8px 0;
}

/* ===== Círculo elegante do ícone ===== */
.cs_contact_list .cs_contact_icon {
  --size: 36px;                  /* ajuste rápido do diâmetro */
  --icon: 18px;                  /* tamanho do svg */

  width: var(--size);
  height: var(--size);
  flex: 0 0 var(--size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  position: relative;

  /* Dark-friendly por padrão (fundo escuro) */
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;                   /* ícone branco */
}

.cs_contact_list .cs_contact_icon svg {
  width: var(--icon);
  height: var(--icon);
  display: block;
}

/* ===== Hover sutil no ícone ===== */
.cs_contact_list li:hover .cs_contact_icon {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}

/* ===== Variante para fundo claro ===== */
/* Aplique em um contêiner pai: .is-light .cs_contact_list ... */
.is-light .cs_contact_list .cs_contact_icon {
  background: rgba(10,33,92,0.06);         /* leve azul translúcido */
  border: 1px solid rgba(10,33,92,0.12);
  color: #0A215C;                           /* azul institucional no ícone */
}
.is-light .cs_contact_list a {
  color: #0A215C;
}

/* 1) Área da newsletter (bloco superior do footer) */
.cs_footer_top {
  padding-top: clamp(96px, 8vw, 128px);     /* antes: 127px */
  padding-bottom: clamp(48px, 5.5vw, 80px); /* antes: 70px */
}

/* 3) Barra de créditos + badge Upstart */
.cs_footer_bottom{
  padding: clamp(16px, 1.8vw, 28px) 0;      /* antes: 24px 0 */
}

/* ===== Kicker / Pílula acima do título ===== */
.cs_kicker{
  display:inline-grid;
  grid-auto-flow:column;
  align-items:center;
  gap:.75rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:14px;
  line-height:1;
  padding:.625rem .9rem;
  border-radius:999px;              /* pill */
  border:1px solid rgba(255,255,255,.28);
  color:#fff;
  position:relative;
  margin:0 0 12px 0;
  -webkit-backdrop-filter:saturate(1.1) blur(6px);
  backdrop-filter:saturate(1.1) blur(6px);
  background:rgba(0,0,0,.18);      /* P&B com leve translucidez */
}

/* Quadradinho acento (marca) no fim da pílula */
.cs_kicker::after{
  content:"";
  width:6.7px; height:6.7px;
  border-radius:2px;                /* levemente macio */
  background:#ed1c24;               /* ponto vermelho da logo */
  display:inline-block;
}

/* Variante clara/escura se um dia usar hero claro */
.cs_kicker--light{
  border-color:rgba(255,255,255,.28);
  color:#fff;
}
.cs_kicker--dark{
  border-color:rgba(0,0,0,.2);
  color:#111;
  background:rgba(255,255,255,.8);
}

/* Responsividade suave */
@media (max-width: 991px){
  .cs_kicker{ font-size:13px; padding:.55rem .8rem; margin-bottom:10px; }
  .cs_kicker::after{ width:7px; height:7px; }
}
@media (max-width: 575px){
  .cs_kicker{ font-size:12px; padding:.5rem .7rem; gap:.6rem; }
  .cs_kicker::after{ width:6px; height:6px; }
}

/* =========================================================
   GRANOR — Subtítulo (refino)
   Aplica direto em .cs_section_subtitle (sem mudar o HTML)
   ========================================================= */
:root{
  --accent-red: #ed1c24;
  --ink-80: rgba(255,255,255,.82);   /* ajuste para dark theme */
  --line-20: rgba(255,255,255,.20);
}

/* base */
.cs_section_subtitle{
  display:inline-grid;
  grid-auto-flow:column;
  align-items:center;
  gap:.75rem;
  padding:.2rem 0;
  color:var(--ink-80);
  font-weight:700;
  font-size:13px;
  line-height:1;
  letter-spacing:.12em;
  text-transform:uppercase;
  white-space:nowrap;
  position:relative;
}

/* quadradinho (ponto da logo) */
.cs_section_subtitle::before{
  content:"";
  width:8px; height:8px;
  border-radius:0px;
  background:var(--accent-red);
  box-shadow:0 0 0 1px rgba(255,255,255,.08) inset;
}

/* traço fino que “leva” ao título */
.cs_section_subtitle::after{
  content:"";
  height:1px; width:72px;
  background:linear-gradient(to right, var(--line-20), transparent 80%);
  transform:translateY(1px);
}

/* Espaçamento padrão abaixo (mantém seu cs_mb_6 se existir) */
.cs_section_subtitle + *{
  margin-top:10px; /* toque sutil entre subtítulo e H1/lead */
}

/* Variante para fundo claro (se usar em seções light) */
.theme-light .cs_section_subtitle{
  color:rgba(0,0,0,.72);
}
.theme-light .cs_section_subtitle::after{
  background:linear-gradient(to right, rgba(0,0,0,.18), transparent 80%);
}
.theme-light .cs_section_subtitle::before{
  box-shadow:0 0 0 1px rgba(0,0,0,.04) inset;
}

/* Modificadores opcionais (sem trocar HTML, só adicionar classe) */
.cs_section_subtitle.is-quiet::before{ opacity:.65; }
.cs_section_subtitle.is-long::after{ width:112px; }

/* Responsivo */
@media (max-width: 991px){
  .cs_section_subtitle{ font-size:12px; gap:.6rem; }
  .cs_section_subtitle::before{ width:7px; height:7px; }
  .cs_section_subtitle::after{ width:60px; }
}
@media (max-width: 575px){
  .cs_section_subtitle{ font-size:11px; letter-spacing:.10em; }
  .cs_section_subtitle::after{ width:48px; }
}

/* =========================================================
   GRANOR — 4 pilares. About Section
   ========================================================= */

:root{
  --accent-red:#ed1c24;
  --ink-90:rgba(255,255,255,.90);
  --ink-70:rgba(255,255,255,.72);
  --card-line:rgba(255,255,255,.08);
  --card-bg:rgba(255,255,255,.03);
}

/* Grid 2 colunas responsivo */
.cs_pillars{
  list-style:none; padding:0;
  display:grid; gap:14px 22px;
}
.cs_grid_2{ grid-template-columns:repeat(2,minmax(0,1fr)); }
@media (max-width: 900px){
  .cs_grid_2{ grid-template-columns:1fr; }
}

/* Item cartão sutil, alinhado ao dark premium */
.cs_pillars > li{
  position:relative;
  border:1px solid var(--card-line);
  background:var(--card-bg);
  border-radius:14px;
  padding:14px 16px 14px 44px;  /* espaço para o marcador */
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}
.cs_pillars > li::before{
  /* marcador com o quadradinho vermelho da marca */
  content:"";
  position:absolute; left:16px; top:18px;
  width:10px; height:10px; border-radius:3px;
  background:var(--accent-red);
  box-shadow:0 0 0 1px rgba(0,0,0,.2) inset, 0 0 8px rgba(237,28,36,.35);
}
.cs_pillars > li:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.14);
  background:rgba(255,255,255,.045);
}

/* Tipografia */
.cs_pillars strong{
  display:block;
  color:var(--ink-90);
  font-weight:800;
  font-size:16px;
  letter-spacing:.01em;
  line-height:1.25;
}
.cs_pillars span{
  display:block;
  margin-top:2px;
  color:var(--ink-70);
  font-weight:500;
  font-size:14px;
  line-height:1.45;
}

/* Variante compacta — somente títulos */
.cs_pillars.is-compact span{ display:none; }
.cs_pillars.is-compact > li{ padding:12px 14px 12px 40px; }
.cs_pillars.is-compact strong{ font-size:15px; }

/* Variante light (se usar em seção clara) */
.theme-light .cs_pillars > li{
  border-color:rgba(0,0,0,.08);
  background:rgba(0,0,0,.02);
}
.theme-light .cs_pillars > li:hover{
  border-color:rgba(0,0,0,.12);
  background:rgba(0,0,0,.035);
}
.theme-light .cs_pillars strong{ color:#182026; }
.theme-light .cs_pillars span{ color:rgba(0,0,0,.7); }

/* =========================================================
   GRANOR — 4 pilares, variacão 2. About Section
   ========================================================= */
/* Anel neutro (estado base), preenche vermelho no hover */
.cs_pillars--ring > li::before{
  background:transparent;
  border:2px solid rgba(255,255,255,.35);
  width:11px; height:11px; border-radius:50%;
  box-shadow:none; left:15px; top:17px;
}
.cs_pillars--ring > li:hover::before{
  border-color:#ed1c24;
  background:#ed1c24;
}
/* =========================================================
   GRANOR • Essência — CTAs flutuantes (escopo isolado)
   Adicione .granor-essencia na section principal
   ========================================================= */
.granor-essencia{
  --g-glass-bg: rgba(255,255,255,.06);
  --g-glass-bd: rgba(255,255,255,.14);
  --g-glass-bd-2: rgba(255,255,255,.10);
  --g-ink-hi: rgba(255,255,255,.92);
  --g-ink-lo: rgba(255,255,255,.72);
  --g-accent: #ed1c24;
}

/* Cartão “vidro” unificado (aplica ao vídeo e ao link de empreendimentos) */
.granor-essencia .cs_video_block.cs_style_2,
.granor-essencia .cs_offerbox{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 18px 14px 16px;
  border-radius:16px;
  background:var(--g-glass-bg);
  border:1px solid var(--g-glass-bd);
  -webkit-backdrop-filter: blur(8px) saturate(1.03);
  backdrop-filter: blur(8px) saturate(1.03);
  box-shadow:0 8px 30px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.06);
  color:var(--g-ink-hi);
  text-decoration:none;
  transform:translateZ(0);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  /* neutraliza o motion padrão nesta seção */
  animation:none;
}

/* Ícones circulares (player e casa) */
.granor-essencia .cs_player_btn.cs_style_2,
.granor-essencia .cs_offerbox .cs_offerbox_icon{
  width:46px; height:46px; min-width:46px;
  display:grid; place-items:center;
  border-radius:50%;
  background:radial-gradient(100% 100% at 50% 50%, rgba(255,255,255,.16), rgba(255,255,255,.04));
  border:1px solid var(--g-glass-bd-2);
  color:#fff;
  position:relative; isolation:isolate;
  transition:transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

/* Assinatura Granor: micro ponto vermelho */
.granor-essencia .cs_player_btn.cs_style_2::after,
.granor-essencia .cs_offerbox .cs_offerbox_icon::after{
  content:""; position:absolute; right:-6px; top:-6px;
  width:8px; height:8px; border-radius:2px;
  background:var(--g-accent);
  box-shadow:0 0 0 1px rgba(0,0,0,.25);
}

/* Conteúdo textual do cartão (remove fundo/branco do tema original) */
.granor-essencia .cs_video_block.cs_style_2 .cs_video_info,
.granor-essencia .cs_offerbox .cs_video_info{
  background:transparent;
  padding:0;
  border:none;
  box-shadow:none;
}
.granor-essencia .cs_video_block.cs_style_2 .cs_video_info h3,
.granor-essencia .cs_offerbox .cs_video_info h3{ color:var(--g-ink-hi); letter-spacing:.01em; }
.granor-essencia .cs_video_block.cs_style_2 .cs_video_info p,
.granor-essencia .cs_offerbox .cs_video_info p{ color:var(--g-ink-lo); }

/* Interações */
.granor-essencia .cs_video_block.cs_style_2:hover,
.granor-essencia .cs_offerbox:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 40px rgba(0,0,0,.32);
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.075);
}
.granor-essencia .cs_video_block.cs_style_2:hover .cs_player_btn.cs_style_2,
.granor-essencia .cs_offerbox:hover .cs_offerbox_icon{
  border-color:rgba(255,255,255,.22);
}
.granor-essencia .cs_video_block.cs_style_2:hover .cs_player_btn.cs_style_2::before,
.granor-essencia .cs_offerbox:hover .cs_offerbox_icon::before{
  content:""; position:absolute; inset:0; border-radius:inherit;
  border:2px solid rgba(255,255,255,.18); transform:scale(1.12);
}

/* Responsividade */
@media (max-width:1100px){
  .granor-essencia .cs_video_block.cs_style_2,
  .granor-essencia .cs_offerbox{
    padding:12px 14px; gap:12px; border-radius:14px;
  }
  .granor-essencia .cs_player_btn.cs_style_2,
  .granor-essencia .cs_offerbox .cs_offerbox_icon{
    width:42px; height:42px; min-width:42px;
  }
  .granor-essencia .cs_video_block.cs_style_2 .cs_video_info h3,
  .granor-essencia .cs_offerbox .cs_video_info h3{ font-size:18px; }
  .granor-essencia .cs_video_block.cs_style_2 .cs_video_info p,
  .granor-essencia .cs_offerbox .cs_video_info p{ font-size:13px; }
}
@media (max-width:640px){
  .granor-essencia .cs_video_block.cs_style_2,
  .granor-essencia .cs_offerbox{
    padding:10px 12px; gap:10px;
  }
  .granor-essencia .cs_player_btn.cs_style_2,
  .granor-essencia .cs_offerbox .cs_offerbox_icon{
    width:38px; height:38px; min-width:38px;
  }
}
.cs_footer_widget .cs_logo img {
  max-width: 135px;
}

/* ===== Granor • Counters (refino rápido) ===== */

/* 1) Uniformidade e não-quebra do número */
.cs_counter_number{
  white-space: nowrap;            /* evita quebrar "R$600 Mi+" */
  line-height: .92;               /* altura menor = blocos mais baixos e iguais */
  letter-spacing: -0.01em;        /* leve ajuste tipográfico p/ “peso” premium */
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
}
.cs_counter_number .odometer{
  display:inline-block;           /* garante alinhamento horizontal com prefixo/sufixo */
}

/* 2) Ícones Lucide harmonizados no tema escuro */
.cs_counter_icon [data-lucide] i{
  width:44px !important;
  height:44px !important;
  stroke-width:1.8 !important;
  color:#fff;
  opacity: .9;
  transition: transform .2s ease, opacity .2s ease;
}
.cs_counter:hover .cs_counter_icon i{
  transform: translateY(-2px);
  opacity: 1;
}

/* 3) Micro-refinos de leitura */
.cs_counter_title{
  max-width: 34ch;                /* largura ideal p/ duas linhas limpas */
  margin-inline: auto;
  opacity:.92;
}

/* 4) Pequena responsividade (mantém impacto sem quebrar) */
@media (max-width: 575.98px){
  .cs_counter_number{ font-size: clamp(34px, 10vw, 46px); }
  .cs_counter_icon i{ width: 40px; height: 40px; }
}

/* 5) Hover sutil premium (opcional) */
.cs_counter{
  transition: transform .18s ease, filter .18s ease;
}
.cs_counter:hover{
  transform: translateY(-2px);
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.25));
}
/* BLOCO DO NÚMERO — trava baseline e centraliza */
.cs_counter.cs_style_1 .cs_counter_number{
  display:flex;
  justify-content:center;
  align-items:flex-end; /* baseline visual */
  line-height:1;        /* evita variação por fonte */
  min-height: 1em;      /* mesma altura de linha para todos */
}

/* COMPOSIÇÃO: prefixo + valor (odometer) + sufixo alinhados na mesma base */
.cs_counter.cs_style_1 .cs_counter_number .num{
  display:inline-flex;
  align-items:baseline; /* todos compartilham a mesma linha-base */
  gap:.16em;
  white-space:nowrap;
}

/* afixos menores, sem “subir/descer” com transform (isso desloca visualmente) */
.cs_counter.cs_style_1 .cs_counter_number .prefix,
.cs_counter.cs_style_1 .cs_counter_number .suffix{
  font-size: .56em;
  line-height:1;        /* garante mesma base */
  position: static;     /* cancela qualquer ajuste anterior */
  transform:none !important;
  letter-spacing:.02em;
}

/* odômetro: largura fixa por dígito e baseline consistente */
.cs_counter.cs_style_1 .odometer,
.cs_counter.cs_style_1 .odometer *{
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  letter-spacing:0;
  vertical-align:baseline;
}
/* Placeholder branco (todas as engines) */
.cs_newsletter_form.cs_style_2 input[type="email"]::placeholder { color:#fff !important; opacity:1; }
.cs_newsletter_form.cs_style_2 input[type="email"]::-webkit-input-placeholder { color:#fff !important; }
.cs_newsletter_form.cs_style_2 input[type="email"]::-moz-placeholder { color:#fff !important; }
.cs_newsletter_form.cs_style_2 input[type="email"]:-ms-input-placeholder { color:#fff !important; }
.cs_newsletter_form.cs_style_2 input[type="email"]::-ms-input-placeholder { color:#fff !important; }

/* Cor do texto digitado e do cursor (se quiser branco também) */
.cs_newsletter_form.cs_style_2 input[type="email"]{
  color:#fff;
  caret-color:#fff;
}

/* Autofill (Chrome/Safari) também fica branco */
.cs_newsletter_form.cs_style_2 input[type="email"]:-webkit-autofill,
.cs_newsletter_form.cs_style_2 input[type="email"]:-webkit-autofill:hover,
.cs_newsletter_form.cs_style_2 input[type="email"]:-webkit-autofill:focus{
  -webkit-text-fill-color:#fff !important;
  transition: background-color 9999s ease-out 0s;
}
/* =========================================================
   GRANOR — Aviso de facilidades (premium + fix VSCode)
   ========================================================= */
:root{
  --fa-bg-1: rgba(255,255,255,.08);
  --fa-bg-2: rgba(255,255,255,.03);
  --fa-bd:   rgba(255,255,255,.18);
  --fa-ink:  #e9eef2;
  --fa-shadow: 0 8px 28px rgba(0,0,0,.28);
}

/* Container */
p.facilities-advise{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 18px;
  border-radius:14px;
  color:var(--fa-ink);
  background:linear-gradient(180deg, var(--fa-bg-1), var(--fa-bg-2));
  border:1px solid var(--fa-bd);
  box-shadow:var(--fa-shadow);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  text-shadow:0 1px 1px rgba(0,0,0,.35);
  letter-spacing:.2px;
  font-size:14px; line-height:1.2;
  width:max-content; max-width:100%;
  margin:20px auto 0; /* centralizado */
  line-height: 1.3;
}

/* Ícone “info” (máscara inline 100% codificada – compatível com VS Code) */
p.facilities-advise::before{
  content:"";
  width:18px; height:18px; flex:0 0 18px;
  background: currentColor; opacity:.92;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 22a10 10 0 1 1 0-20 10 10 0 0 1 0 20Zm0-13.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Zm-1.4 8.25h2.3v-6h-2.3v6Z'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 22a10 10 0 1 1 0-20 10 10 0 0 1 0 20Zm0-13.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Zm-1.4 8.25h2.3v-6h-2.3v6Z'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* Hover / foco */
p.facilities-advise:hover{
  border-color: rgba(255,255,255,.28);
  transform: translateY(-1px);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 32px rgba(0,0,0,.34);
}

/* Acessibilidade: modo com animações reduzidas */
@media (prefers-reduced-motion: reduce){
  p.facilities-advise{ transition:none; }
}

/* ---------- Fallback sem mask (compatibilidade extrema) ---------- */
@supports not (-webkit-mask: url("")) {
  p.facilities-advise::before{
    content:"i";
    display:inline-grid; place-items:center;
    width:18px; height:18px; border-radius:50%;
    background: currentColor; color:#1a1a1a;
    font:700 12px/1 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  }
}

/* mobile breathing room for the pill */
@media (max-width: 576px){
  p.facilities-advise{
    margin-left: clamp(12px, 4vw, 20px);
    margin-right: clamp(12px, 4vw, 20px);
  }
}

/* ========= Granor — Hero Overlay (neutro, elegante) ========= */

/* BG posicionado corretamente */
.cs_hero .cs_hero_thumbnail{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  z-index:0;
}

/* Overlay neutro: degradê vertical + vinheta sutil nas bordas */
.cs_hero .cs_hero_thumbnail::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    /* vinheta suave para dar profundidade nas bordas */
    radial-gradient(120% 120% at 50% 60%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.22) 100%),
    /* degradê vertical que reforça a área do texto */
    linear-gradient(180deg, rgba(0,0,0,0.46) 0%, rgba(29,29,29,0.70) 48%, rgba(29,29,29,0.92) 100%);
  mix-blend-mode:normal;
}

/* Legibilidade do texto (sem “pintar” demais) */
.cs_hero .cs_hero_title,
.cs_hero .cs_hero_decs,
.cs_hero .cs_kicker{
  text-shadow:0 2px 22px rgba(0,0,0,.45), 0 1px 2px rgba(0,0,0,.25);
}

/* Garante conteúdo acima do overlay */
.cs_hero .cs_hero_content,
.cs_hero .cs_text_logo_wrapper{ position:relative; z-index:1; }

/* ---------- Intensidade por slide (opcional) ---------- */
/* Slide 1 (VERTI154): médio-forte */
.cs_slider_wrapper .cs_slide:nth-child(1) .cs_hero_thumbnail::after{
  background:
    radial-gradient(120% 120% at 50% 60%, rgba(0,0,0,0) 38%, rgba(0,0,0,0.26) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.52) 0%, rgba(29,29,29,0.75) 48%, rgba(29,29,29,0.94) 100%);
}

/* Slide 2 (Jardim dos Ipês): médio */
.cs_slider_wrapper .cs_slide:nth-child(2) .cs_hero_thumbnail::after{
  background:
    radial-gradient(120% 120% at 50% 60%, rgba(0,0,0,0) 42%, rgba(0,0,0,0.20) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(29,29,29,0.68) 48%, rgba(29,29,29,0.90) 100%);
}

/* Slide 3 (Palazzo): forte (fotos claras) */
.cs_slider_wrapper .cs_slide:nth-child(3) .cs_hero_thumbnail::after{
  background:
    radial-gradient(120% 120% at 50% 60%, rgba(0,0,0,0) 36%, rgba(0,0,0,0.30) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.58) 0%, rgba(29,29,29,0.80) 48%, rgba(29,29,29,0.96) 100%);
}

/* Paginação fica acima */
.cs_pagination{ position:relative; z-index:2; }

/* ---------- Ajustes responsivos (reforça contraste em mobile) ---------- */
@media (max-width: 576px){
  .cs_hero .cs_hero_thumbnail::after{
    background:
      radial-gradient(120% 120% at 50% 60%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.26) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.58) 0%, rgba(29,29,29,0.82) 48%, rgba(29,29,29,0.96) 100%);
  }
}
/* ========= Granor — Facilities Overlay (leve, elegante) ========= */

/* Garante posicionamento do BG das facilities */
.cs_iconbox .cs_iconbox_bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  z-index:0;
}

/* Overlay suave: vinheta discreta + degradê vertical leve */
.cs_iconbox .cs_iconbox_bg::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(120% 120% at 50% 60%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.14) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(29,29,29,0.18) 50%, rgba(29,29,29,0.28) 100%);
  mix-blend-mode:normal;
  transition:opacity .22s ease;
  opacity: .92; /* contraste global bem moderado */
}

/* Conteúdo acima do overlay */
.cs_iconbox .cs_iconbox_info,
.cs_iconbox .cs_iconbox_icon{
  position:relative; z-index:1;
}

/* Leve reforço de legibilidade no título/sub */
.cs_iconbox .cs_iconbox_title{ text-shadow:0 1px 10px rgba(0,0,0,.28); }
.cs_iconbox .cs_gray_color{ text-shadow:0 1px 6px rgba(0,0,0,.20); }

/* Hover: sutilmente mais contraste (sem “apagar” a foto) */
.cs_iconbox:hover .cs_iconbox_bg::after{
  opacity: 1;
}

/* Opcional: intensidade por item (se alguma imagem for muito clara) */
.cs_iconbox:nth-child(1) .cs_iconbox_bg::after{ /* Segurança */
  background:
    radial-gradient(120% 120% at 50% 60%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.16) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.14) 0%, rgba(29,29,29,0.22) 50%, rgba(29,29,29,0.32) 100%);
}
.cs_iconbox:nth-child(3) .cs_iconbox_bg::after{ /* Espaço Gourmet (geralmente claro) */
  background:
    radial-gradient(120% 120% at 50% 60%, rgba(0,0,0,0) 48%, rgba(0,0,0,0.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.16) 0%, rgba(29,29,29,0.24) 50%, rgba(29,29,29,0.34) 100%);
}

/* Icon badge: pequena sombra para não sumir em fundos claros */
.cs_iconbox .cs_iconbox_icon{
  box-shadow: 0 6px 24px rgba(0,0,0,.18), 0 1px 0 rgba(255,255,255,.06) inset;
}

/* Cartão: micro elevação no hover (premium, sutil) */
.cs_iconbox.cs_style_3{
  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease;
  box-shadow: 0 6px 22px rgba(0,0,0,.10);
}
.cs_iconbox.cs_style_3:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
}

/* Nota de disponibilidade: centralizada e discreta */
.facilities-advise{
  width:100%; text-align:center; margin-top:18px;
  font-size:.95rem; color:#bfc6c8;
}

/* Responsivo: reforço mínimo em telas menores (fotos ocupam mais área) */
@media (max-width: 576px){
  .cs_iconbox .cs_iconbox_bg::after{
    background:
      radial-gradient(120% 120% at 50% 60%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.18) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.16) 0%, rgba(29,29,29,0.24) 50%, rgba(29,29,29,0.36) 100%);
  }
}
