/* ============ AMAZÔNIA NUA — Landing Page ============ */
:root {
  --light: #eaeaea;
  --dark: #474646;
  --dark-2: #3a3737;
  --white: #ffffff;
  --heading: 'Montserrat', sans-serif;
  --body: 'Lato', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--dark);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
}

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

p + p { margin-top: 1.4em; }

strong { font-weight: 700; }

/* ---------- shared ---------- */
.rule {
  border: none;
  height: 1px;
  background: var(--dark);
  width: 100%;
}
.rule--light { background: var(--white); }
.rule--full { margin-top: 3.5rem; }

.section-title {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.section-title--light { color: var(--white); }

.chip {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: .35em .7em;
}

.square-accent {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--white);
  flex: none;
}

/* ---------- 01 · HERO ---------- */
.hero {
  display: grid;
  grid-template-columns: 47% 53%;
  min-height: 100vh;
  background: var(--light);
}
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vh 6vw;
}
.hero__logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8vh;
}
.hero__logo-row {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(2.6rem, 4.6vw, 4.4rem);
  letter-spacing: .38em;
  line-height: 1.1;
  text-transform: uppercase;
}
.hero__logo-row--box {
  background: var(--dark);
  color: var(--white);
  padding: .18em .1em .18em .45em;
  align-self: flex-start;
}
.hero__logo-row--nua {
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: .45em;
}
.hero__logo-block {
  width: 2.6em;
  height: 1.15em;
  background: var(--dark);
  flex: none;
}
.hero__tagline {
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 5vh;
}
.hero__place {
  font-family: var(--body);
  font-weight: 700;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  letter-spacing: .06em;
  margin-bottom: 5vh;
}
.hero__date {
  font-family: var(--heading);
  font-weight: 600;
  letter-spacing: .3em;
  font-size: clamp(.85rem, 1.1vw, 1.1rem);
  background: var(--dark);
  color: var(--white);
  padding: .8em 1.4em;
  align-self: flex-start;
}
.hero__date strong { font-weight: 800; }
.hero__right { overflow: hidden; }
.hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- 02 · O CHAMADO ---------- */
.chamado {
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 4vw;
  padding: 5vw 6vw 5vw 5vw;
  background: var(--light);
  align-items: center;
}
.chamado__img img { width: 100%; height: auto; }
.chip-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.7vw, 1.6rem);
  letter-spacing: .3em;
  margin-bottom: 2.2rem;
}
.chamado__cta { margin-top: 2em; }
.chamado__text .rule { margin-top: 3.5rem; }

/* ---------- 03/04 · BIOS ---------- */
.bio {
  display: grid;
  grid-template-columns: 56% 44%;
  background: var(--dark);
  color: var(--white);
}
.bio__text {
  padding: 9vh 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
}
.bio__rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4rem;
}
.bio__img { overflow: hidden; }
.bio__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- 05 · QUOTE ---------- */
.quote-block {
  background: var(--light);
  padding: 14vh 8vw 0;
}
.quote-block__text {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 2.3rem);
  letter-spacing: .28em;
  line-height: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 6vw;
}
.chip--big { margin-top: .3em; }
.quote-block .rule--full { margin-top: 10vh; }

/* ---------- 06 · TERRITÓRIO ---------- */
.territorio {
  position: relative;
  background: url('assets/foto-05.webp') center / cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10vh 8vw;
}
.territorio::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.15), rgba(0,0,0,.45));
}
.territorio__frame {
  position: absolute;
  left: 11vw;
  top: 22vh;
  width: min(24vw, 340px);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255,255,255,.85);
}
.territorio__text {
  position: relative;
  color: var(--white);
  max-width: 560px;
  text-align: justify;
}

