/* =========================================================
   VISTA RESIDENCE — Landing Page Premium
   Paleta e fontes fiéis ao site original (Allta Urbanismo)
   ========================================================= */

/* ---------- Fontes ---------- */
@font-face {
  font-family: "Runalto";
  font-weight: 400;
  font-display: swap;
  src: url("https://alltaurbanismo.com.br/wp-content/uploads/2025/08/Runalto.woff") format("woff");
}

:root {
  --green-darkest: #002d26;
  --green-dark: #012d26;
  --green-mid: #114f3a;
  --green-accent: #2c4a24;
  --green-soft: #a1ba9b;
  --cream: #f6edda;
  --cream-light: #faf6ed;
  --cream-text: #f5edda;
  --sand: #ebdfc5;
  --ink: #0d130f;

  --display: "Runalto", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 18px 50px -20px rgba(0, 45, 38, 0.45);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream-light);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* Tipografia de seção */
.display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.5px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.8;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(38px, 5.5vw, 63px);
  line-height: 1.05;
  margin: 12px 0 0;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  padding: 15px 38px;
  border-radius: 90px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
    color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: var(--green-darkest);
  color: var(--cream-light);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--green-accent); }

.btn-light {
  background: var(--cream);
  color: var(--green-dark);
}
.btn-light:hover { background: #fff; }

.btn-outline {
  border-color: currentColor;
  background: transparent;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }

.btn-wa {
  background: transparent;
  color: var(--cream-text);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-wa:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.5); }
.store .btn-wa {
  background: var(--green-darkest);
  color: var(--cream-text);
  border: 1px solid transparent;
}
.store .btn-wa:hover { background: var(--green-accent); }

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-darkest);
  color: var(--cream-text);
  font-size: 26px;
  box-shadow: var(--shadow-soft);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.wa-float:hover { transform: scale(1.1); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 130;
  padding: 22px 0;
  transition: background 0.6s var(--ease), padding 0.6s var(--ease),
    box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: linear-gradient(180deg, rgba(0, 38, 32, 0.97), rgba(0, 45, 38, 0.86));
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  padding: 13px 0;
  border-bottom: 1px solid rgba(161, 186, 155, 0.16);
  box-shadow: 0 16px 44px -24px rgba(0, 0, 0, 0.7);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-logo {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.site-header.scrolled .header-logo {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.header-logo img { width: 140px; filter: brightness(0) invert(1); }

/* Ações fixas na barra: CTA + hub */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* CTA "Fale conosco" — sempre visível na barra */
.nav__cta {
  color: var(--cream-text);
  border: 1px solid rgba(161, 186, 155, 0.5);
  border-radius: 90px;
  padding: 11px 28px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
    color 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav__cta:hover {
  background: var(--green-soft);
  border-color: var(--green-soft);
  color: var(--green-darkest);
}
/* Esconde o CTA da barra enquanto o hub está aberto */
body.nav-open .header-actions .nav__cta {
  opacity: 0;
  pointer-events: none;
}

/* Botão hub (hambúrguer) — visível em todas as larguras */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 0;
  background: none;
  border: 1px solid rgba(161, 186, 155, 0.5);
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav-toggle:hover { border-color: var(--green-soft); background: rgba(161, 186, 155, 0.1); }
.nav-toggle span {
  width: 20px;
  height: 1.5px;
  background: var(--cream-text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle.open { border-color: var(--green-soft); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Hub drawer — painel lateral com os links das seções */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  height: 100dvh;
  width: min(82vw, 360px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 80px 56px;
  background: linear-gradient(180deg, var(--green-darkest), #002820);
  box-shadow: -30px 0 60px -30px rgba(0, 0, 0, 0.7);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
  z-index: 120;
}
.nav.open { transform: none; }
.nav a {
  position: relative;
  align-self: flex-start;
  color: var(--cream-text);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2px;
  opacity: 0.85;
  padding: 14px 0;
  transition: opacity 0.35s var(--ease), color 0.35s var(--ease), padding-left 0.35s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 26px;
  height: 1.5px;
  background: var(--green-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav a:hover { opacity: 1; color: #fff; padding-left: 10px; }
.nav a:hover::after { transform: scaleX(1); }

/* Overlay escurece a página quando o hub está aberto */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 20, 16, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  z-index: 110;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }
body.nav-open { overflow: hidden; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--cream-text);
  overflow: hidden;
  padding: 0 20px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero__video--active {
  opacity: 1;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 45, 38, 0.55) 0%,
    rgba(0, 45, 38, 0.3) 40%,
    rgba(0, 45, 38, 0.65) 100%
  );
  z-index: -1;
}
.hero__logo {
  width: min(440px, 80vw);
  margin: 0 auto 28px;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--cream-text);
  opacity: 0.7;
  transition: opacity 0.4s var(--ease);
}
.hero__scroll:hover { opacity: 1; }
.hero__scroll i {
  font-size: 18px;
  animation: scrollArrow 2s ease-in-out infinite;
}
@keyframes scrollArrow {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* =========================================================
   CONCEITO
   ========================================================= */
.conceito {
  position: relative;
  background: var(--green-darkest);
  color: var(--cream-text);
  padding: clamp(80px, 10vw, 130px) 0;
  overflow: hidden;
}
.conceito__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.35) saturate(0.4);
}
.conceito::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 45, 38, 0.5) 0%,
    rgba(0, 45, 38, 0.3) 50%,
    rgba(0, 45, 38, 0.6) 100%
  );
  z-index: 0;
}
.conceito__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  background: rgba(246, 237, 218, 0.92);
  backdrop-filter: blur(4px);
  border-radius: 24px;
  padding: clamp(36px, 4vw, 56px);
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.3);
}
.conceito__text h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.1;
  margin: 0 0 20px;
  color: var(--green-darkest);
}
.conceito__text p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.85;
  margin: 0;
  color: var(--ink);
}
.conceito__img {
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
}
.conceito__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   NÚMEROS
   ========================================================= */
