/* ================================================
   TERRAS ALPHAVILLE CEARÁ 6 — LANDING PAGE
   CSS Premium — Versão 2.0
   ================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --color-navy: #061B2E;
  --color-navy-2: #0A253B;
  --color-navy-3: #102F49;
  --color-green: #A8BF2F;
  --color-green-dark: #7F9822;
  --color-offwhite: #F5F1E8;
  --color-beige: #E8E1D4;
  --color-white: #FFFFFF;
  --color-text-dark: #263342;
  --color-text-muted: #66717E;
  --color-border-light: rgba(255, 255, 255, 0.22);
  --color-border-dark: rgba(6, 27, 46, 0.12);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', Arial, sans-serif;

  --container-max: 1200px;
  --section-pad-v: 90px;
  --radius-card: 16px;
  --radius-btn: 8px;
  --transition: 0.3s ease;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-dark);
  background: var(--color-white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-sans);
}

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
}

/* ---- Utility ---- */
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.green-line {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-green);
  margin-top: 18px;
  border-radius: 2px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  padding: 14px 28px;
  border: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-green {
  background: var(--color-green);
  color: var(--color-white);
}

.btn-green:hover {
  background: var(--color-green-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid var(--color-border-light);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-border-dark);
}

.btn-outline-dark:hover {
  background: var(--color-navy);
  color: var(--color-white);
}


/* ================================================
   HEADER / NAVBAR
   ================================================ */
#navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 110px;
  background: transparent;
  transition: all 0.3s ease;
}

.navbar-container {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo .logo-main {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  color: var(--color-white);
  letter-spacing: 0.04em;
}

.nav-logo .logo-main strong {
  font-weight: 700;
}

.nav-logo .logo-dot {
  display: none;
  /* substituído pelo alpha */
}

.nav-logo .logo-alpha {
  display: inline-block;
  color: var(--color-green);
  font-size: 0.9em;
  font-weight: 700;
  font-style: italic;
  vertical-align: super;
  margin-left: 1px;
  line-height: 1;
}

.nav-logo .logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-green);
  transition: width var(--transition);
}

.nav-menu a:hover {
  color: var(--color-white);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  padding: 12px 28px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--color-green);
  border-color: var(--color-green);
  color: var(--color-white);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.nav-mobile-panel {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-mobile-panel.open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  max-width: 360px;
  background: rgba(6, 27, 46, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}

.nav-mobile-panel.open .nav-mobile-content {
  transform: translateX(0);
}

.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 24px 20px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-mobile-header .nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-mobile-header .nav-logo .logo-main {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  color: var(--color-white);
  letter-spacing: 0.04em;
}

.nav-mobile-header .nav-logo .logo-main strong {
  font-weight: 700;
}

.nav-mobile-header .nav-logo .logo-alpha {
  display: inline-block;
  color: var(--color-green);
  font-size: 0.9em;
  font-weight: 700;
  font-style: italic;
  vertical-align: super;
  margin-left: 1px;
  line-height: 1;
}

.nav-mobile-header .nav-logo .logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-mobile-close {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 38px;
  cursor: pointer;
  line-height: 1;
  font-weight: 300;
  padding: 0;
  transition: color 0.3s ease;
}

.nav-mobile-close:hover {
  color: var(--color-green);
}

.nav-mobile-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 24px;
  overflow-y: auto;
}

.nav-mobile-link {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--color-white);
  font-family: var(--font-serif);
  transition: color var(--transition), transform var(--transition);
}

.nav-mobile-link:hover {
  color: var(--color-green);
  transform: translateX(4px);
}

.nav-mobile-footer {
  padding: 24px 32px 40px 32px;
}

.nav-mobile-footer .btn-green {
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 16px 20px;
  border-radius: 8px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
}


/* ================================================
   HERO
   ================================================ */

/* --- Animações de entrada --- */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 78px);
  column-gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

#hero {
  position: relative;
  background: var(--color-navy);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 110px;
  box-sizing: border-box;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  animation: heroFadeIn 1.2s ease both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      #061B2E 0%,
      rgba(6, 27, 46, 0.98) 28%,
      rgba(6, 27, 46, 0.86) 42%,
      rgba(6, 27, 46, 0.48) 58%,
      rgba(6, 27, 46, 0.16) 75%,
      rgba(6, 27, 46, 0.30) 100%),
    linear-gradient(180deg,
      rgba(2, 12, 25, 0.92) 0%,
      rgba(2, 12, 25, 0.25) 28%,
      rgba(2, 12, 25, 0.10) 55%,
      rgba(2, 12, 25, 0.82) 100%);
}

.hero-deco-mandala {
  position: absolute;
  left: -80px;
  top: 110px;
  height: 250px;
  width: auto;
  opacity: 0.75;
  pointer-events: none;
  z-index: 1;
  animation: heroFadeIn 1.4s 0.3s ease both;
}

/* Remover decos antigas caso existam */
.hero-deco {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.hero-left-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 88px;
  font-weight: 300;
  color: var(--color-white);
  line-height: 0.96;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  animation: heroFadeUp 0.8s 0.1s ease both;
}

.hero-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--color-green);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin-bottom: 36px;
  animation: heroFadeUp 0.8s 0.3s ease both;
}

/* Condition box */
.hero-condition {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 660px;
  height: 190px;
  border: 1px solid var(--color-green);
  border-radius: 8px;
  background: rgba(6, 27, 46, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  padding: 20px;
  box-sizing: border-box;
  animation: heroFadeUp 0.8s 0.5s ease both;
}

.hero-condition-mandala {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: auto;
  opacity: 0.35;
  pointer-events: none;
}

.hero-condition-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 12px;
  z-index: 1;
  text-align: center;
}

.hero-condition-values {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
  z-index: 1;
}

.condition-block {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.condition-number {
  font-family: var(--font-sans);
  font-size: 54px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.condition-percent,
.condition-times {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white);
  margin-left: 2px;
}

.condition-caption {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-white);
  margin-top: 6px;
  text-transform: uppercase;
  opacity: 0.85;
}