/* ---------- 07 · DESPIR ---------- */
.despir {
  position: relative;
  background: url('assets/foto-06.webp') center / cover no-repeat;
  min-height: 100vh;
}
.despir__quote {
  position: absolute;
  left: 12vw;
  top: 34vh;
  font-family: var(--body);
  font-weight: 300;
  font-size: clamp(1.1rem, 1.9vw, 1.8rem);
  letter-spacing: .5em;
  line-height: 2.2;
  color: var(--white);
}
.despir__chip {
  background: rgba(180,180,180,.55);
  color: var(--white);
  padding: .1em .4em;
}
.despir__inset {
  position: absolute;
  right: 4vw;
  top: 16vh;
  width: min(38vw, 560px);
}
.despir__inset img { width: 100%; }

/* ---------- 08 · PARA QUEM É ---------- */
.paraquem {
  background: var(--light);
  padding: 6vh 7vw 10vh;
}
.paraquem .rule--full { margin: 0 0 7vh; }
.paraquem .section-title { margin-top: 3rem; }
.paraquem p { margin-top: 1.4em; text-align: justify; }

/* ---------- 09 · RASTRO ---------- */
.rastro { background: var(--light); }
.rastro__banner img {
  width: 100%;
  height: 46vh;
  object-fit: cover;
  object-position: center 20%;
}
.rastro__quote {
  padding: 12vh 8vw 14vh 14vw;
  position: relative;
}
.rastro__quote p {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  letter-spacing: .22em;
  line-height: 2.1;
  border-left: 2px solid var(--dark);
  padding-left: 5vw;
}

/* ---------- 10 · PILARES ---------- */
.pilares {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 4vw;
  background: var(--dark);
  color: var(--white);
  padding: 10vh 6vw;
  align-items: center;
}
.pilares__img img { width: 100%; height: auto; }
.pilares__text p { margin-top: 1.5em; text-align: justify; }
.pilares__text .section-title { margin-bottom: .5rem; }

/* ---------- 11-13/16 · GALERIAS ---------- */
.galeria { padding: 6vh 4vw; }
.galeria--dark { background: var(--dark); }
.galeria--light { background: var(--light); }
.galeria img { width: 100%; }
.framed {
  background: var(--white);
  padding: 14px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.05);
}

/* ---------- 14 · A JORNADA ---------- */
.jornada {
  background: var(--light);
  padding: 10vh 7vw 8vh;
}
.jornada__dia { margin-top: 2.2rem; }
.jornada__dia h3 {
  font-family: var(--body);
  font-weight: 700;
  font-size: 1em;
}
.jornada__dia p { text-align: justify; }
.jornada__nota { margin-top: 2.5rem; }

/* ---------- 15/17 · CÍRCULOS ---------- */
.circulo-section {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  background: var(--light);
  padding: 12vh 7vw;
  gap: 4vw;
}
.circulo {
  width: min(30vw, 420px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid #cfcfcf;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.circulo__inner {
  width: 82%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--dark-2);
  box-shadow: 18px 22px 30px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.circulo__inner span {
  color: var(--white);
  font-family: var(--body);
  font-weight: 300;
  letter-spacing: .5em;
  font-size: clamp(.8rem, 1.3vw, 1.2rem);
  line-height: 2.4;
  text-align: center;
  padding-left: .5em;
}
.circulo-section__text p { margin-top: 1.6em; }
.clima-dash { margin-top: 0 !important; font-weight: 700; }

/* ---------- 18 · INVESTIMENTO ---------- */
.investimento {
  display: grid;
  grid-template-columns: 34% 66%;
  min-height: 100vh;
}
.investimento__left {
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8vh 6vw;
}
.investimento__icon { width: min(18vw, 260px); }
.investimento__right {
  background: var(--dark);
  color: var(--white);
  padding: 12vh 9vw 12vh 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.investimento__right h2 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  margin-bottom: 1.2rem;
}
.investimento__right p { margin-top: 1.3em; }
.investimento__preco {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(1.7rem, 2.9vw, 2.9rem);
  margin: .6em 0 !important;
}

/* ---------- 19 · FOOTER ---------- */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 10vh 6vw 5vh;
}
.footer__top {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 5vw;
  align-items: center;
}
.footer__text h2 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  letter-spacing: .24em;
  line-height: 1.6;
  margin-bottom: 2.4rem;
}
.footer__text p { text-align: justify; }
.footer__cta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 3rem !important;
  text-align: left !important;
}
.footer__whats {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark);
  flex: none;
  transition: transform .2s ease;
}
.footer__whats:hover { transform: scale(1.06); }
.footer__whats svg { width: 36px; height: 36px; }
.footer__logo img {
  width: min(26vw, 420px);
  margin: 0 auto;
}
.footer .rule--full { margin: 7vh 0 4vh; }
.footer__bottom img { width: 100%; }

