/* =========================================================
   MÃES INSPIRADORAS — Landing Page
   ========================================================= */

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

:root {
  --pink:        #e6007e;
  --pink-dark:   #bf0069;
  --pink-mid:    #f04a9a;
  --pink-light:  #fce4f1;
  --pink-soft:   #fff4fb;
  --amber:       #fbb03b;
  --amber-light: #fff6e5;
  --cream:       #fdf7f2;
  --white:       #ffffff;
  --dark:        #1e1226;
  --body:        #4a3a42;
  --muted:       #8a7080;
  --border:      #f0dcea;

  --font: 'Poppins', system-ui, sans-serif;
  --r:    12px;
  --s1:   0 2px 12px rgba(230,0,126,0.06);
  --s2:   0 6px 28px rgba(230,0,126,0.12);
  --s3:   0 14px 48px rgba(230,0,126,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

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

/* ---- Shared ---- */
.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 18px;
}

h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--pink);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, opacity 0.18s;
  cursor: pointer;
  white-space: nowrap;
}

.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn:hover { transform: translateY(-2px); }

.btn--sm  { font-size: 0.82rem; padding: 8px 20px; }
.btn--lg  { font-size: 0.97rem; padding: 15px 32px; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(230,0,126,0.32);
}
.btn--primary:hover {
  background: var(--pink-dark);
  box-shadow: 0 6px 24px rgba(230,0,126,0.45);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.28);
}
.btn--whatsapp:hover { background: #1dbb59; }

.btn--whatsapp-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--whatsapp-outline:hover { background: rgba(255,255,255,0.10); }

.btn--outline {
  background: transparent;
  color: var(--pink);
  border-color: var(--pink);
}
.btn--outline:hover { background: var(--pink-light); }

.btn--white {
  background: var(--white);
  color: var(--pink);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.btn--white:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.16); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: var(--white);
  box-shadow: 0 1px 12px rgba(0,0,0,0.07);
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

/* Logo e botão ficam nas cores normais enquanto nav é branco */
.nav .nav__logo { filter: none; }
.nav .btn--primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(230,0,126,0.32);
}

.nav--scrolled {
  background: var(--pink);
  box-shadow: 0 2px 16px rgba(100,0,50,0.25);
  padding: 10px 0;
}

/* Logo branca e botão âmbar quando nav fica rosa */
.nav--scrolled .nav__logo { filter: brightness(0) invert(1); }
.nav--scrolled .btn--primary {
  background: var(--amber);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(251,176,59,0.40);
}

.nav__info {
  display: flex;
  align-items: center;
  gap: 6px 14px;
  flex-wrap: wrap;
}

.nav__info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--body);
  white-space: nowrap;
  transition: color 0.3s;
}

.nav__info-item svg {
  width: 13px; height: 13px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: stroke 0.3s;
}

.nav__info-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background 0.3s;
}

/* Cores quando nav está rosa */
.nav--scrolled .nav__info-item     { color: rgba(255,255,255,0.90); }
.nav--scrolled .nav__info-item svg { stroke: var(--amber); }
.nav--scrolled .nav__info-sep      { background: rgba(255,255,255,0.30); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo { height: 42px; width: auto; }

/* =========================================================
   HERO  –  fundo rosa forte, elementos em branco/âmbar
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  background: linear-gradient(150deg, #6b0040 0%, var(--pink) 55%, #ff7fc2 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero__deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__deco-circle--1 {
  width: 640px; height: 640px;
  background: rgba(255,255,255,0.07);
  top: -220px; right: -180px;
}
.hero__deco-circle--2 {
  width: 380px; height: 380px;
  background: rgba(251,176,59,0.12);
  bottom: -130px; left: -90px;
}
.hero__deco-circle--3 {
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.05);
  bottom: 100px; right: 140px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__logo {
  height: clamp(52px, 10vw, 90px);
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 28px;
}

.hero__info-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.hero__info-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 7px 14px;
  border-radius: 50px;
}

.hero__info-item svg {
  width: 14px; height: 14px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.hero__info-sep { display: none; }

/* Badge de lote ativo no hero */
.hero__lote-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amber);
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(251,176,59,0.40);
}

.hero__lote-badge-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(0,0,0,0.30);
  flex-shrink: 0;
}

.hero__lote-badge-num { font-weight: 800; }
.hero__lote-badge-preco { font-weight: 800; font-size: 1rem; }
.hero__lote-badge-vagas { font-weight: 500; opacity: 0.75; font-size: 0.78rem; }

