:root {
  color-scheme: light dark;
  --forest-950: #0b211b;
  --forest-900: #14362d;
  --forest-800: #1e4a3d;
  --forest-700: #2c5d4f;
  --sky-100: #e6f2f4;
  --paper: #f6faf7;
  --surface: #eaf2ee;
  --surface-strong: #dceae4;
  --ink: #14362d;
  --muted: #516a61;
  --line: rgba(20, 54, 45, 0.15);
  --gold: #d4a514;
  --gold-hover: #e3bc42;
  --gold-ink: #142018;
  --display: Georgia, "Times New Roman", serif;
  --body: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --shadow: 0 28px 70px rgba(19, 58, 45, 0.16);
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #0b211b;
    --surface: #102c24;
    --surface-strong: #17382f;
    --ink: #f0f6f2;
    --muted: #b1c3bb;
    --line: rgba(224, 239, 231, 0.15);
    --sky-100: #17332d;
    --shadow: 0 28px 70px rgba(0, 9, 6, 0.38);
  }
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--gold);
  color: var(--gold-ink);
  font-weight: 800;
  transform: translateY(-170%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 72px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(11, 33, 27, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2vw, 30px);
  color: #e3eee8;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav > a:not(.nav-cta) {
  transition: color 180ms ease;
}

.site-nav > a:not(.nav-cta):hover {
  color: #ffffff;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 23px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-cta,
.button-primary {
  background: var(--gold);
  color: var(--gold-ink);
  box-shadow: 0 14px 34px rgba(212, 165, 20, 0.2);
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

.nav-cta:active,
.button-primary:active {
  transform: translateY(1px);
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 94px clamp(22px, 6vw, 92px) 42px;
  isolation: isolate;
  background: var(--forest-950);
  color: #f4f8f6;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../assets/amanhecer-com-deus/hero-amanhecer-com-deus.png");
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 29, 24, 0.97) 0%, rgba(7, 29, 24, 0.87) 38%, rgba(7, 29, 24, 0.25) 63%, rgba(7, 29, 24, 0.05) 100%);
}

.hero-copy {
  width: min(48vw, 690px);
}

.eyebrow {
  margin: 0 0 18px;
  color: #f0d375;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

.hero h1,
h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(3.25rem, 4.7vw, 5.2rem);
  line-height: 0.99;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 540px;
  margin: 25px 0 29px;
  color: #dae7e0;
  font-size: clamp(1.03rem, 1.3vw, 1.22rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.text-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  color: #ffffff;
  font-weight: 750;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover {
  border-color: var(--gold-hover);
  color: #f0d375;
}

.ready-strip {
  padding: 18px clamp(22px, 6vw, 92px);
  background: var(--gold);
  color: var(--gold-ink);
  text-align: center;
}

.ready-strip p {
  margin: 0 auto;
  font-size: 0.98rem;
}

.ready-strip strong {
  margin-right: 7px;
}

.section-space {
  padding: clamp(78px, 9vw, 140px) clamp(22px, 6vw, 92px);
}

h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.45rem, 4.4vw, 4.9rem);
  line-height: 1.02;
}

.section-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}

.video-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
}

.steps {
  max-width: 650px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.steps li:first-child {
  border-top: 1px solid var(--line);
}

.steps li > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-900);
  color: #ffffff;
  font-weight: 800;
}

.steps strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1.05rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.video-shell {
  justify-self: center;
  width: min(100%, 390px);
  padding: 12px 12px 17px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.video-shell video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  background: var(--forest-950);
  object-fit: cover;
}

.video-shell p {
  margin: 13px 4px 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

.daily-experience {
  display: grid;
  grid-template-columns: minmax(310px, 0.8fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(60px, 9vw, 150px);
  background: var(--surface);
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 690px;
}

.sun-ring {
  position: absolute;
  width: min(38vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(212, 165, 20, 0.44);
  border-radius: 50%;
}

.sun-ring::before,
.sun-ring::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(212, 165, 20, 0.24);
  border-radius: 50%;
}

.sun-ring::after {
  inset: 25%;
}

.phone-stage img {
  position: relative;
  width: min(290px, 65%);
  filter: drop-shadow(0 28px 35px rgba(19, 58, 45, 0.2));
}

.daily-kicker {
  margin: 0 0 22px;
  color: var(--forest-700);
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-style: italic;
}

@media (prefers-color-scheme: dark) {
  .daily-kicker {
    color: #f0d375;
  }
}

.daily-facts {
  max-width: 700px;
  margin-top: 43px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.daily-facts p {
  margin: 0;
}

.daily-facts strong,
.daily-facts span {
  display: block;
}

.daily-facts strong {
  margin-bottom: 7px;
  color: var(--ink);
}

.daily-facts span {
  color: var(--muted);
  font-size: 0.94rem;
}

.themes-heading {
  max-width: 730px;
  margin-bottom: 54px;
}

.themes-heading p {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.theme-line {
  display: grid;
  grid-template-columns: repeat(7, minmax(155px, 1fr));
  gap: 0;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) transparent;
}

.theme-line figure {
  min-width: 0;
  margin: 0;
  padding: 0 clamp(10px, 1.25vw, 20px);
  border-right: 1px solid var(--line);
  scroll-snap-align: start;
}

.theme-line figure:first-child {
  padding-left: 0;
}

.theme-line figure:last-child {
  padding-right: 0;
  border-right: 0;
}

.theme-line img {
  width: 100%;
  aspect-ratio: 1 / 0.84;
  object-fit: contain;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-line figure:hover img {
  transform: translateY(-6px);
}

.theme-line figcaption {
  margin-top: 15px;
}

.theme-line strong,
.theme-line span {
  display: block;
}

.theme-line strong {
  font-family: var(--display);
  font-size: clamp(1.08rem, 1.4vw, 1.38rem);
}

.theme-line span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.formats {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  background: var(--sky-100);
}

.formats-visual {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.formats-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.format-names {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 35px;
}

.format-names span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: color-mix(in srgb, var(--paper) 60%, transparent);
  font-weight: 750;
}

.production-note {
  max-width: 540px;
  margin: 31px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
}

.sales-title {
  max-width: 760px;
}

.sales-title p {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.13rem;
}

.sales-composition {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  max-width: 1050px;
  margin: 64px 0 0 auto;
}

.sales-promise {
  min-height: 220px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 22px;
  background: var(--surface);
}

.sales-promise-wide {
  grid-row: span 2;
  min-height: 462px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--forest-900);
  color: #f5faf7;
}

.sales-promise strong {
  display: block;
  max-width: 350px;
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.5vw, 2.65rem);
  line-height: 1.05;
}

.sales-promise p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--muted);
}