.numbers {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--cream);
}
.numbers__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}
.numbers__sub {
  margin-top: 16px;
  font-size: 18px;
  opacity: 0.8;
}
.numbers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.numbers__photo {
  border-radius: 20px;
  overflow: hidden;
}
.numbers__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.numbers__features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.feature img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}
.feature p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Stat cards */
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 48px;
}
.stat {
  flex: 1 1 160px;
  background: var(--green-darkest);
  color: var(--cream-text);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat:hover { transform: translateY(-4px); }
.stat__num {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1;
}
.stat__label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-top: 8px;
  opacity: 0.85;
}

/* =========================================================
   IMPLANTAÇÃO
   ========================================================= */
.implantacao {
  background: var(--green-darkest);
  color: var(--cream-text);
  padding: clamp(80px, 10vw, 130px) 0;
}
.implantacao__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}
.implantacao__head p {
  margin-top: 16px;
  font-size: 18px;
  opacity: 0.8;
}
.implantacao__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.amenities {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.amenities__hint {
  display: none; /* só aparece no mobile (touch) */
  font-size: 13px;
  opacity: 0.7;
  margin: 0 0 6px;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.amenity:hover,
.amenity.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream-text);
}
.dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--cream-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.amenity:hover .dot,
.amenity.active .dot {
  background: var(--green-soft);
  color: var(--green-darkest);
  transform: scale(1.15);
}
.masterplan {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.masterplan img {
  width: 100%;
  display: block;
}
.masterplan__hotspots {
  position: absolute;
  inset: 0;
}
.hotspot {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.4s var(--ease);
  z-index: 2;
}
.hotspot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0);
  transition: all 0.4s var(--ease);
}
.hotspot.active,
.hotspot:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: #fff;
  transform: translate(-50%, -50%) scale(1.4);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.2);
}
.hotspot.active::after,
.hotspot:hover::after {
  border-color: rgba(255, 255, 255, 0.4);
  animation: hotspotPulse 1.5s ease-in-out infinite;
}
@keyframes hotspotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.8); opacity: 0; }
}

/* =========================================================
   ÁREA DE LAZER
   ========================================================= */
.lazer {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(80px, 10vw, 130px) 0;
}
.lazer__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}
.lazer__head p {
  margin-top: 16px;
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.7;
}