.condition-plus {
  font-family: var(--font-sans);
  font-size: 42px;
  font-weight: 400;
  color: var(--color-green);
  padding: 0 20px;
  margin-top: -15px;
}

/* Hero buttons */
.hero-buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: center;
  animation: heroFadeUp 0.8s 0.65s ease both;
}

#hero-cta-btn {
  width: 430px;
  height: 66px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--color-green);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  box-sizing: border-box;
  transition: var(--transition);
}

#hero-cta-btn:hover {
  background: var(--color-green-dark);
  transform: translateY(-2px);
}

.btn-play-outline {
  width: 310px;
  height: 66px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid var(--color-white);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-sizing: border-box;
  transition: var(--transition);
}

.btn-play-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.play-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  flex-shrink: 0;
}

.play-icon svg {
  color: var(--color-white);
  fill: var(--color-white);
  margin-left: 2px;
}


/* ================================================
   INDICADORES
   ================================================ */
#indicadores {
  background: #04111f;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.indicadores-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.ind-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  position: relative;
  box-sizing: border-box;
}

.ind-item::before {
  display: none !important;
}

.ind-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.12);
}

.ind-icon-img {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.ind-info {
  display: flex;
  flex-direction: column;
}

.ind-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
  line-height: 1.2;
}

.ind-value {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

/* =========================
   HERO PIXEL PERFECT DESKTOP
   ========================= */

@media (min-width: 1200px) {
  #navbar {
    height: 110px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 100;
  }

  .navbar-container {
    max-width: 1200px !important;
    height: 110px;
    padding: 0 40px !important;
    margin: 0 auto !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo .logo-main {
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .nav-logo .logo-sub {
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
    color: #ffffff;
    text-align: right;
    margin-top: 6px;
    padding-right: 6px;
  }

  .nav-logo .logo-alpha {
    font-size: 34px;
    line-height: 0;
    margin-left: 4px;
    transform: translateY(-6px);
    color: #A8BF2F;
  }

  .nav-menu {
    gap: 40px;
    margin-left: 10px;
  }

  .nav-menu a {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.9);
  }

  .nav-cta {
    width: 200px;
    height: 58px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    border: 1.5px solid rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #ffffff;
  }

  #hero {
    height: 870px;
    min-height: 870px;
    padding-top: 0;
    align-items: flex-start;
    background: #061B2E;
  }

  .hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg,
        #061B2E 0%,
        rgba(6, 27, 46, 0.99) 22%,
        rgba(6, 27, 46, 0.92) 35%,
        rgba(6, 27, 46, 0.66) 49%,
        rgba(6, 27, 46, 0.23) 64%,
        rgba(6, 27, 46, 0.12) 78%,
        rgba(6, 27, 46, 0.36) 100%),
      linear-gradient(180deg,
        rgba(2, 12, 25, 0.96) 0%,
        rgba(2, 12, 25, 0.28) 28%,
        rgba(2, 12, 25, 0.08) 56%,
        rgba(2, 12, 25, 0.82) 100%);
  }

  .hero-deco-mandala {
    position: absolute;
    left: -30px;
    top: 112px;
    height: 255px;
    width: auto;
    opacity: 0.82;
    z-index: 1;
    pointer-events: none;
  }

  .hero-content {
    max-width: 1200px !important;
    width: 100%;
    height: 100%;
    padding-left: 40px !important;
    padding-right: 40px !important;
    padding-top: 170px;
    margin: 0 auto !important;
    position: relative;
    z-index: 2;
  }

  .hero-left-col {
    width: 100%;
    max-width: 760px;
    align-items: flex-start;
  }

  .hero-title {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 300;
    line-height: 0.96;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 24px 0;
  }

  .hero-title em {
    color: #A8BF2F;
    font-style: italic;
    font-weight: 700;
  }

  .hero-subtitle {
    font-family: var(--font-sans);
    max-width: 640px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.42;
    color: rgba(255, 255, 255, 0.86);
    margin: 0 0 26px 0;
  }

  .hero-condition {
    width: 540px;
    height: 160px;
    margin: 0 0 23px 0;
    padding: 19px 24px 22px;
    border: 1px solid rgba(168, 191, 47, 0.95);
    border-radius: 8px;
    background: rgba(4, 17, 31, 0.52);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: none;
    overflow: hidden;
  }

  .hero-condition-mandala {
    position: absolute;
    left: -18px;
    top: 50%;
    height: 152px;
    width: auto;
    transform: translateY(-50%);
    opacity: 0.58;
  }

  .hero-condition-label {
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #A8BF2F;
    margin-bottom: 20px;
    text-align: center;
  }

  .hero-condition-values {
    width: 100%;
    padding: 0 45px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .condition-block {
    flex: 1;
    display: block;
    text-align: center;
  }

  .condition-number {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 64px;
    font-weight: 300;
    line-height: 0.8;
    color: #ffffff;
    letter-spacing: -0.02em;
  }

  .condition-percent,
  .condition-times {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
    margin-left: 3px;
    transform: translateY(-3px);
  }

  .condition-caption {
    display: block;
    margin-top: 14px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    color: rgba(255, 255, 255, 0.96);
  }

  .condition-plus {
    width: 90px;
    padding: 0;
    margin-top: 28px;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    color: #A8BF2F;
  }

  .hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
  }

  #hero-cta-btn {
    width: 360px;
    height: 60px;
    padding: 0;
    border-radius: 6px;
    background: #A8BF2F;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .btn-play-outline {
    width: 260px;
    height: 60px;
    padding: 0;
    border-radius: 6px;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    background: rgba(4, 17, 31, 0.16);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .play-icon {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    border-radius: 50%;
  }

  #indicadores {
    height: 155px;
    background: #071C2F;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
  }

  .indicadores-container,
  .indicadores-container.grid-12 {
    max-width: 1200px !important;
    width: 100%;
    margin: 0 auto !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 0;
  }

  .ind-item {
    min-height: 155px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
  }

  .ind-item:first-child {
    padding-left: 7px;
  }

  .ind-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 83px;
    background: rgba(255, 255, 255, 0.15);
  }

  .ind-icon-img {
    width: 90px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .ind-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0;
    margin-bottom: 4px;
    line-height: 1.2;
  }

  .ind-value {
    display: block;
    font-family: var(--font-sans);
    font-size: 26px;
    font-weight: 500;
    line-height: 1;
    color: #ffffff;
    letter-spacing: 0;
  }
}


