/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', 'Inter', sans-serif;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --navy: #0d2d52;
  --navy-mid: #1a4472;
  --navy-light: #1e5799;
  --blue-btn: #1a4d8f;
  --blue-btn-hover: #15407a;
  --dark: #1a1a1a;
  --gray: #555;
  --gray-light: #f4f6f8;
  --white: #ffffff;
  --transition: 0.25s ease;
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary { background: var(--blue-btn); color: var(--white); }
.btn-primary:hover { background: var(--blue-btn-hover); }
.btn-outline { border: 2px solid var(--blue-btn); color: var(--blue-btn); background: transparent; }
.btn-outline:hover { background: var(--blue-btn); color: var(--white); }
.btn-card {
  background: var(--blue-btn);
  color: var(--white);
  padding: 11px 24px;
  font-size: 0.82rem;
  border-radius: 4px;
}
.btn-card:hover { background: var(--blue-btn-hover); }
.full-width { width: 100%; text-align: center; }

/* ===== SECTION TAGS & HEADERS ===== */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-btn);
  margin-bottom: 10px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
}
.section-header.light h2 { color: var(--white); }
.section-header.light .section-tag { color: rgba(255,255,255,0.7); }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}
#header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.12); }
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { height: 40px; width: auto; }

/* logo "25 anos" — o arquivo original tem margem branca grande ao redor da marca;
   recorta via CSS (sem depender de reexportar o arquivo) mantendo altura/enquadramento de antes */
.logo.logo--anniversary { position: relative; display: inline-block; height: 40px; width: 140px; overflow: hidden; vertical-align: middle; }
.logo.logo--anniversary img { position: absolute; height: 94.2px; width: 167.4px; max-width: none; left: -13.6px; top: -27px; }

/* Home: o hero usa um recuo esquerdo de 140px (fora do .container padrão de 32px),
   entao desloca só a logo dessa página pra alinhar com a margem esquerda do texto abaixo */
body[data-content-page="home"] .logo.logo--anniversary {
  margin-left: calc(108px - max(0px, (100vw - 1200px) / 2));
}

.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.main-nav > ul > li > a:hover { color: var(--navy); background: transparent; box-shadow: inset 0 -2px 0 var(--navy); border-radius: 0; }
.main-nav > ul > li > a.active { color: var(--navy); background: transparent; box-shadow: inset 0 -2px 0 var(--navy); border-radius: 0; }
.main-nav a i { font-size: 0.68rem; transition: transform 0.2s ease; }
.dropdown.drop-open > a i { transform: rotate(180deg); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 1100;
  background: var(--white);
  border-top: none;
  min-width: 200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}