/* Carousel */
.carousel {
  position: relative;
}
.carousel__viewport {
  overflow: hidden;
  border-radius: 20px;
}
.carousel__track {
  display: flex;
  gap: 20px;
  transition: none;
}
/* Carrossel manual (obras): desliza suave ao clicar nas setas */
[data-autoscroll="false"] .carousel__track {
  transition: transform 0.6s var(--ease);
}
[data-autoscroll="false"] .carousel__track.is-dragging {
  transition: none;
}
.slide {
  width: 520px;
  flex: 0 0 520px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.slide img,
.slide video {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.slide__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: var(--cream-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.carousel__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.carousel__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--cream-text);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.carousel__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}
.carousel--on-dark .carousel__btn {
  border-color: rgba(255, 255, 255, 0.3);
}
.lazer .carousel__btn {
  border-color: rgba(0, 45, 38, 0.25);
  color: var(--green-darkest);
}
.lazer .carousel__btn:hover {
  background: rgba(0, 45, 38, 0.08);
  border-color: rgba(0, 45, 38, 0.5);
}

/* =========================================================
   OBRAS
   ========================================================= */
.obras {
  background: var(--green-darkest);
  color: var(--cream-text);
  padding: clamp(80px, 10vw, 130px) 0;
}
.obras__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}
.obras__head p {
  margin-top: 16px;
  font-size: 18px;
  opacity: 0.8;
}

/* Progress chart */
.progress-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}
.ring {
  flex-shrink: 0;
  width: 260px;
  height: 260px;
  position: relative;
}
.ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ring__bg {
  fill: none;
  stroke: rgba(161, 186, 155, 0.2);
  stroke-width: 8;
}
.ring__fg {
  fill: none;
  stroke: var(--green-soft);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.8s var(--ease);
}
.ring__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ring__pct {
  font-family: var(--display);
  font-size: 48px;
  line-height: 1;
  color: var(--cream-text);
}
.ring__txt {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-top: 4px;
  color: var(--cream-text);
}
.bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bar__top {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--cream-text);
}
.bar__value {
  font-weight: 600;
  color: var(--cream-text);
}
.bar__rail {
  height: 10px;
  border-radius: 10px;
  background: rgba(161, 186, 155, 0.15);
  overflow: hidden;
}
.bar__fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-soft));
  width: 0;
  transition: width 1.4s var(--ease);
}
.obras__update {
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
  margin-top: 24px;
  color: var(--cream-text);
}

/* =========================================================
   NOTÍCIAS
   ========================================================= */
.news {
  background: var(--cream-light);
  padding: clamp(80px, 10vw, 130px) 0;
}
.news__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
}
.news__sub {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.75;
  margin: 12px 0 0;
}
/* Filtros por categoria */
.news__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 44px;
}
.news-chip {
  background: transparent;
  border: 1px solid rgba(0, 45, 38, 0.2);
  color: var(--green-darkest);
  border-radius: 90px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
    border-color 0.35s var(--ease), transform 0.2s var(--ease);
}
.news-chip:hover { border-color: var(--green-darkest); transform: translateY(-1px); }
.news-chip.is-active {
  background: var(--green-darkest);
  border-color: var(--green-darkest);
  color: var(--cream-text);
}
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
/* Modo carrossel (filtro "Todos") */
.news__grid.is-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.news__grid.is-carousel::-webkit-scrollbar { display: none; }
.news__grid.is-carousel .news-card {
  flex: 0 0 calc((100% - 56px) / 3);
  scroll-snap-align: start;
}
/* Setas do carrossel de notícias */
.news__nav {
  display: none;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.news__nav.is-shown { display: flex; }
.news__btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(0, 45, 38, 0.25);
  background: transparent;
  color: var(--green-darkest);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
    border-color 0.35s var(--ease), transform 0.2s var(--ease);
}
.news__btn:hover {
  background: var(--green-darkest);
  border-color: var(--green-darkest);
  color: var(--cream-text);
  transform: translateY(-2px);
}
.news-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.18);
}
.news-card:focus-visible { outline: 2px solid var(--green-mid); outline-offset: 3px; }
.news-card.is-hidden { display: none; }
.news-card.filter-in { animation: newsIn 0.5s var(--ease) both; }
@keyframes newsIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.news-card__media {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green-darkest);
  color: var(--cream-text);
  padding: 6px 14px;
  border-radius: 90px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.news-card__body {
  padding: 24px;
}
.news-card__body h3 {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 10px;
}
.news-card__body p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.75;
  margin: 0 0 16px;
}
.news-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-darkest);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease);
}
.news-card__link:hover { gap: 10px; }