/* ================================================
   SEÇÃO VÍDEOS / LOCALIZAÇÃO
   ================================================ */
#videos {
  background: var(--color-offwhite);
  padding: var(--section-pad-v) 0;
  position: relative;
  overflow: hidden;
}

.videos-deco {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  border: 1px solid rgba(168, 191, 47, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.videos-deco::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(168, 191, 47, 0.1);
  border-radius: 50%;
}

.videos-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

.videos-left {}

.videos-left .section-title {
  font-size: clamp(30px, 3.2vw, 44px);
  color: var(--color-navy);
}

.videos-left .section-title strong {
  font-weight: 700;
  display: block;
}

.videos-left p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-top: 20px;
  max-width: 280px;
}

.videos-right {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 20px;
  align-items: start;
}

.videos-map-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.videos-map-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.videos-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(168, 191, 47, 0.35) 100%);
}

.map-pin {
  position: absolute;
  top: 42%;
  left: 48%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.map-pin-circle {
  width: 20px;
  height: 20px;
  background: #e74c3c;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 3px solid var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.map-label {
  background: rgba(6, 27, 46, 0.85);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

.video-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 16/9;
  background: var(--color-navy);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover img {
  transform: scale(1.05);
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 27, 46, 0.2) 0%, rgba(6, 27, 46, 0.65) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
}

.video-play-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  align-self: center;
  margin: auto;
}

.video-play-btn svg {
  margin-left: 3px;
}

.video-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(6, 27, 46, 0.85), transparent);
}

.video-card-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.04em;
  display: block;
}

.video-card-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
  display: block;
  margin-top: 2px;
}


/* ================================================
   CIDADE ALPHA CEARÁ
   ================================================ */
#cidade-alpha {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}

.cidade-img-col {
  position: relative;
  overflow: hidden;
}

.cidade-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cidade-text-col {
  background: var(--color-offwhite);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cidade-text-col .section-title {
  font-size: clamp(28px, 2.8vw, 40px);
  color: var(--color-navy);
  margin-bottom: 18px;
}

.cidade-text-col p {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 40px;
}

.cidade-indicators {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.cidade-ind {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.cidade-ind-icon {
  color: var(--color-green);
  width: 28px;
  height: 28px;
}

.cidade-ind-num {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
}

.cidade-ind-lbl {
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 500;
  line-height: 1.3;
}


/* ================================================
   INVESTIMENTO / QUALIDADE
   ================================================ */

.secao-investimento {
  width: 100%;
  min-height: 640px;
  background:
    radial-gradient(circle at 12% 42%, rgba(14, 53, 82, 0.45) 0%, rgba(6, 27, 46, 0) 34%),
    linear-gradient(180deg, #061b2e 0%, #061b2e 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 72px 0 76px;
}

.investimento-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 460px minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.investimento-copy {
  color: #ffffff;
  padding-top: 4px;
}

.investimento-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 23px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a8bf2f;
  margin-bottom: 28px;
}

.investimento-title {
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 34px;
}

.investimento-text {
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1.52;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 30px;
}

.investimento-lista {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.investimento-lista li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
}

.investimento-check {
  width: 32px;
  height: 32px;
  border: 3px solid #a8bf2f;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  margin-top: -3px;
}

.investimento-check svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #a8bf2f;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.investimento-media {
  position: relative;
  width: 100%;
}

.investimento-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
}

.investimento-card {
  position: absolute;
  right: 20px;
  bottom: 40px;
  width: 380px;
  min-height: 150px;
  background: #061b2e;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 25px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}

.investimento-card-icon {
  width: 100px;
  height: 99px;
  object-fit: contain;
  flex: 0 0 60px;
}

.investimento-card span {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ffffff;
  text-transform: uppercase;
  white-space: normal;
}

@media (max-width: 991px) {
  .secao-investimento {
    padding: 64px 0;
  }

  .investimento-container {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 0 24px;
  }

  .investimento-copy {
    max-width: 620px;
  }

  .investimento-label {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .investimento-title {
    font-size: 42px;
    line-height: 1.05;
  }

  .investimento-text {
    font-size: 18px;
  }

  .investimento-lista li {
    font-size: 17px;
    gap: 14px;
  }

  .investimento-img {
    height: 360px;
    border-radius: 18px;
  }

  .investimento-card {
    right: 18px;
    bottom: 18px;
    width: auto;
    min-height: auto;
    padding: 20px 24px;
    gap: 18px;
    border-radius: 16px;
  }

  .investimento-card-icon {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
  }

  .investimento-card span {
    font-size: 14px;
    line-height: 1.55;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 575px) {
  .investimento-title {
    font-size: 36px;
  }

  .investimento-text br {
    display: none;
  }

  .investimento-img {
    height: 300px;
  }

  .investimento-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -38px;
    margin-left: 18px;
    margin-right: 18px;
    justify-content: center;
  }
}


/* =========================================
   SEÇÃO LAZER / ESTRUTURA
========================================= */

.lazer-premium {
  width: 100%;
  background: #f4f0ea;
  padding: 36px 0 44px;
  overflow: hidden;
}

.lazer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID BASE
1200px
12 colunas
gutter 24px
coluna 78px
*/

.lazer-head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}

.lazer-head-left {
  grid-column: 1 / span 7;
}

.lazer-head-right {
  grid-column: 8 / span 5;
  padding-top: 46px;
}

.lazer-label {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #183459;
}

.lazer-title {
  margin: 0;
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 52px;
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #163459;
}

.lazer-head-right p {
  margin: 0;
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  color: #1c3558;
}

/* LINHA SUPERIOR */

.lazer-top-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
  margin-bottom: 28px;
}

.lazer-top-row .lazer-top-card:nth-child(1) {
  grid-column: 1 / span 6;
}

.lazer-top-row .lazer-top-card:nth-child(2) {
  grid-column: 7 / span 6;
}

.lazer-top-card {
  position: relative;
  height: 186px;
  border-radius: 16px;
  overflow: hidden;
  background: #ddd;
}

.lazer-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* placa azul sobre os cards grandes */

.lazer-top-info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 338px;
  min-height: 112px;
  background: linear-gradient(180deg, #062746 0%, #041f3d 100%);
  border-radius: 0 16px 16px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px 18px 18px;
  box-shadow: 0 14px 28px rgba(3, 20, 37, 0.24);
}

.lazer-top-info::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 88px;
  height: 4px;
  background: #16c1df;
  border-radius: 0 6px 0 16px;
}