/* Grupo botão + próximos lotes colados */
.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__proximos-lotes {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 6px;
  flex-wrap: wrap;
}

.hero__proximos-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.50);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__proximo-item {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}

.hero__proximo-arrow {
  width: 11px; height: 11px;
  stroke: rgba(255,255,255,0.35);
  flex-shrink: 0;
}

/* Coffee badge wrapper */
.hero__bottom-row {
  margin-top: 8px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

/* Botão principal com info do lote integrada */
.hero__cta-vaga {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 13px 28px;
  white-space: normal;
}

.hero__cta-vaga-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.hero__cta-vaga-txt {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero__cta-vaga-lote {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.72;
  line-height: 1;
}

/* Botão principal vira âmbar sobre o fundo rosa */
.hero .btn--primary {
  background: var(--amber);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(251,176,59,0.40);
}
.hero .btn--primary:hover {
  background: #e09820;
  box-shadow: 0 6px 28px rgba(251,176,59,0.55);
}

.hero__coffee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.30);
  color: rgba(255,255,255,0.92);
  font-size: 0.83rem;
  padding: 8px 18px;
  border-radius: 50px;
}

.hero__coffee-badge svg {
  width: 16px; height: 16px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__coffee-badge strong { color: var(--white); }

.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2.2s ease-in-out infinite;
}

.hero__scroll-hint svg {
  width: 26px; height: 26px;
  stroke: rgba(255,255,255,0.50);
  fill: none;
  stroke-width: 2;
}

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* =========================================================
   FOTO DAS MÃES
   ========================================================= */
.photo-section {
  width: 100%;
  line-height: 0;
  position: relative;
}


.photo-section__img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.photo-section__placeholder {
  width: 100%;
  height: 360px;
  background: var(--pink-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-top: 2px dashed rgba(230,0,126,0.2);
  border-bottom: 2px dashed rgba(230,0,126,0.2);
}

.photo-section__placeholder svg {
  width: 48px; height: 48px;
  stroke: var(--pink-mid);
  opacity: 0.5;
}

.photo-section__placeholder p {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}

.photo-section__label {
  position: absolute;
  bottom: 16px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 50px;
  box-shadow: var(--s1);
  pointer-events: none;
  z-index: 2;
}

/* =========================================================
   SOBRE
   ========================================================= */
.sobre {
  padding: 96px 0;
  background: var(--white);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 64px;
  align-items: start;
}

/* Decoração lateral — três círculos sobrepostos */
.sobre__deco {
  position: relative;
  height: 240px;
  margin-top: 40px;
  flex-shrink: 0;
}

.deco-c {
  position: absolute;
  border-radius: 50%;
}
.deco-c--1 { width: 160px; height: 160px; background: var(--pink-light); top: 0;    left: 0;  }
.deco-c--2 { width: 100px; height: 100px; background: var(--amber-light); bottom: 0; right: 0; }
.deco-c--3 { width:  64px; height:  64px; background: var(--pink-light);  bottom: 60px; left: 60px; opacity: .6; }

.sobre__texto p {
  color: var(--body);
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 300;
}

.sobre__texto p strong { font-weight: 600; color: var(--dark); }

.sobre__destaques {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.destaque {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--cream);
  border-radius: var(--r);
  border-left: 3px solid var(--pink);
  transition: transform 0.2s, box-shadow 0.2s;
}

.destaque:hover {
  transform: translateX(4px);
  box-shadow: var(--s1);
}

.destaque__icone {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.destaque__icone svg {
  width: 17px; height: 17px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.destaque strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.destaque p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  font-weight: 400;
}

/* =========================================================
   DETALHES
   ========================================================= */
.detalhes {
  padding: 72px 0;
  background: var(--cream);
}

.detalhes__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}

.detalhe-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--s1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.detalhe-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--s2);
}