/* =========================================================
   LEITOR DE MATÉRIA (modal)
   ========================================================= */
.article-reader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(16px, 4vw, 60px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.article-reader.open { opacity: 1; visibility: visible; }
.article-reader__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 16, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.article-reader__panel {
  position: relative;
  width: min(760px, 100%);
  max-height: 100%;
  overflow-y: auto;
  background: var(--cream-light);
  border-radius: 22px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.6);
  transform: translateY(40px) scale(0.98);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
  -webkit-overflow-scrolling: touch;
}
.article-reader.open .article-reader__panel { transform: none; opacity: 1; }
.article-reader__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 20, 16, 0.55);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.article-reader__close:hover { background: var(--green-darkest); transform: rotate(90deg); }
.article-reader__media {
  position: relative;
  height: clamp(220px, 38vh, 360px);
  overflow: hidden;
  border-radius: 22px 22px 0 0;
}
.article-reader__media img,
.article-reader__video { width: 100%; height: 100%; object-fit: cover; }
.article-reader__video { display: none; }
.article-reader__media.has-video img { display: none; }
.article-reader__media.has-video .article-reader__video { display: block; }
.article-reader__tag {
  position: absolute;
  bottom: 18px;
  left: 22px;
  background: var(--green-darkest);
  color: var(--cream-text);
  padding: 7px 16px;
  border-radius: 90px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.article-reader__content { padding: clamp(26px, 4vw, 48px); }
.article-reader__meta {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 600;
  margin: 0 0 12px;
}
.article-reader__title {
  font-family: var(--display);
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.2;
  color: var(--green-darkest);
  margin: 0 0 16px;
}
.article-reader__lead {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--green-darkest);
  opacity: 0.9;
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 45, 38, 0.12);
}
.article-reader__body p {
  font-size: 16px;
  line-height: 1.8;
  color: #2c352f;
  margin: 0 0 18px;
}
.article-reader__quote {
  margin: 30px 0 10px;
  padding: 22px 26px;
  border-left: 3px solid var(--green-mid);
  background: rgba(0, 45, 38, 0.05);
  border-radius: 0 14px 14px 0;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.45;
  color: var(--green-darkest);
}
.article-reader__cta { margin-top: 28px; }
body.reader-open { overflow: hidden; }

/* =========================================================
   INSTAGRAM
   ========================================================= */
.instacasa {
  background: var(--green-darkest);
  color: var(--cream-text);
  padding: clamp(80px, 10vw, 130px) 0;
}
.instacasa__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.instacasa__text .section-title { color: var(--cream-text); }
.cobrand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 14px 0 24px;
}
.cobrand__vista { height: 44px; filter: brightness(0) invert(1); }
.cobrand__insta { height: 34px; }
.cobrand__x { color: var(--green-soft); font-size: 22px; opacity: 0.6; font-weight: 300; }
.instacasa__lead {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.85;
  margin: 18px 0 30px;
}
.instacasa__lead strong { color: var(--green-soft); font-weight: 600; }
.instacasa__steps {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* Linha conectando os passos (jornada) */
.instacasa__steps::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(var(--green-soft), rgba(161, 186, 155, 0.15));
  opacity: 0.4;
}
.instacasa__steps li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  line-height: 1.4;
  transition: transform 0.35s var(--ease);
}
.instacasa__steps li:hover { transform: translateX(6px); }
.instacasa__steps li span:last-child {
  opacity: 0.85;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}