.lazer-top-info-icon {
  width: 100px;
  height: 100px;
  flex: 0 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lazer-top-info-icon img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  display: block;
}

.lazer-top-info-copy h3 {
  margin: 0 0 6px;
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
  color: #ffffff;
  text-transform: uppercase;
}

.lazer-top-info-copy p {
  margin: 0;
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.96);
}

/* LINHA INFERIOR */

.lazer-bottom-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
  row-gap: 0;
}

.lazer-bottom-row .lazer-mini-card:nth-child(1) {
  grid-column: 1 / span 3;
}

.lazer-bottom-row .lazer-mini-card:nth-child(2) {
  grid-column: 4 / span 3;
}

.lazer-bottom-row .lazer-mini-card:nth-child(3) {
  grid-column: 7 / span 3;
}

.lazer-bottom-row .lazer-mini-card:nth-child(4) {
  grid-column: 10 / span 3;
}

.lazer-mini-card {
  display: flex;
  flex-direction: column;
}

.lazer-mini-thumb {
  position: relative;
  height: 126px;
  border-radius: 16px;
  overflow: hidden;
  background: #ddd;
  margin-bottom: 14px;
}

.lazer-mini-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 110px;
  height: 106px;
  background: linear-gradient(180deg, #062746 0%, #041f3d 100%);
  border-radius: 0 16px 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(3, 20, 37, 0.22);
}

.lazer-mini-badge::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 4px;
  background: #16c1df;
  border-radius: 0 6px 0 16px;
}

.lazer-mini-badge img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  display: block;
}

.lazer-mini-copy h3 {
  margin: 0 0 6px;
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 17px;
  line-height: 1.15;
  font-weight: 700;
  color: #173457;
  text-transform: uppercase;
}

.lazer-mini-copy p {
  margin: 0;
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  color: #173457;
}

/* refinamento nas imagens */

.lazer-top-card img,
.lazer-mini-thumb img {
  transition: transform 0.45s ease;
}

.lazer-top-card:hover img,
.lazer-mini-card:hover .lazer-mini-thumb img {
  transform: scale(1.03);
}

/* RESPONSIVO */

@media (max-width: 1279px) {
  .lazer-container {
    max-width: 1140px;
    padding: 0 24px;
  }

  .lazer-title {
    font-size: 46px;
  }

  .lazer-head-right {
    padding-top: 32px;
  }

  .lazer-top-card {
    height: 170px;
  }

  .lazer-top-info {
    width: 320px;
  }

  .lazer-mini-thumb {
    height: 118px;
  }
}

@media (max-width: 991px) {
  .lazer-premium {
    padding: 54px 0 60px;
  }

  .lazer-container {
    padding: 0 24px;
  }

  .lazer-head,
  .lazer-top-row,
  .lazer-bottom-row {
    grid-template-columns: 1fr;
  }

  .lazer-head-left,
  .lazer-head-right,
  .lazer-top-row .lazer-top-card:nth-child(1),
  .lazer-top-row .lazer-top-card:nth-child(2),
  .lazer-bottom-row .lazer-mini-card:nth-child(1),
  .lazer-bottom-row .lazer-mini-card:nth-child(2),
  .lazer-bottom-row .lazer-mini-card:nth-child(3),
  .lazer-bottom-row .lazer-mini-card:nth-child(4) {
    grid-column: auto;
  }

  .lazer-head-right {
    padding-top: 0;
  }

  .lazer-title {
    font-size: 38px;
    line-height: 1.04;
  }

  .lazer-top-row {
    row-gap: 18px;
  }

  .lazer-top-card {
    height: 220px;
  }

  .lazer-top-info {
    width: calc(100% - 24px);
    left: 12px;
    bottom: 12px;
    border-radius: 16px;
  }

  .lazer-bottom-row {
    row-gap: 24px;
  }

  .lazer-mini-thumb {
    height: 190px;
  }
}