.detalhe-card--amber {
  background: linear-gradient(135deg, var(--amber), #ffd075);
}

.detalhe-card__icone {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.detalhe-card__icone svg {
  width: 22px; height: 22px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detalhe-card--amber .detalhe-card__icone {
  background: rgba(255,255,255,0.40);
}

.detalhe-card--amber .detalhe-card__icone svg {
  stroke: var(--dark);
}

.detalhe-card h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.detalhe-card p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.detalhe-card small {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 400;
}

.detalhe-card--amber h3,
.detalhe-card--amber p,
.detalhe-card--amber small {
  color: var(--dark);
}

.detalhe-card--amber h3 { color: rgba(30,18,38,0.65); }

/* =========================================================
   PALESTRANTE — Gilmara Canestri
   ========================================================= */
.palestrante {
  padding: 96px 0;
  background: var(--pink-soft);
  overflow: hidden;
}

.palestrante__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: center;
}

/* Foto */
.palestrante__foto-wrap {
  position: relative;
}

.palestrante__foto {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: left top;
  border-radius: 20px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: var(--s3);
  border: 3px solid var(--amber);
}

.palestrante__foto-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--pink-light);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  z-index: 2;
  box-shadow: var(--s2);
  border: 2px dashed rgba(230,0,126,0.25);
}

.palestrante__foto-placeholder svg {
  width: 56px; height: 56px;
  stroke: var(--pink-mid);
  opacity: 0.45;
}

.palestrante__foto-placeholder span {
  font-size: 0.85rem;
  color: var(--muted);
}

.palestrante__foto-deco {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 16px;
  left: 16px;
  border-radius: 20px;
  background: var(--pink);
  opacity: 0.20;
  z-index: 1;
}

/* Bio */
.palestrante__bio h2 { margin-bottom: 12px; }

.palestrante__cargo {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--pink);
  line-height: 1.7;
  margin-bottom: 22px;
  padding-left: 14px;
  border-left: 3px solid var(--amber);
}

.palestrante__bio p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body);
  margin-bottom: 14px;
  line-height: 1.75;
}

.palestrante__bio p strong { font-weight: 700; color: var(--dark); }

.palestrante__selos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.palestrante__selo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 50px;
  box-shadow: var(--s1);
}

.palestrante__selo svg {
  width: 14px; height: 14px;
  stroke: var(--pink); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* =========================================================
   LOCAL
   ========================================================= */
.local {
  padding: 96px 0;
  background: var(--cream);
}

.local h2 { margin-bottom: 32px; }

.local__card {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--s2);
  border: 1px solid var(--border);
}

.local__info {
  padding: 44px 36px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.local__info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

.local__info address {
  font-style: normal;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
}

.local__info address svg {
  width: 17px; height: 17px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 4px;
}

.local__mapa { min-height: 340px; }
.local__mapa iframe { display: block; }

/* =========================================================
   INGRESSOS
   ========================================================= */
.ingressos {
  padding: 96px 0;
  background: var(--white);
}

.ingressos h2 { margin-bottom: 8px; }

.ingressos__sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 44px;
  font-weight: 400;
}

/* ---- Cards de lote ---- */
.lotes {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  margin-bottom: 20px;
  align-items: start;
}

.lote {
  background: var(--white);
  border-radius: var(--r);
  padding: 32px 26px;
  box-shadow: var(--s1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.lote:hover { transform: translateY(-4px); box-shadow: var(--s2); }

.lote--ativo {
  border-color: var(--pink);
  transform: scale(1.03);
  cursor: pointer;
}

.lote--ativo * { cursor: pointer; }

.lote--ativo:hover { transform: scale(1.03) translateY(-4px); }

.lote--esgotado {
  opacity: 0.52;
  pointer-events: none;
}

.lote__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.lote__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
}

.lote__preco {
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  gap: 3px;
}

.lote__cifrao { font-size: 1.1rem; margin-top: 7px; font-weight: 600; }
.lote__centavos { font-size: 1.25rem; margin-top: 9px; color: var(--muted); font-weight: 500; }

/* Barra de progresso por lote */
.lote__progress-wrap { display: flex; flex-direction: column; gap: 7px; }

.lote__progress-track {
  height: 8px;
  background: var(--pink-light);
  border-radius: 8px;
  overflow: hidden;
}

.lote__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink-dark), var(--pink));
  border-radius: 8px;
  transition: width 0.9s cubic-bezier(.4,0,.2,1);
}

.lote__progress-fill--full { background: var(--muted); }

.lote__progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
}

.lote__progress-info span:last-child { font-weight: 600; color: var(--pink); }

.lote--esgotado .lote__progress-info span:last-child { color: var(--muted); }

/* Itens de features */
.lote__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.lote__items li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--body);
  font-weight: 400;
}

.lote__items li svg {
  width: 15px; height: 15px;
  stroke: var(--pink);
  flex-shrink: 0;
}