.instacasa__steps li:hover span:last-child { opacity: 1; color: #fff; }
.instacasa__step-n {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-darkest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.instacasa__steps li:hover .instacasa__step-n {
  transform: scale(1.12);
  box-shadow: 0 0 0 6px rgba(161, 186, 155, 0.18);
}
.instacasa__visual { position: relative; padding-bottom: 60px; }
.instacasa__card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
  aspect-ratio: 16 / 9;
}
.instacasa__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  transform: scale(1.05);
  transition: opacity 0.9s var(--ease), transform 1.4s var(--ease);
}
/* Slide que entra: aparece por cima com leve zoom-out */
.instacasa__slide.is-active { opacity: 1; transform: scale(1); z-index: 2; }
/* Slide que sai: continua visível por baixo (sem buraco no fundo) */
.instacasa__slide.is-leaving { opacity: 1; transform: scale(1); z-index: 1; transition: none; }
.instacasa__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 20, 16, 0.45);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease), background 0.35s var(--ease);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.instacasa__nav--prev { left: 14px; }
.instacasa__nav--next { right: 14px; }
.instacasa__card:hover .instacasa__nav { opacity: 1; }
.instacasa__nav:hover { background: var(--green-darkest); }
/* Em telas de toque (sem hover) as setas ficam sempre visíveis */
@media (hover: none) {
  .instacasa__nav { opacity: 0.92; }
}
.instacasa__badge {
  position: absolute;
  right: -16px;
  bottom: -56px;
  z-index: 3;
  background: var(--cream);
  color: var(--green-darkest);
  border-radius: 16px;
  padding: 18px 26px;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.55);
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.instacasa__badge:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 30px 54px -22px rgba(0, 0, 0, 0.6);
}
.instacasa__badge-num {
  display: block;
  font-family: var(--display);
  font-size: 46px;
  line-height: 1;
  font-weight: 600;
}
.instacasa__badge-num.pulse { animation: numPulse 0.55s var(--ease); }
@keyframes numPulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.16); }
  100% { transform: scale(1); }
}
.instacasa__badge-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin-top: 6px;
  opacity: 0.75;
}

/* =========================================================
   LOCALIZAÇÃO
   ========================================================= */
.local {
  background: var(--green-darkest);
  color: var(--cream-text);
  padding: clamp(80px, 10vw, 130px) 0;
}
.local__head {
  text-align: center;
  margin-bottom: 16px;
}
.local__address {
  margin-top: 16px;
  font-size: 17px;
  opacity: 0.85;
}
.local__map {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.local__map iframe { width: 100%; height: 460px; border: 0; display: block; filter: grayscale(0.15); }

/* =========================================================
   LOJA / PLANTÃO JAÚ
   ========================================================= */
.store {
  background: var(--green-darkest);
  color: var(--cream-text);
  padding: clamp(70px, 9vw, 110px) 0;
}
.store__card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.3);
}
.store__body {
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}
.store__body .eyebrow { color: var(--green-soft); }
.store__body h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 50px);
  margin: 0;
  line-height: 1.1;
}
.store__body p { margin: 0; opacity: 0.9; font-size: 17px; }
.store__info { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.store__info div { display: flex; gap: 12px; align-items: flex-start; }
.store__info i { color: var(--green-soft); width: 20px; margin-top: 4px; }
.store__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; }
.store__map { position: relative; min-height: 340px; }
.store__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* =========================================================
   CONTATO
   ========================================================= */
.contato {
  position: relative;
  padding: clamp(70px, 10vw, 120px) 0;
  color: var(--cream-text);
  overflow: hidden;
  background: url("assets/contato-folhas.webp") center / cover no-repeat;
}
.contato::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 45, 38, 0.72) 0%,
    rgba(0, 45, 38, 0.58) 50%,
    rgba(0, 45, 38, 0.8) 100%
  );
  z-index: 1;
}
.contato > .container { position: relative; z-index: 2; }
.contato__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.contato__inner .section-title { color: var(--cream-text); }
.contato__inner > p { margin-top: 14px; font-size: 18px; }
.form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.form input,
.form select {
  height: 62px;
  padding: 0 28px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
}
.form input::placeholder { color: rgba(255, 255, 255, 0.8); }
.form input:focus,
.form select:focus { outline: 2px solid var(--green-soft); }
.form .btn { justify-content: center; height: 62px; }
.form__note { font-size: 13px; opacity: 0.8; text-align: center; }
.form__success {
  display: none;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid #25d366;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  font-size: 17px;
}