@media (max-width: 575px) {
  .lazer-label {
    font-size: 13px;
  }

  .lazer-title {
    font-size: 33px;
  }

  .lazer-head-right p,
  .lazer-mini-copy p,
  .lazer-top-info-copy p {
    font-size: 15px;
  }

  .lazer-top-info {
    gap: 14px;
    padding: 16px;
    min-height: auto;
  }

  .lazer-top-info-icon {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .lazer-top-info-icon img {
    width: 42px;
    height: 42px;
  }
}


/* =========================================
   DIFERENCIAIS PREMIUM
========================================= */

.diferenciais-premium {
  position: relative;
  width: 100%;
  min-height: 365px;
  background:
    radial-gradient(circle at 9% 50%, rgba(19, 67, 94, 0.42) 0%, rgba(6, 27, 46, 0) 32%),
    linear-gradient(180deg, #061b2e 0%, #061b2e 100%);
  overflow: hidden;
  padding: 78px 0 72px;
}

.dif-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
  align-items: center;
}

/* círculos decorativos premium */

.dif-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.dif-bg-circle-1 {
  width: 520px;
  height: 520px;
  left: -165px;
  top: -105px;
  border: 1px solid rgba(168, 191, 47, 0.08);
}

.dif-bg-circle-2 {
  width: 720px;
  height: 720px;
  left: -270px;
  top: -205px;
  border: 1px solid rgba(255, 255, 255, 0.025);
}

/* bloco esquerdo */

.dif-left {
  grid-column: 1 / span 4;
  align-self: center;
}

.dif-label {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #a8bf2f;
}

.dif-main-title {
  margin: 0;
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 41px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.018em;
  color: #ffffff;
}

/* bloco dos itens */

.dif-items {
  grid-column: 5 / span 8;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  min-height: 240px;
}

.dif-item {
  position: relative;
  padding: 0 8px 0 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dif-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.16) 16%,
    rgba(255, 255, 255, 0.16) 82%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* ícones */

.dif-icon-wrap {
  width: 82px;
  height: 82px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.dif-icon-img {
  max-width: 74px;
  max-height: 74px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(168, 191, 47, 0.12));
}

/* textos dos cards */

.dif-item h3 {
  margin: 0 0 16px;
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 13.5px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.dif-item p {
  margin: 0;
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
}

/* detalhe premium opcional no hover */

.dif-item::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 8px;
  bottom: -18px;
  height: 2px;
  background: linear-gradient(90deg, #a8bf2f 0%, rgba(168, 191, 47, 0) 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.dif-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.dif-item,
.dif-icon-img {
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.dif-item:hover .dif-icon-img {
  transform: translateY(-4px);
}

/* RESPONSIVO */

@media (max-width: 1279px) {
  .dif-container {
    max-width: 1140px;
    padding: 0 24px;
  }

  .dif-main-title {
    font-size: 38px;
  }

  .dif-item {
    padding: 0 6px;
  }

  .dif-icon-wrap {
    width: 72px;
    height: 72px;
  }

  .dif-icon-img {
    max-width: 64px;
    max-height: 64px;
  }
}

@media (max-width: 991px) {
  .diferenciais-premium {
    padding: 64px 0;
  }

  .dif-container {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }

  .dif-left,
  .dif-items {
    grid-column: auto;
  }

  .dif-left {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dif-main-title {
    font-size: 38px;
  }

  .dif-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 0;
  }

  .dif-item {
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }

  .dif-icon-wrap {
    justify-content: center;
  }

  .dif-item::after {
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 120px;
  }

  .dif-item:hover::after {
    transform: translateX(-50%) translateY(0);
  }

  .dif-item:nth-child(odd)::before {
    display: none;
  }

  .dif-item:nth-child(even)::before {
    top: 0;
    bottom: 0;
    left: 0;
  }

  .dif-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .diferenciais-premium {
    padding: 56px 0;
  }

  .dif-container {
    padding: 0 20px;
  }

  .dif-label {
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .dif-main-title {
    font-size: 32px;
  }

  .dif-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 8px;
  }

  .dif-item {
    padding: 0;
    max-width: 100% !important;
  }

  .dif-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .dif-item p {
    font-size: 14px;
    line-height: 1.5;
  }

  .dif-item::before {
    display: none !important;
  }

  .dif-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 100%;
    margin: 0;
  }

  .dif-icon-wrap {
    width: 90px;
    height: 90px;
    margin-bottom: 14px;
  }

  .dif-icon-img {
    max-width: 90px;
    max-height: 90px;
  }
}

/* ================================================
   CONTATO / FORMULÁRIO
   ================================================ */
#contato {
  padding: var(--section-pad-v) 0;
  background: radial-gradient(circle at 9% 50%, rgba(19, 67, 94, 0.42) 0%, rgba(6, 27, 46, 0) 32%), linear-gradient(180deg, #143a5c 0%, #061b2e 100%);
  position: relative;
  overflow: hidden;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contato-deco-mandala {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  pointer-events: none;
  z-index: 0;
}

.contato-info-card {
  background: rgba(6, 27, 46, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contato-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.contato-card-content {
  padding: 42px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.contato-card-content .section-label {
  color: var(--color-green);
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contato-card-content .section-title {
  font-size: clamp(26px, 3vw, 42px);
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.1;
  font-family: var(--font-serif);
}

.contato-card-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin: 0;
  max-width: 440px;
}

/* Form card */
.form-card {
  background: rgba(6, 27, 46, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 36px 32px;
  backdrop-filter: blur(12px);
}

.form-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-white);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group select {
  color: rgba(255, 255, 255, 0.6);
}

.form-group select option {
  background: var(--color-navy);
  color: var(--color-white);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--color-green);
  background: rgba(255, 255, 255, 0.09);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: transparent;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-green);
  cursor: pointer;
}

.form-checkbox span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.form-submit {
  width: 100%;
  background: var(--color-green);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  background: var(--color-green-dark);
  transform: translateY(-1px);
}


/* ================================================
   WHATSAPP FLUTUANTE & MODAL
   ================================================ */
@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-wrapper {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.whatsapp-btn {
  position: relative;
  width: 72px;
  height: 72px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  animation: none;
}

.whatsapp-btn svg {
  color: var(--color-white);
}

/* Wpp Modal */
.wpp-modal {
  position: absolute;
  bottom: 90px; /* Above the button */
  right: 0;
  width: 340px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  border: 1px solid rgba(0,0,0,0.05);
}

.wpp-modal.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.wpp-modal-header {
  background: #E8F7ED;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  border-bottom: 1px solid rgba(37, 211, 102, 0.15);
}

.wpp-modal-title {
  display: flex;
  gap: 12px;
}

.wpp-modal-title svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.wpp-modal-title-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wpp-modal-title-text strong {
  font-family: var(--font-sans);
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
}

.wpp-modal-title-text span {
  font-family: var(--font-sans);
  color: #555;
  font-size: 12px;
  line-height: 1.4;
}

.wpp-modal-close {
  background: transparent;
  border: none;
  color: #666;
  font-size: 24px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  transition: color var(--transition);
}

.wpp-modal-close:hover {
  color: #000;
}

.wpp-modal-form {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--color-white);
}

.wpp-field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wpp-field-group input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #333;
  outline: none;
  background: #fdfdfd;
  transition: border-color var(--transition);
}

.wpp-field-group input::placeholder {
  color: #aaa;
}

.wpp-field-group input:focus {
  border-color: #25D366;
  background: #fff;
}

.field-error-msg {
  color: #d32f2f;
  font-size: 11px;
  display: block;
}

.wpp-lgpd-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 2px;
}

.wpp-lgpd-wrapper input {
  margin-top: 3px;
  accent-color: #25D366;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.wpp-lgpd-wrapper label {
  font-family: var(--font-sans);
  font-size: 11px;
  color: #666;
  line-height: 1.4;
  cursor: pointer;
}

.wpp-lgpd-wrapper a {
  color: #25D366;
  text-decoration: underline;
}

.wpp-modal-submit {
  width: 100%;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), transform var(--transition);
}

.wpp-modal-submit:hover {
  background: #1ebe55;
  transform: translateY(-1px);
}

.wpp-modal-skip {
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #666;
  padding: 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.wpp-modal-skip:hover {
  background: #f5f5f5;
  color: #333;
}

@media (max-width: 575px) {
  .whatsapp-wrapper {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-btn {
    width: 60px;
    height: 60px;
  }
  .whatsapp-btn svg {
    width: 32px;
    height: 32px;
  }
  .wpp-modal {
    width: calc(100vw - 40px); /* Fill screen with margin */
    max-width: 340px;
    bottom: 76px;
  }
}


/* ================================================
   FOOTER
   ================================================ */
#footer {
  position: relative;
  background: radial-gradient(circle at 80% 50%, rgba(19, 67, 94, 0.2) 0%, rgba(6, 27, 46, 0) 40%),
              linear-gradient(180deg, var(--color-navy) 0%, #03111c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 80px 0 0;
  overflow: hidden;
}

.footer-deco-mandala {
  display: none;
}

#footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo-col {}

.footer-logo {
  margin-bottom: 18px;
}

.footer-logo .logo-main {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 300;
  color: var(--color-white);
  letter-spacing: 0.04em;
}

.footer-logo .logo-main strong {
  font-weight: 700;
}

.footer-logo .logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-social a:hover {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  display: inline-block;
  transition: color var(--transition), transform var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-green);
  transform: translateX(4px);
}

.footer-col .footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-col .footer-info-item svg {
  color: var(--color-green);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-realizacao-logo {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 300;
  color: var(--color-white);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.vibe-logo {
  max-width: 165px;
  height: auto;
}

.footer-realizacao-logo strong {
  font-weight: 700;
}

.footer-realizacao p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
}


/* ================================================
   IMAGE FALLBACK GRADIENTS
   (Renders premium even without assets loaded)
   ================================================ */

/* .hero-bg-image usa object-fit: cover + gradiente do overlay — sem fallback separado */

.videos-map-wrap {
  background: linear-gradient(160deg, #2a5a3e 0%, #1a3a28 50%, #0d2a1a 100%);
}

.cidade-img-col {
  background: linear-gradient(135deg, #3d2b1a 0%, #5a3f2a 50%, #2b1a0e 100%);
}

.inv-img-wrap {
  background: linear-gradient(160deg, #1a3a28 0%, #2a5a3e 50%, #0d2a1a 100%);
}

.video-card {
  background: linear-gradient(135deg, var(--color-navy-3) 0%, var(--color-navy-2) 100%);
}

/* Lazer card fallback gradients */
.lazer-card:nth-child(1) {
  background: linear-gradient(135deg, #1a2a3a 0%, #0d1a2a 100%);
}

.lazer-card:nth-child(2) {
  background: linear-gradient(135deg, #1a3a4a 0%, #0d2a3a 100%);
}

.lazer-card:nth-child(3) {
  background: linear-gradient(135deg, #1a3a28 0%, #0d2a1a 100%);
}

.lazer-card:nth-child(4) {
  background: linear-gradient(135deg, #2a3a1a 0%, #1a2a0d 100%);
}

.lazer-card:nth-child(5) {
  background: linear-gradient(135deg, #3a2a1a 0%, #2a1a0d 100%);
}

.lazer-card:nth-child(6) {
  background: linear-gradient(135deg, #1a3a2a 0%, #0d2a1a 100%);
}

.contato-img-wrap {
  background: linear-gradient(160deg, #1a3a28 0%, #2a4a38 100%);
}


/* ================================================
   VIDEO MODAL
   ================================================ */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.video-modal.open {
  display: flex;
}

.video-modal-inner {
  position: relative;
  width: 90%;
  max-width: 820px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

.video-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* ================================================
   RESPONSIVIDADE
   ================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  #navbar {
    padding: 0 32px;
  }

  .navbar-container {
    padding: 0 32px;
  }

  .nav-menu {
    gap: 24px;
  }

  .videos-grid {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }

  .videos-right {
    grid-template-columns: 1fr 160px;
    gap: 16px;
  }

  .inv-grid {
    grid-template-columns: 320px 1fr;
    gap: 48px;
  }

  .dif-grid {
    grid-template-columns: 260px 1fr;
    gap: 48px;
  }

  .dif-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .dif-item:nth-child(4),
  .dif-item:nth-child(5) {
    margin-top: 0;
  }

  .contato-grid {
    grid-template-columns: 1fr 400px;
    gap: 40px;
  }

  .contato-img-wrap {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .lazer-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  .cidade-indicators {
    grid-template-columns: repeat(2, 1fr);
  }

  .indicadores-container {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 32px;
  }

  .ind-item {
    grid-column: span 1;
    padding: 20px 0;
  }

  .ind-item:not(:last-child)::after {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-pad-v: 60px;
  }

  .container {
    padding: 0 20px;
  }

  /* Navbar mobile */
  #navbar {
    padding: 0 20px;
  }

  .navbar-container {
    padding: 0 20px;
  }

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero mobile */
  #hero {
    min-height: 100svh;
    padding-top: 80px;
    align-items: flex-end;
  }

  .hero-bg-image {
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0.8;
    object-position: 80% center;
  }

  .hero-deco-mandala {
    display: none;
  }

  .hero-overlay {
    background: linear-gradient(to top, var(--color-navy) 40%, rgba(6, 27, 46, 0.6) 65%, transparent 100%);
  }

  .hero-content {
    padding: 40px 20px 60px;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(36px, 9vw, 52px);
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero-condition {
    width: 100%;
    height: auto;
    padding: 16px;
    max-width: 100%;
  }

  .hero-condition-mandala {
    display: none;
  }

  .hero-condition-values {
    gap: 20px;
  }

  .condition-number {
    font-size: 36px;
  }

  .condition-percent,
  .condition-times {
    font-size: 20px;
  }

  .condition-plus {
    font-size: 28px;
    margin-bottom: 12px;
  }

  /* Indicadores 2x2 */
  .indicadores-container {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }

  .ind-item {
    grid-column: span 1;
    padding: 12px 0;
  }

  .ind-item:nth-child(3)::before {
    display: none;
  }

  .ind-item {
    padding: 20px 18px;
    gap: 12px;
  }

  .ind-value {
    font-size: 20px;
  }

  /* Vídeos */
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .videos-left p {
    max-width: 100%;
  }

  .videos-right {
    grid-template-columns: 1fr;
  }

  .video-cards {
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
  }

  .video-card {
    min-width: 200px;
  }

  /* Cidade Alpha */
  #cidade-alpha {
    grid-template-columns: 1fr;
  }

  .cidade-img-col {
    height: 260px;
  }

  .cidade-text-col {
    padding: 48px 20px;
  }

  .cidade-indicators {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Investimento */
  .inv-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .inv-img-wrap img {
    height: 300px;
  }

  /* Lazer */
  .lazer-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lazer-grid-top {
    grid-template-columns: 1fr;
  }

  .lazer-grid-bottom {
    grid-template-columns: 1fr;
  }

  /* Diferenciais */
  .dif-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .dif-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 8px;
  }

  .dif-item::before {
    display: none !important;
  }

  .dif-item {
    padding: 0;
    border-bottom: none;
  }

  .dif-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 100%;
    margin: 0;
  }

  /* Contato */
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* WhatsApp */
  .whatsapp-btn {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  #hero-cta-btn,
  .btn-play-outline,
  .btn-green {
    width: 100%;
    justify-content: center;
    height: 52px;
    font-size: 13px;
  }
}

/* ================================================
   NOVA SEÇÃO 2 (Adicionado)
   ================================================ */
#videos.secao-videos {
  position: relative;
  background: #f5f1e8;
  padding: 90px 0 90px;
  overflow: hidden;
}

.secao2-flor {
  position: absolute;
  left: 38px;
  bottom: -8px;
  width: 80px;
  height: 80px;
  opacity: .42;
  pointer-events: none;
}

.secao-videos-grid {
  display: grid;
  grid-template-columns: 280px 1fr 330px;
  gap: 42px;
  align-items: center;
}

.videos-copy h2 {
  font-family: var(--font-sans);
  font-size: 30px;
  line-height: 1.28;
  font-weight: 400;
  color: var(--color-navy);
}

.videos-copy h2 strong {
  font-weight: 800;
}

.videos-line {
  display: block;
  width: 58px;
  height: 3px;
  background: var(--color-green);
  margin: 32px 0 26px;
}

.videos-copy p {
  max-width: 245px;
  font-size: 17px;
  line-height: 1.55;
  color: #334155;
  font-weight: 500;
}

.video-main-card {
  position: relative;
  width: 100%;
  height: 340px;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #0f2a1a;
  box-shadow: 0 18px 45px rgba(6, 27, 46, .12);
  cursor: pointer;
  display: block;
}

.video-main-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(11, 54, 20, .22), rgba(31, 120, 15, .58));
}

.video-main-title {
  position: absolute;
  top: 78px;
  right: 72px;
  font-family: var(--font-sans);
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  text-align: left;
  text-shadow: 0 4px 14px rgba(0,0,0,.25);
}

.video-map-pin {
  position: absolute;
  right: 164px;
  top: 176px;
  width: 32px;
  height: 42px;
  background: #c9143d;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 7px 16px rgba(0,0,0,.22);
}

.video-map-pin::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  background: #fff;
  border-radius: 50%;
  top: 10px;
  left: 10px;
}

.video-side-list {
  display: grid;
  gap: 18px;
}

.video-side-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.video-thumb {
  position: relative;
  height: 74px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(6, 27, 46, .10);
  display: block;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}

.play-circle::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 9px;
  width: 0;
  height: 0;
  border-left: 9px solid var(--color-navy);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.video-side-text strong {
  display: block;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 14px;
}

.video-side-text small {
  display: block;
  font-size: 15px;
  line-height: 1.55;
  color: #526170;
  font-weight: 500;
}

#cidade-alpha.secao-cidade-alpha {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 600px;
  background: #f5f1e8;
  border-top: 1px solid rgba(6, 27, 46, .12);
}

.cidade-alpha-slider {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.cidade-alpha-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .9s ease;
}

.cidade-alpha-slider img.active {
  opacity: 1;
}

.slider-bullets {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-bullets .bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-bullets .bullet.active {
  background: var(--color-white);
  transform: scale(1.3);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slider-bullets .bullet:hover {
  background: var(--color-white);
}

.cidade-alpha-content {
  padding: 46px 40px 34px;
  max-width: 800px;
  align-self: center;
}

.cidade-alpha-label {
  display: block;
  color: var(--color-green-dark);
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 8px;
}

.cidade-alpha-content h2 {
  font-family: var(--font-serif);
  color: var(--color-navy);
  font-size: 50px;
  line-height: .95;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cidade-alpha-line {
  display: block;
  width: 58px;
  height: 3px;
  background: var(--color-green);
  margin: 16px 0 12px;
}

.cidade-alpha-content p {
  max-width: 610px;
  font-size: 16px;
  line-height: 1.55;
  color: #263342;
  font-weight: 500;
}

.cidade-alpha-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
}

.cidade-stat {
  position: relative;
  text-align: center;
  padding: 0 12px;
}

.cidade-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 1px;
  height: 78px;
  background: rgba(6, 27, 46, .18);
}

.cidade-stat img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  margin: 0 auto 10px;
}

.cidade-stat strong {
  display: block;
  font-size: 27px;
  line-height: 1;
  font-weight: 500;
  color: var(--color-navy);
}

.cidade-stat > span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.3;
  color: #354252;
  font-weight: 500;
}

.youtube-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(0,0,0,.84);
}

.youtube-modal.open {
  display: flex;
}

.youtube-modal-content {
  width: min(960px, 92vw);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
}

.youtube-modal-content iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-modal-close {
  position: absolute;
  top: 28px;
  right: 34px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--color-navy);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .secao-videos-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .videos-copy p {
    max-width: 620px;
  }

  .video-main-card {
    height: 420px;
  }

  .video-side-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-side-card {
    grid-template-columns: 180px 1fr;
  }

  #cidade-alpha.secao-cidade-alpha {
    grid-template-columns: 1fr;
  }

  .cidade-alpha-slider {
    min-height: 430px;
  }
}

@media (max-width: 768px) {
  #videos.secao-videos {
    padding: 42px 0 34px;
  }

  .secao2-flor {
    left: -18px;
    bottom: 8px;
    opacity: .24;
  }

  .videos-copy h2 {
    font-size: 26px;
  }

  .video-main-card {
    height: 280px;
    border-radius: 16px;
  }

  .video-main-title {
    top: 56px;
    right: 34px;
    font-size: 28px;
  }

  .video-map-pin {
    right: 118px;
    top: 146px;
  }

  .video-side-list {
    grid-template-columns: 1fr;
  }

  .video-side-card {
    grid-template-columns: 145px 1fr;
    gap: 16px;
  }

  .video-thumb {
    height: 118px;
  }

  .play-circle {
    width: 54px;
    height: 54px;
  }

  .play-circle::after {
    left: 22px;
    top: 17px;
    border-left-width: 15px;
    border-top-width: 10px;
    border-bottom-width: 10px;
  }

  .cidade-alpha-slider {
    min-height: 285px;
  }

  .cidade-alpha-content {
    padding: 38px 24px 42px;
  }

  .cidade-alpha-label {
    font-size: 22px;
  }

  .cidade-alpha-content h2 {
    font-size: 40px;
  }

  .cidade-alpha-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

  .cidade-stat:nth-child(even)::after {
    display: none;
  }
}

@media (max-width: 520px) {
  .video-side-card {
    grid-template-columns: 1fr;
  }

  .video-thumb {
    height: 190px;
  }

  .cidade-stat {
    padding: 0 10px;
  }

  .cidade-stat img {
    width: 32px;
    height: 32px;
    margin-bottom: 6px;
  }

  .cidade-stat strong {
    font-size: 20px;
  }

  .cidade-stat > span {
    font-size: 11px;
  }
}

/* ================================================
   CONTROLES DA PLAYLIST
   ================================================ */
.yt-control-btn {
  background: var(--color-offwhite);
  border: 1px solid var(--color-border-dark);
  color: var(--color-navy);
  border-radius: 6px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.yt-control-btn:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

/* ================================================
   ANIMAÇÕES (REVEAL)
   ================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transition: opacity 0.65s ease-out, transform 0.65s ease-out;
    transition-delay: var(--reveal-delay, 0s);
  }
  .reveal[data-anim="fade-up"] {
    transform: translateY(28px);
  }
  .reveal[data-anim="fade-left"] {
    transform: translateX(-28px);
  }
  .reveal[data-anim="fade-right"] {
    transform: translateX(28px);
  }
  .reveal[data-anim="zoom-soft"] {
    transform: scale(0.97);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ================================================
   LGPD BANNER
   ================================================ */
.lgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  font-size: 14px;
  color: var(--color-gray-dark);
}

.lgpd-banner.show {
  transform: translateY(0);
}

.lgpd-content {
  flex: 1;
  margin-right: 24px;
}

.lgpd-content p {
  margin: 0;
  line-height: 1.5;
}

.lgpd-content a {
  color: var(--color-green-dark);
  text-decoration: underline;
  font-weight: 500;
}

.lgpd-btn {
  background-color: var(--color-green-light);
  color: var(--color-green-dark);
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.lgpd-btn:hover {
  background-color: var(--color-green-dark);
  color: var(--color-white);
}

@media (max-width: 768px) {
  .lgpd-banner {
    flex-direction: column;
    padding: 16px;
    text-align: center;
  }
  .lgpd-content {
    margin-right: 0;
    margin-bottom: 12px;
    font-size: 13px;
  }
  .lgpd-btn {
    width: 100%;
  }
}


/* ═══════════════════════════════════════════════
   WORDPRESS — ESTILOS EXTRAS
   ═══════════════════════════════════════════════ */

/* ── Hero Compacto (páginas internas) ── */
.hero-compact {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-compact .hero-bg-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-compact .hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,50,30,0.75) 0%, rgba(0,30,20,0.55) 100%);
  z-index: 1;
}
.hero-compact .hero-compact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 40px;
}
.hero-compact .hero-compact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
  .hero-compact {
    min-height: 200px;
  }
  .hero-compact .hero-compact-title {
    font-size: 1.8rem;
  }
  .hero-compact .hero-compact-content {
    padding: 72px 16px 32px;
  }
}

/* ── Conteúdo de página (Política, Termos) ── */
.page-content {
  padding: 60px 24px;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
}
.page-content h1 {
  font-size: 2.5rem;
  color: var(--color-green-dark);
  margin-bottom: 24px;
}
.page-content h2 {
  font-size: 1.5rem;
  color: var(--color-text);
  margin-top: 32px;
  margin-bottom: 16px;
}
.page-content p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: var(--color-gray-dark);
}
.page-content ul {
  margin-left: 24px;
  margin-bottom: 16px;
  color: var(--color-gray-dark);
}
.page-content li {
  margin-bottom: 8px;
}

/* ── Lightbox simples (Lazer) ── */
.terras6-lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}
.terras6-lightbox.is-open {
  display: flex;
}
.terras6-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.terras6-lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 100000;
  line-height: 1;
  transition: opacity 0.2s;
}
.terras6-lightbox-close:hover {
  opacity: 0.7;
}