.dropdown.drop-open .dropdown-menu { display: block; }
.dropdown-menu li a {
  padding: 12px 20px;
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  background: transparent;
  border-radius: 0;
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { background: rgba(26,77,143,0.06); color: var(--blue-btn); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 12px 32px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 0;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.mobile-nav a:hover { color: var(--blue-btn); }
.mobile-sub ul { padding-left: 16px; }
.mobile-sub ul li a { font-size: 0.88rem; color: var(--gray); font-weight: 500; }

/* ===== BANNER HERO SLIDESHOW ===== */
.banner-hero {
  margin-top: 72px;
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.banner-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.banner-hero-slide.active { opacity: 1; }
.banner-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.banner-hero-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.banner-hero-prev { left: 24px; }
.banner-hero-next { right: 24px; }
.banner-hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.banner-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.banner-hero-dot.active { background: #fff; transform: scale(1.25); }

/* ===== HOME INTRO (números centralizados) ===== */
.home-intro { background: #fff; padding: 80px 0; }
.home-intro-inner {
  max-width: none;
  margin: 0 auto;
  padding: 0 40px;
}
.home-intro-stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.home-intro-stats .hero-stat {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  align-items: center;
}
.home-intro-stats .hero-stat-label { white-space: nowrap; }

/* ===== HERO – BANNER (imagem com bordas arredondadas + texto sobre o céu) ===== */
.hero-banner { margin-top: 72px; padding: 0 110px; background: #fff; }
.hero-banner-inner { position: relative; border-radius: 20px; overflow: hidden; line-height: 0; }
.hero-banner-img { display: block; width: 100%; height: auto; }
.hero-banner-text { display: none; }
/* Banner animado: fundo estático + prédio subindo de baixo pra cima */
.hero-anim-bg { display: block; width: 100%; height: auto; position: relative; z-index: 1; }
.hero-anim-building {
  position: absolute;
  z-index: 2;
  left: -27%;
  bottom: -57%;
  height: 172%;
  width: auto;
  animation: buildingRise 1.5s cubic-bezier(.22,.61,.36,1) 0.3s both;
  will-change: transform, opacity;
}
@keyframes buildingRise {
  from { transform: translateY(72%); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-anim-building { animation: none; }
}
/* eyebrow na faixa branca (cinza) */
.hero-banner-eyebrow {
  position: absolute;
  left: 6%;
  top: 21%;
  z-index: 2;
  font-size: clamp(0.7rem, 0.95vw, 0.9rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gray);
  line-height: 1.3;
  margin: 0;
}
/* título no céu (branco) — gap maior em relação ao eyebrow */
.hero-banner-title {
  position: absolute;
  left: 6%;
  top: 29%;
  max-width: 44%;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3.4vw, 3.2rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.12;
  margin: 0;
  text-shadow: 0 1px 16px rgba(0,0,0,0.35);
}

/* ===== HERO – TIPOGRÁFICO (3 colunas: parágrafo | título | números) ===== */
.hero-city {
  margin-top: 72px;
  background: #fff;
  padding: 72px;
  display: grid;
  grid-template-columns: minmax(200px, 250px) 1fr minmax(220px, 260px);
  align-items: center;
  gap: 48px;
}
.hero-city-side { min-width: 0; }
/* coluna esquerda: parágrafo maior, centralizado verticalmente (margens iguais aos números) */
.hero-city-side--left { display: flex; flex-direction: column; gap: 10px; }
.hero-city-desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--gray);
  margin: 0;
}
/* centro: título grande + subtítulo em linha única */
.hero-city-center { text-align: center; }
.hero-city-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-light);
  line-height: 1.3;
  margin: 0;
}
.hero-city-subtitle {
  margin-top: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gray);
  white-space: nowrap;
}
/* coluna direita: números alinhados à direita, centralizados verticalmente */
.hero-city .hero-city-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
  margin: 0;
  padding: 0;
  border-top: none;
}
.hero-city-stats .hero-stat { flex: none; align-items: flex-end; text-align: right; gap: 6px; }
.hero-city-stats .hero-stat-number { font-size: clamp(1.6rem, 2.4vw, 2rem); }

/* ===== HERO – SPLIT LAYOUT (legado, não usado na home atualmente) ===== */
.hero {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 9fr 11fr;
  min-height: 540px;
}
.hero-left {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 80px 48px 80px 140px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-btn);
  margin-bottom: 24px;
}
.hero-left h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--blue-btn);
  line-height: 1.2;
  margin-bottom: 28px;
}
.hero-left p {
  color: var(--gray);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 480px;
}
.hero-left p:last-of-type { margin-bottom: 32px; }
.hero-right {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 520px;
  will-change: transform;
}

/* Mosaico de fotos no hero (3 fotos + card de números), cantos arredondados e
   sombra em alto relevo — mesmo tratamento dos cards de empreendimentos do site */
.hero-right.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.35fr 1fr;
  gap: 20px;
  padding: 40px;
  background: var(--white);
  min-height: 520px;
}
.hero-mosaic-item {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.09);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-mosaic-item:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(0,0,0,0.13); }
.hero-mosaic-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-mosaic-item--wide { grid-column: 1 / -1; }
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1s ease;
}
.hero-slide.active {
  opacity: 1;
  animation: heroKenBurns 7s ease-out forwards;
}
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(13, 45, 82, 0.45);
  border: none; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; cursor: pointer; z-index: 3;
  transition: background 0.2s ease;
  backdrop-filter: blur(2px);
}
.hero-arrow:hover { background: rgba(13, 45, 82, 0.8); }
.hero-arrow-prev { left: 16px; }
.hero-arrow-next { right: 16px; }
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-dot.active { background: #fff; transform: scale(1.3); }
.hero-cta-row {
  display: inline-flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--navy); margin-bottom: 48px;
  position: relative; overflow: hidden;
  border-radius: 999px; padding-right: 24px;
}
.hero-cta-row::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--navy);
  border-radius: 999px;
  clip-path: inset(0 calc(100% - 48px) 0 0 round 999px);
  transition: clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.hero-cta-row:hover::after { clip-path: inset(0 0 0 0 round 999px); }