/* ---------- MOVIMENTOS VISUAIS ---------- */
@media (prefers-reduced-motion: no-preference) {

  /* entrada do hero */
  .hero__logo-row {
    opacity: 0;
    transform: translateX(-46px);
    animation: hero-slide 1s cubic-bezier(.22,.61,.36,1) forwards;
  }
  .hero__logo-row:nth-child(1) { animation-delay: .1s; }
  .hero__logo-row:nth-child(2) { animation-delay: .28s; }
  .hero__logo-row:nth-child(3) { animation-delay: .46s; }
  .hero__tagline,
  .hero__place,
  .hero__date {
    opacity: 0;
    transform: translateY(26px);
    animation: hero-up 1s cubic-bezier(.22,.61,.36,1) forwards;
  }
  .hero__tagline { animation-delay: .8s; }
  .hero__place   { animation-delay: 1s; }
  .hero__date    { animation-delay: 1.2s; }
  .hero__right { overflow: hidden; }
  .hero__right img {
    animation: hero-zoom 2.6s ease-out both;
  }

  @keyframes hero-slide {
    to { opacity: 1; transform: translateX(0); }
  }
  @keyframes hero-up {
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes hero-zoom {
    from { transform: scale(1.07); }
    to   { transform: scale(1); }
  }

  /* reveal ao rolar (classes aplicadas via script.js) */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
      opacity .9s cubic-bezier(.22,.61,.36,1),
      transform .9s cubic-bezier(.22,.61,.36,1);
    will-change: opacity, transform;
  }
  figure.reveal,
  img.reveal {
    transform: translateY(32px) scale(1.02);
  }
  .reveal.in-view {
    opacity: 1;
    transform: none;
  }

  /* parallax sutil nas seções com foto de fundo (desktop) */
  @media (min-width: 901px) {
    .territorio,
    .despir { background-attachment: fixed; }
  }

  /* flutuação suave dos círculos */
  .circulo__inner { animation: float-y 6.5s ease-in-out infinite alternate; }
  @keyframes float-y {
    from { transform: translateY(4px); }
    to   { transform: translateY(-10px); }
  }

  /* pulso do botão de WhatsApp */
  .footer__whats { animation: whats-pulse 2.8s ease-out infinite; }
  @keyframes whats-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.45); }
    60%  { box-shadow: 0 0 0 18px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
  }

  /* microinterações */
  .framed { transition: transform .6s cubic-bezier(.22,.61,.36,1); }
  .framed:hover { transform: scale(1.012); }
  .bio__img img,
  .chamado__img img { transition: transform 1.2s ease; }
  .bio__img:hover img,
  .chamado__img:hover img { transform: scale(1.035); }
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 900px) {
  body { font-size: 16px; }
  .hero,
  .chamado,
  .bio,
  .pilares,
  .circulo-section,
  .investimento,
  .footer__top {
    grid-template-columns: 1fr;
  }
  .hero__right { order: -1; max-height: 55vh; }
  .hero__left { padding: 7vh 8vw; }
  .bio__img { order: -1; max-height: 60vh; }
  .bio__text { padding: 7vh 8vw; }
  .territorio { justify-content: center; }
  .territorio__frame { display: none; }
  .despir { min-height: 80vh; }
  .despir__quote { left: 8vw; top: 12vh; }
  .despir__inset { display: none; }
  .circulo { width: 64vw; margin-bottom: 5vh; }
  .investimento__left { padding: 7vh 8vw; }
  .investimento__icon { width: 34vw; }
  .footer__logo { margin-top: 5vh; }
  .footer__logo img { width: 70vw; }
}