.sales-promise-wide p {
  color: #bed0c7;
}

.opportunities {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: start;
  background: var(--surface);
}

.opportunities-copy {
  position: sticky;
  top: 110px;
}

.opportunities-copy p {
  max-width: 520px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 20px;
}

.opportunity-grid article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}

.opportunity-grid strong {
  font-family: var(--display);
  font-size: 1.45rem;
}

.opportunity-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.access {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(350px, 0.65fr);
  align-items: center;
  overflow: hidden;
  background: var(--forest-950);
  color: #f2f8f4;
}

.access::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -150px;
  bottom: -320px;
  border: 1px solid rgba(212, 165, 20, 0.35);
  border-radius: 50%;
}

.access-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.access-copy > img {
  width: 190px;
  max-height: 70px;
  margin-bottom: 32px;
  object-fit: contain;
  object-position: left center;
}

.access h2 {
  color: #f2f8f4;
}

.access-copy > p {
  max-width: 610px;
  margin: 24px 0 0;
  color: #c7d8cf;
  font-size: 1.1rem;
}

.access-copy .access-note {
  margin-top: 16px;
  color: #f0d375;
  font-weight: 750;
}

.access-copy .button {
  margin-top: 30px;
}

.access-product {
  position: relative;
  z-index: 1;
  width: min(540px, 100%);
  max-width: 100%;
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.3));
}

.site-footer {
  padding: 26px clamp(22px, 6vw, 92px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--forest-950);
  color: #a8beb3;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-nav > a:not(.nav-cta) {
    display: none;
  }

  .hero-copy {
    width: min(58vw, 620px);
  }

  .daily-facts {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .theme-line {
    grid-template-columns: repeat(7, 180px);
  }
}

@media (max-width: 767px) {
  .site-header {
    min-height: 64px;
    padding: 8px 16px;
  }

  .nav-cta {
    min-height: 44px;
    padding: 10px 18px;
  }

  .hero {
    min-height: 100dvh;
    align-items: flex-end;
    padding: 92px 20px 42px;
  }

  .hero-media {
    background-position: 66% center;
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(7, 29, 24, 0.98) 0%, rgba(7, 29, 24, 0.84) 50%, rgba(7, 29, 24, 0.15) 100%);
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 510px;
    font-size: clamp(2.75rem, 13vw, 4.25rem);
    line-height: 0.98;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-lead {
    max-width: 480px;
    margin: 20px 0 23px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .ready-strip {
    padding: 17px 20px;
    text-align: left;
  }

  .ready-strip strong {
    display: block;
    margin: 0 0 2px;
  }

  .section-space {
    padding: 76px 20px;
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.45rem);
  }

  .video-story,
  .daily-experience,
  .formats,
  .opportunities,
  .access {
    grid-template-columns: 1fr;
  }

  .video-story {
    gap: 48px;
  }

  .steps {
    margin-top: 36px;
  }

  .video-shell {
    width: min(100%, 330px);
  }

  .daily-experience {
    gap: 42px;
  }

  .phone-stage {
    min-height: 510px;
    order: 2;
  }

  .sun-ring {
    width: min(88vw, 480px);
  }

  .phone-stage img {
    width: min(230px, 64vw);
  }

  .daily-copy {
    order: 1;
  }

  .daily-facts {
    margin-top: 35px;
  }

  .themes {
    padding-right: 0;
  }

  .themes-heading {
    padding-right: 20px;
    margin-bottom: 38px;
  }

  .theme-line {
    grid-template-columns: repeat(7, 230px);
    gap: 0;
    padding-right: 20px;
  }

  .theme-line figure {
    padding: 0 15px;
  }

  .theme-line figcaption {
    margin-top: 8px;
  }

  .formats {
    gap: 45px;
  }

  .formats-visual {
    border-radius: 20px;
  }

  .sales-composition {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .sales-promise-wide {
    grid-row: auto;
    min-height: 290px;
  }

  .opportunities {
    gap: 44px;
  }

  .opportunities-copy {
    position: static;
  }

  .opportunity-grid {
    grid-template-columns: 1fr;
  }

  .opportunity-grid article,
  .opportunity-grid article:nth-child(2),
  .opportunity-grid article:nth-child(4) {
    min-height: 190px;
  }

  .access {
    min-height: auto;
    gap: 42px;
    padding-bottom: 40px;
  }

  .access-copy > img {
    width: 175px;
  }

  .access-product {
    width: min(100%, 480px);
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--forest-950);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