/* =========================================================
   FORMULÁRIO RD STATION — forçado com a cara do site
   (escopo no container fixo do RD; !important sobrepõe os
   estilos que o RD injeta com IDs dinâmicos)
   ========================================================= */
.rd-form-wrap { margin-top: 30px; }
#vista-teaser-026465810ab997a007b3 { max-width: 100% !important; margin: 0 auto !important; }
/* Zera os "bricks" (fundos/bordas/paddings/caixa branca/alturas fixas do RD) */
#vista-teaser-026465810ab997a007b3 .bricks--section,
#vista-teaser-026465810ab997a007b3 .bricks--component,
#vista-teaser-026465810ab997a007b3 .bricks--row,
#vista-teaser-026465810ab997a007b3 .bricks--column,
#vista-teaser-026465810ab997a007b3 .bricks-form__fieldset,
#vista-teaser-026465810ab997a007b3 .rd-form {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 auto !important;
  max-width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
}
/* Esconde o título interno do RD e colapsa a linha vazia (min-height inline) que ele deixa */
#vista-teaser-026465810ab997a007b3 .bricks--component-text { display: none !important; }
#vista-teaser-026465810ab997a007b3 .bricks--row:has(.bricks--component-text) { display: none !important; }
#vista-teaser-026465810ab997a007b3 div { min-height: 0 !important; }
/* Espaço entre os campos (empilhados) */
#vista-teaser-026465810ab997a007b3 .bricks-form__field { margin: 0 0 16px !important; }
/* Esconde os labels — nosso visual usa só o placeholder (mantém acessível) */
#vista-teaser-026465810ab997a007b3 .bricks-form__label {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important; clip: rect(0 0 0 0) !important;
  white-space: nowrap !important; border: 0 !important;
}
/* Inputs — pílula igual à do nosso formulário */
#vista-teaser-026465810ab997a007b3 .bricks-form__input {
  box-sizing: border-box !important;
  height: 62px !important;
  width: 100% !important;
  padding: 0 28px !important;
  border-radius: 50px !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  background: rgba(0, 0, 0, 0.42) !important;
  color: #fff !important;
  font-family: var(--sans) !important;
  font-size: 18px !important;
  font-weight: 300 !important;
}
#vista-teaser-026465810ab997a007b3 textarea.bricks-form__input { height: auto !important; padding: 18px 28px !important; border-radius: 24px !important; }
#vista-teaser-026465810ab997a007b3 .bricks-form__input::placeholder { color: rgba(255, 255, 255, 0.8) !important; }
#vista-teaser-026465810ab997a007b3 .bricks-form__input:focus { outline: 2px solid var(--green-soft) !important; box-shadow: none !important; }
/* Consentimento/checkbox (se houver) legível no fundo escuro */
#vista-teaser-026465810ab997a007b3 .bricks-form__field__option,
#vista-teaser-026465810ab997a007b3 .bricks--component-text,
#vista-teaser-026465810ab997a007b3 .bricks-form__field__option a { color: var(--cream-text) !important; }
/* Botão — creme, igual ao nosso btn-light */
#vista-teaser-026465810ab997a007b3 .bricks-form__submit { width: 100% !important; margin-top: 4px !important; }
#vista-teaser-026465810ab997a007b3 .rd-button,
#vista-teaser-026465810ab997a007b3 .bricks-form__submit button {
  height: 62px !important;
  width: 100% !important;
  border: 0 !important;
  border-radius: 50px !important;
  background: var(--cream) !important;
  color: var(--green-darkest) !important;
  font-family: var(--sans) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: none !important;
  cursor: pointer !important;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease) !important;
}
#vista-teaser-026465810ab997a007b3 .rd-button:hover,
#vista-teaser-026465810ab997a007b3 .bricks-form__submit button:hover {
  background: #fff !important;
  transform: translateY(-2px) !important;
}

/* =========================================================
   DISCLAIMER & FOOTER
   ========================================================= */
.disclaimer { background: var(--green-mid); color: var(--cream-text); padding: 26px 0; }
.disclaimer p { margin: 0 auto; max-width: 1000px; text-align: center; font-size: 13px; line-height: 1.7; opacity: 0.85; }