.hero-cta-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: transparent; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  position: relative; z-index: 1;
}
.hero-cta-label {
  font-size: 0.95rem; font-weight: 600;
  position: relative; z-index: 1;
  transition: color 0.3s ease 0.05s;
}
.hero-cta-row:hover .hero-cta-label { color: #fff; }

/* ===== STATS (empresa page – navy strip) ===== */
.stats {
  background: var(--navy);
  padding: 52px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-number sup { font-size: 0.55em; vertical-align: super; }
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.15);
}

/* ===== HERO STATS (inline in hero-left) ===== */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-stat-number sup { font-size: 0.5em; vertical-align: super; }
.hero-stat-label {
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.12);
  margin: 0 24px;
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about { padding: 96px 0; background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .section-tag { margin-bottom: 14px; }
.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 20px;
}
.about-text p {
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 28px;
  font-size: 0.97rem;
}
.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: 6px;
  padding: 60px 40px;
  box-shadow: 0 16px 48px rgba(13,45,82,0.2);
}
.about-logo-img { max-width: 220px; width: 100%; }

/* ===== PROJECTS CAROUSEL ===== */
.projects { padding: 96px 0 96px; background: var(--gray-light); }
.projects .section-header { margin-bottom: 72px; }
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.carousel-viewport {
  overflow: hidden;
  width: 100%;
}
.carousel-track {
  display: flex;
  gap: 40px;
  transition: transform 0.4s ease;
  will-change: transform;
}
.carousel-btn { display: none; }
.carousel-dots { display: none; justify-content: center; gap: 8px; margin-top: 22px; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #b8c2d0; border: none; padding: 0; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active { background: var(--navy); transform: scale(1.35); }

.project-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.09);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 80px) / 3);
  min-width: 0;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.13);
}
.project-img-link { display: block; overflow: hidden; flex-shrink: 0; }
.project-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.project-img-link:hover .project-img { transform: scale(1.04); }
.project-info { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.project-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.project-info h4 a { color: inherit; }
.project-info h4 a:hover { color: var(--blue-btn); }
.project-desc {
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.project-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  flex: 1;
}
.spec-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.79rem;
  font-weight: 500;
  color: #374151;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 5px 10px;
  background: #fff;
  white-space: nowrap;
  width: calc(50% - 4px);
}
.spec-pill i { color: #6b7280; font-size: 0.85rem; flex-shrink: 0; }
.project-location {
  color: #6b7280;
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f0f4f8;
}
.project-location i { color: #6b7280; }

/* ===== CINE HOME ===== */
.cine-hero-home {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.cine-video-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.cine-video-bg iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}
.cine-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.28) 50%, rgba(0,0,0,0.1) 100%);
}
/* Cine content — below the video */
.cine-below-content {
  background: #fff;
  padding: 32px 0;
  /* position/z-index/will-change set in the block above for animation */
}
.cine-below-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 56px;
}
.cine-below-left { flex: 0 0 auto; }
.cine-below-right { flex: 0 0 auto; }
.cine-below-right p { color: var(--gray); font-size: 0.78rem; line-height: 1.7; max-width: 38ch; }
.cine-below-left h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.cine-play-row {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--gray);
}
.cine-play-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #ff0000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}
.cine-play-row:hover .cine-play-circle { transform: scale(1.1); background: #cc0000; }
.cine-video-label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--gray); }
.cine-video-sub { display: block; font-size: 0.78rem; color: var(--gray); opacity: 0.7; margin-top: 2px; }
@media (max-width: 768px) {
  .home-intro { padding: 48px 0; }
  .home-intro-inner { padding: 0 20px; }
  .home-intro-stats { flex-wrap: nowrap; justify-content: space-between; align-items: flex-start; gap: 4px; }
  .home-intro-stats .hero-stat { flex: 1 1 0; gap: 4px; }
  .home-intro-stats .hero-stat-number { font-size: clamp(0.82rem, 4vw, 1.15rem); }
  .home-intro-stats .hero-stat-label { font-size: 0.5rem; line-height: 1.25; letter-spacing: 0.03em; white-space: normal; }
  .home-intro-stats .hero-stat-divider { display: none; }

  .cine-hero-home { height: 70vh; }
  .cine-below-content { padding: 28px 0; }
  .cine-below-inner { flex-direction: column; align-items: flex-start; gap: 20px; padding: 0 24px; }
  .cine-below-right { justify-content: flex-start; }
  .cine-below-right p { max-width: none; }
}