/* Lote esgotado */
.lote__esgotado {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cream);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
}

.lote__esgotado svg {
  width: 15px; height: 15px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Stretched link: cobre o card inteiro com área clicável do botão ativo */
.lote-btn:not(.lote-btn--futuro)::after {
  content: '';
  position: absolute;
  inset: 0;
  cursor: pointer;
}

/* Botão futuro */
.lote-btn--futuro {
  opacity: 0.40;
  cursor: not-allowed;
  pointer-events: none;
  border-style: dashed;
}


.ingressos__aviso {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  padding: 18px 28px;
  background: linear-gradient(135deg, var(--amber-light), #fff3cc);
  border-radius: var(--r);
  border: 2px solid var(--amber);
  margin-top: 40px;
  box-shadow: 0 4px 18px rgba(251,176,59,0.22);
  text-align: center;
}

.ingressos__aviso strong { font-weight: 700; color: #7a4f00; }

.ingressos__aviso svg {
  width: 22px; height: 22px;
  stroke: #c97d00;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta-final {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(150deg, #5a0035 0%, #c80070 50%, var(--pink-mid) 100%);
  text-align: center;
  overflow: hidden;
}

/* Círculo decorativo sutil no fundo */
.cta-final::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -200px; right: -150px;
  pointer-events: none;
}

.cta-final__inner { position: relative; z-index: 1; }

.cta-final__logo {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  margin: 0 auto 28px;
  opacity: 0.95;
}

.cta-final__inner h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.cta-final__inner p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 36px;
}

.cta-final__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--dark);
  padding: 36px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer__logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.footer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 860px) {
  .sobre__grid     { grid-template-columns: 1fr; }
  .sobre__deco     { display: none; }
  .detalhes__grid  { grid-template-columns: repeat(2,1fr); }
  .local__card     { grid-template-columns: 1fr; }
  .local__mapa     { min-height: 260px; }
  .lotes           { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .lote--ativo     { transform: scale(1); }
  .lote--ativo:hover { transform: translateY(-4px); }
}

@media (max-width: 860px) {
  .nav__info { display: none; }
}

@media (max-width: 560px) {
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__info-sep { display: none; }
  .hero__info-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .cta-final__btns { flex-direction: column; align-items: center; }
  .local__info { padding: 28px 22px; }
  .detalhes__grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   HERO — headline copy
   ========================================================= */
.hero__headline {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  max-width: 680px;
  margin-bottom: 18px;
}
.hero__headline em { font-style: italic; font-weight: 400; color: var(--amber); }

.hero__sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero__sub strong { font-weight: 600; color: var(--white); }

/* =========================================================
   DOR / AGITAÇÃO
   ========================================================= */
.dor { padding: 96px 0; background: var(--cream); }

.dor__inner > h2 { max-width: 600px; }

.dor__intro {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body);
  max-width: 580px;
  margin-bottom: 44px;
}

.dor__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.dor__item {
  background: var(--white);
  border-radius: var(--r);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--s1);
  border-left: 3px solid var(--pink-light);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dor__item:hover { border-left-color: var(--pink); box-shadow: var(--s2); }

.dor__item-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--pink-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dor__item-icon svg {
  width: 18px; height: 18px;
  stroke: var(--pink); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.dor__item p { font-size: 0.93rem; color: var(--body); font-weight: 400; }

.dor__respiro {
  background: linear-gradient(135deg, var(--pink-light), var(--amber-light));
  border-radius: var(--r);
  padding: 28px 32px;
  border-left: 4px solid var(--pink);
}
.dor__respiro p {
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 400;
  font-style: italic;
}
.dor__respiro p strong { font-style: normal; font-weight: 700; }

/* =========================================================
   PROMESSA
   ========================================================= */
.promessa { padding: 96px 0; background: var(--white); }

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

.promessa__texto h2 { margin-bottom: 18px; }
.promessa__texto p { font-size: 1rem; font-weight: 300; color: var(--body); margin-bottom: 16px; }
.promessa__texto p strong { font-weight: 600; color: var(--dark); }
.promessa__texto .btn { margin-top: 10px; }

.promessa__card {
  background: var(--cream);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--s2);
  border: 1px solid var(--border);
}

.promessa__card-header {
  background: var(--pink);
  color: var(--white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
}
.promessa__card-header svg {
  width: 18px; height: 18px;
  stroke: var(--white); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.promessa__list {
  list-style: none;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.promessa__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}
.promessa__list li svg {
  width: 16px; height: 16px;
  stroke: var(--pink); fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* Coluna direita da promessa: card estático + card dinâmico */
.promessa__lado-direito {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Card dinâmico do lote atual */
.lote-inline {
  background: var(--white);
  border: 2px solid var(--pink);
  border-radius: var(--r);
  padding: 22px 24px;
  box-shadow: var(--s2);
}

.lote-inline__topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.lote-inline__tag {
  display: inline-flex;
  align-items: center;
  background: var(--pink-light);
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.lote-inline__vagas {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.lote-inline__preco-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.lote-inline__de {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: line-through;
}

.lote-inline__preco {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: var(--pink);
  font-weight: 700;
  line-height: 1;
}

.lote-inline__rs {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 4px;
}

#lote-inline-preco-int {
  font-size: 2.2rem;
  font-weight: 800;
}

.lote-inline__cts {
  font-size: 1rem;
  font-weight: 600;
}

.lote-inline__prog-track {
  height: 8px;
  background: var(--pink-light);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 8px;
}

.lote-inline__prog-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--pink-mid));
  border-radius: 50px;
  transition: width 0.6s ease;
}

.lote-inline__prog-txt {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.lote-inline__btn {
  font-size: 0.88rem;
  padding: 12px 20px;
}

/* =========================================================
   VIVÊNCIAS
   ========================================================= */
.vivencias { padding: 96px 0; background: var(--cream); }

.vivencias__intro {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body);
  max-width: 560px;
  margin-bottom: 48px;
}

.vivencias__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.vivencia-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 22px;
  box-shadow: var(--s1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.vivencia-card:hover { transform: translateY(-4px); box-shadow: var(--s2); }

.vivencia-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--pink-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.vivencia-card__icon svg {
  width: 22px; height: 22px;
  stroke: var(--pink); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.vivencia-card h3 {
  font-size: 1rem; font-weight: 600;
  color: var(--dark); margin-bottom: 8px;
}
.vivencia-card p { font-size: 0.87rem; font-weight: 300; color: var(--body); line-height: 1.6; }

/* =========================================================
   APRENDIZADOS
   ========================================================= */
.aprendizados { padding: 96px 0; background: var(--white); }

.aprendizados__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.aprendizados__texto p { font-size: 1rem; font-weight: 300; color: var(--body); margin-top: 4px; }

.aprendizados__items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.aprendizado-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.aprendizado-item__num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink-light);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  text-align: right;
}

.aprendizado-item h3 {
  font-size: 1rem; font-weight: 600;
  color: var(--dark); margin-bottom: 6px;
}
.aprendizado-item p { font-size: 0.87rem; font-weight: 300; color: var(--body); }

/* =========================================================
   PARA QUEM É
   ========================================================= */
.para-quem { padding: 96px 0; background: var(--cream); }
.para-quem h2 { margin-bottom: 36px; }

.para-quem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 44px;
}

.para-quem__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--r);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--dark);
  box-shadow: var(--s1);
}
.para-quem__item svg {
  width: 18px; height: 18px; flex-shrink: 0;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
.para-quem__item--sim svg { stroke: var(--pink); fill: none; }

.para-quem__cta {
  background: linear-gradient(135deg, var(--pink-soft), var(--amber-light));
  border-radius: var(--r);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  border: 1px solid var(--border);
}
.para-quem__cta p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  max-width: 460px;
}

/* =========================================================
   CTA FINAL — rodapé
   ========================================================= */
.cta-final__rodape {
  margin-top: 28px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

/* =========================================================
   RESPONSIVE — novas seções
   ========================================================= */
@media (max-width: 860px) {
  .dor__grid            { grid-template-columns: 1fr; }
  .promessa__inner      { grid-template-columns: 1fr; }
  .vivencias__grid      { grid-template-columns: repeat(2,1fr); }
  .aprendizados__inner  { grid-template-columns: 1fr; gap: 40px; }
  .para-quem__grid      { grid-template-columns: 1fr; }
  .para-quem__cta       { flex-direction: column; align-items: flex-start; padding: 28px; }
  .palestrante__inner   { grid-template-columns: 1fr; gap: 40px; }
  .palestrante__foto-wrap { max-width: 300px; }
}

@media (max-width: 560px) {
  .vivencias__grid { grid-template-columns: 1fr; }
  .dor__respiro    { padding: 22px 20px; }
}