.footer { background: var(--green-darkest); color: var(--cream-text); padding: 70px 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { text-transform: uppercase; letter-spacing: 1px; font-size: 16px; margin: 0 0 10px; color: var(--cream-text); }
.footer__col a, .footer__col span { font-size: 15px; opacity: 0.9; }
.footer__col a:hover { color: var(--green-soft); }
.footer__realiza img { width: 180px; margin-top: 4px; }
.footer__ig,
.footer__wa { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.footer__ig i { color: #e1306c; font-size: 18px; }
.footer__wa i { color: #25d366; font-size: 18px; }

/* =========================================================
   ANIMAÇÕES DE SCROLL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* Variações sutis de direção */
.reveal[data-reveal="left"]  { transform: translateX(-44px); }
.reveal[data-reveal="right"] { transform: translateX(44px); }
.reveal[data-reveal="scale"] { transform: scale(0.96); }
.reveal[data-reveal].is-visible { transform: none; }

/* Imagens entram com um leve zoom-out (refinado, não exagerado) */
.reveal img { transition: transform 1.2s var(--ease); }
.reveal:not(.is-visible) .news-card__media img,
.reveal:not(.is-visible).numbers__photo img,
.reveal:not(.is-visible) > img { transform: scale(1.06); }
.reveal.is-visible .news-card__media img,
.reveal.is-visible.numbers__photo img,
.reveal.is-visible > img { transform: scale(1); }

/* Barra de progresso de scroll (fina, no topo) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--green-soft), var(--green-accent));
  z-index: 200;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal img { transform: none !important; transition: none; }
  .scroll-progress { display: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1024px) {
  .news__grid { grid-template-columns: repeat(2, 1fr); }
  .news__grid.is-carousel .news-card { flex: 0 0 calc((100% - 28px) / 2); }
}

@media (max-width: 860px) {
  /* No mobile o CTA fica dentro do hub; mostra so a logo + o hub na barra */
  .header-actions .nav__cta { display: none; }
  .nav { padding: 80px 44px; }

  .conceito__grid,
  .numbers__grid,
  .implantacao__grid,
  .instacasa__grid,
  .store__card { grid-template-columns: 1fr; }

  .instacasa__visual { padding-bottom: 0; }
  .instacasa__badge { right: 12px; bottom: 10px; left: auto; padding: 12px 18px; }
  .instacasa__badge-num { font-size: 32px; }
  .instacasa__badge-label { font-size: 11px; }

  /* Gráfico de obras: empilhar anel + barras (é flex, não grid) */
  .progress-wrap { flex-direction: column; gap: 36px; text-align: center; }
  .ring { width: 220px; height: 220px; margin: 0 auto; }
  .bars { width: 100%; flex: none; }
  .bar__top { text-align: left; }

  .conceito__img { min-height: 300px; order: -1; }
  .store__map { min-height: 300px; }

  /* Implantação: mapa interativo por toque no mobile */
  .amenities__hint { display: block; }
  .masterplan { margin-top: 8px; }
  .hotspot { width: 22px; height: 22px; border-width: 1.5px; }
}

@media (max-width: 640px) {
  .instacasa__badge { left: 10px; bottom: 10px; right: auto; padding: 10px 14px; border-radius: 12px; }
  .instacasa__badge-num { font-size: 26px; }
  .instacasa__badge-label { font-size: 10px; margin-top: 2px; }
  .news__grid { grid-template-columns: 1fr; }
  .news__grid.is-carousel .news-card { flex: 0 0 86%; }
  .stat { flex-basis: 100%; }

  /* Carrossel: slides cabem na tela (sobrepõe o min-width:520px) */
  .carousel__track { gap: 14px; }
  .slide { flex: 0 0 82vw; width: 82vw; min-width: 0; }
  .slide img,
  .slide video { height: 230px; }
  .carousel__nav { margin-top: 20px; }

  /* Gráfico um pouco menor em telas estreitas */
  .ring { width: 190px; height: 190px; }
  .ring__pct { font-size: 40px; }

  .footer__grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer__col { align-items: center; }
}