/* ===== DARK CTA ===== */
.cta-dark {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.cta-dark-inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.3;
}

.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 48px; height: 48px;
  border: 1px solid rgba(0,0,0,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 1.15rem;
  transition: all var(--transition);
}
.social-links a:hover { border-color: var(--blue-btn); color: var(--blue-btn); background: rgba(26,77,143,0.06); }

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 72px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.6fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-contact-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.84rem;
  line-height: 1.5;
}
.footer-contact-list li i { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin-top: 2px; min-width: 14px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--white); }
.footer-logo { height: 34px; width: auto; margin-bottom: 18px; }
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.86rem;
  line-height: 1.8;
  margin-bottom: 22px;
}
.footer-brand .social-links a { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.45); }
.footer-brand .social-links a:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.08); }

.footer-nav h4,
.footer-projects h4,
.footer-newsletter h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-nav ul,
.footer-projects ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-projects a {
  color: rgba(255,255,255,0.45);
  font-size: 0.86rem;
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-projects a:hover { color: var(--white); }

.footer-newsletter p {
  color: rgba(255,255,255,0.45);
  font-size: 0.86rem;
  margin-bottom: 14px;
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  padding: 11px 13px;
  background: rgba(255,255,255,0.06);
  border: none;
  color: var(--white);
  font-size: 0.84rem;
  outline: none;
  font-family: inherit;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button {
  background: var(--blue-btn);
  border: none;
  color: var(--white);
  padding: 11px 15px;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--blue-btn-hover); }

.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.28); font-size: 0.79rem; }

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--gray-light); padding: 88px 0; }
.reviews-inner { display: grid; grid-template-columns: 320px 1fr; gap: 80px; align-items: start; }
.reviews-left { position: sticky; top: 100px; }
.reviews-left h2 { font-size: 1.9rem; font-weight: 600; color: var(--navy); margin: 12px 0 18px; line-height: 1.25; }
.reviews-left p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }

.reviews-timeline { position: relative; padding-left: 52px; }
.reviews-timeline::before {
  content: ''; position: absolute; left: 19px; top: 16px; bottom: 16px;
  width: 2px; background: linear-gradient(to bottom, var(--blue-btn) 80%, transparent);
  transform: scaleY(0); transform-origin: top;
  transition: transform 1.6s ease;
}
.reviews-timeline.is-visible::before { transform: scaleY(1); }

.review-item {
  position: relative; margin-bottom: 32px;
  opacity: 0; transform: translateX(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.review-item:last-child { margin-bottom: 0; }
.reviews-timeline.is-visible .review-item:nth-child(1) { transition-delay: 0.2s; }
.reviews-timeline.is-visible .review-item:nth-child(2) { transition-delay: 0.65s; }
.reviews-timeline.is-visible .review-item:nth-child(3) { transition-delay: 1.1s; }
.reviews-timeline.is-visible .review-item { opacity: 1; transform: translateX(0); }

.review-marker {
  position: absolute; left: -52px; top: 0;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem; color: #fff;
  border: 3px solid var(--gray-light); box-shadow: 0 0 0 2px var(--blue-btn); z-index: 1;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reviews-timeline.is-visible .review-item:nth-child(1) .review-marker { transition-delay: 0.35s; }
.reviews-timeline.is-visible .review-item:nth-child(2) .review-marker { transition-delay: 0.8s; }
.reviews-timeline.is-visible .review-item:nth-child(3) .review-marker { transition-delay: 1.25s; }
.reviews-timeline.is-visible .review-marker { transform: scale(1); }
.review-content {
  background: transparent; border: none;
  border-radius: 0; padding: 4px 0 22px 26px; box-shadow: none;
}
.review-stars { color: #f59e0b; font-size: 0.92rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { font-size: 0.93rem; color: #444; line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.review-author { display: block; font-size: 0.85rem; font-weight: 700; color: var(--navy); }

@media (max-width: 1024px) {
  .reviews-inner { grid-template-columns: 1fr; gap: 40px; }
  .reviews-left { position: static; }
}
@media (max-width: 480px) {
  .reviews-timeline { padding-left: 44px; }
  .review-marker { left: -44px; width: 34px; height: 34px; font-size: 0.85rem; }
}

/* ===== MANIFESTO CTA ===== */
.manifesto { background: var(--gray-light); padding: 100px 0; border-top: 1px solid #edf0f4; }
.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.manifesto-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.manifesto-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--blue-btn);
  position: relative; overflow: hidden;
  border-radius: 999px; padding-right: 24px;
}
.manifesto-cta::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--blue-btn);
  border-radius: 999px;
  clip-path: inset(0 calc(100% - 48px) 0 0 round 999px);
  transition: clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.manifesto-cta:hover::after { clip-path: inset(0 0 0 0 round 999px); }
.manifesto-cta-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  position: relative; z-index: 1;
}
.manifesto-cta-label {
  font-size: 1rem; font-weight: 700;
  position: relative; z-index: 1;
  transition: color 0.3s ease 0.05s;
}
.manifesto-cta:hover .manifesto-cta-label { color: #fff; }
.manifesto-right p {
  color: #4a5568;
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.manifesto-right p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== NEWSLETTER HOME ===== */
.newsletter-section {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.newsletter-text .section-tag { display: block; margin-bottom: 14px; }
.newsletter-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.newsletter-text p {
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.75;
}
.newsletter-form-home { display: flex; flex-direction: column; gap: 12px; }
.newsletter-field { position: relative; }
.newsletter-field input {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid #dde3ec;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #1a1a1a;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-field input:focus { border-color: var(--blue-btn); }
.newsletter-field--email input { padding-right: 160px; }
.newsletter-submit {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  background: var(--navy);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.newsletter-submit:hover { background: var(--blue-btn); }
.newsletter-privacy {
  font-size: 0.78rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 4px;
}
.newsletter-success {
  font-size: 0.88rem;
  font-weight: 600;
  color: #16a34a;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: 4px;
}
@media (max-width: 860px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 480px) {
  .newsletter-field--email input { padding-right: 20px; }
  .newsletter-submit {
    position: static;
    transform: none;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    margin-top: 4px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .project-card { flex: 0 0 calc(50% - 20px); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }

  .banner-hero { height: 320px; }
  .banner-hero-arrow { width: 36px; height: 36px; font-size: 0.8rem; }
  .banner-hero-prev { left: 10px; }
  .banner-hero-next { right: 10px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 32px; }
  .hero-right { min-height: 300px; }
  .hero-mosaic { padding: 20px; gap: 12px; }
  .hero-banner { padding: 0 16px; }
  .hero-banner-inner { border-radius: 12px; }
  .hero-banner-eyebrow { font-size: 0.58rem; top: 18%; }
  .hero-banner-title { font-size: 1rem; line-height: 1.15; top: 30%; max-width: 66%; }

  .hero-city {
    display: flex;
    flex-direction: column;
    padding: 48px 32px;
    gap: 36px;
  }
  .hero-city-center { order: -1; }
  .hero-city-subtitle { white-space: normal; }
  .hero-city .hero-city-stats { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 24px 40px; }
  .hero-city-stats .hero-stat { align-items: flex-start; text-align: left; }

  .hero-stats { gap: 0; }
  .hero-stat-divider { margin: 0 16px; }

  .carousel-wrapper { padding: 0 16px; }
  .carousel-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .carousel-viewport::-webkit-scrollbar { display: none; }
  .carousel-track { transform: none !important; gap: 16px; }
  .project-card { flex: 0 0 100%; scroll-snap-align: center; }
  .carousel-dots { display: flex; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { flex-direction: column; gap: 0; }
  .stat-divider { width: 60px; height: 1px; margin: 4px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-left { padding: 48px 20px; }
  .hero-left h1 { font-size: 1.75rem; }
  .hero-stats { flex-direction: column; gap: 20px; border-top: none; padding-top: 24px; }
  .hero-stat-divider { display: none; }
  .spec-pill { width: 100%; }
}
