/* ============================================================
   FONTES LOCAIS
   ============================================================ */

/* Akzidenz Grotesk Light Condensed — títulos e destaques dourados */
@font-face {
  font-family: 'AkzidenzLight';
  src: url('fonts/Berthold Akzidenz Grotesk Light Condensed.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Akzidenz Grotesk Bold Condensed — reservado para uso futuro */
@font-face {
  font-family: 'AkzidenzBold';
  src: url('fonts/AKZIDENZ-GROTESK-BQ-BOLD-CONDENSED.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   VARIÁVEIS, RESET E BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0C1A28;
  --bg-alt: #0F2237;
  --gold: #C9A462;
  --gold-lt: #DDB76A;
  --white: #FFFFFF;
  --muted: rgba(255, 255, 255, .65);
  --border: rgba(201, 164, 98, .18);
  --card: rgba(255, 255, 255, .04);
  --r: 6px;
  --max: 1160px;
  --px: clamp(1.25rem, 5vw, 4.5rem);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --font-title: 'AkzidenzLight', sans-serif;
  --font-title-em: 'AkzidenzBold', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ============================================================
   TIPOGRAFIA — TÍTULOS
   h1, h2, h3 → Akzidenz Light Condensed
   em dentro de título → Akzidenz Bold Condensed + dourado
   ============================================================ */
h1,
h2,
h3 {
  font-family: var(--font-title);
  font-weight: normal;
}

h1,
h2 {
  font-size: clamp(2.1875rem, 4vw, 3.125rem);
}

h3 {
  font-size: clamp(1.5625rem, 2.5vw, 1.875rem);
}

h1 em,
h2 em,
h3 em {
  font-family: var(--font-title);
  font-weight: normal;
  font-style: normal;
  color: var(--gold);
}

/* ============================================================
   UTILITÁRIOS
   ============================================================ */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   BARRA DE PROGRESSO (scroll)
   ============================================================ */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  z-index: 1000;
  transform-origin: left;
  transform: scaleX(0);
  pointer-events: none;
}

/* ============================================================
   SISTEMA DE ANIMAÇÕES (data-reveal)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: var(--from, translateY(32px));
  transition: opacity .8s var(--ease), transform .8s var(--ease), clip-path 1s var(--ease);
  transition-delay: var(--d, 0s);
}

[data-reveal="left"] {
  --from: translateX(-32px);
}

[data-reveal="right"] {
  --from: translateX(32px);
}

[data-reveal="scale"] {
  --from: scale(.92);
}

[data-reveal="clip"] {
  opacity: 1;
  clip-path: inset(0 100% 0 0);
  transform: none;
}

[data-reveal].vis {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0);
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes wipe-up {
  from {
    clip-path: inset(100% 0 0 0);
    transform: translateY(12px);
  }

  to {
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes enter-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

/* ============================================================
   BOTÃO — reflexo dourado na borda
   ============================================================ */
@property --ang {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.btn {
  display: inline-block;
  padding: 1.1rem 2.5rem;
  border-radius: var(--r);
  font-family: inherit;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 0;
  transition: opacity .2s, transform .3s var(--ease);
}

.btn--gold {
  background: transparent;
  color: #0B1824;
}

.btn--gold::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  z-index: -1;
  transition: box-shadow .4s var(--ease);
}

.btn--gold::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--r) + 2px);
  background: conic-gradient(from var(--ang),
      var(--gold) 0%,
      var(--gold) 70%,
      #F5D468 79%,
      #FFF9C0 88%,
      #F5D468 97%,
      var(--gold) 100%);
  animation: btn-border 3s linear infinite;
  z-index: -1;
}

@keyframes btn-border {
  to {
    --ang: 360deg;
  }
}

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

.btn:hover::after {
  box-shadow: 0 12px 35px rgba(201, 164, 98, .3);
}

/* Espaçamento do botão em seções internas */
.about .btn,
.results .btn,
.forwho .btn,
.how .btn,
.testimonials .btn {
  margin-top: 2.5rem;
}

.results .btn,
.forwho .btn,
.testimonials .btn {
  display: block;
  width: fit-content;
  margin-inline: auto;
}

/* ============================================================
   SEÇÃO 1: HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 580px;
  padding-block: 5rem;
}

.hero h1 {
  line-height: 1.18;
  margin-bottom: 1.5rem;
  text-wrap: pretty;
  text-shadow: 0 0 50px rgba(201, 164, 98, .12);
  animation: wipe-up .9s var(--ease) .15s both;
}

.hero__sub {
  font-size: clamp(.88rem, 1.4vw, 1rem);
  color: var(--muted);
  margin-bottom: 1rem;
  text-wrap: pretty;
  animation: enter-up .9s var(--ease) .4s both;
}

.hero__desc {
  font-size: clamp(.88rem, 1.4vw, 1rem);
  color: var(--muted);
  margin-bottom: 2.5rem;
  text-wrap: pretty;
  animation: enter-up .9s var(--ease) .55s both;
}

.hero .btn {
  animation: enter-up .9s var(--ease) .7s both;
}

/* ============================================================
   SEÇÃO 2: PROBLEMA
   ============================================================ */
.problem {
  background: var(--bg-alt);
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.problem h2 {
  line-height: 1.18;
  margin-bottom: 3rem;
  text-wrap: pretty;
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 2rem);
}

.problem__card {
  border-radius: var(--r);
  border: 1px solid var(--border);
  overflow: hidden;
}

.problem__card-header {
  padding: 1.35rem 1.75rem;
  border-bottom: 1px solid var(--border);
}

.problem__card--ok .problem__card-header {
  background: rgba(201, 164, 98, .1);
}

.problem__card--no .problem__card-header {
  background: rgba(27, 74, 107, .3);
}

.problem__col-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.problem__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.problem__card .problem__list {
  padding: .35rem 1.75rem;
  background: rgba(255, 255, 255, .02);
}

.problem__list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-size: .965rem;
  color: var(--white);
  font-weight: 500;
  padding-block: .9rem;
}

.problem__card .problem__list li {
  border-bottom: 1px solid var(--border);
}

.problem__card .problem__list li:last-child {
  border-bottom: none;
}

.ico {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .22em;
}

.ico--ok {
  background: var(--gold);
}

.ico--ok::after {
  content: '';
  display: block;
  width: 10px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8'%3E%3Cpath d='M1 4.5L3.5 7L9 2' stroke='%230B1824' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

.ico--no {
  background: #1B4A6B;
}

.ico--no::after {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 9'%3E%3Cpath d='M1.5 1.5L7.5 7.5M7.5 1.5L1.5 7.5' stroke='%23A0D7FF' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ============================================================
   FAIXA MARQUEE
   ============================================================ */
.marquee {
  background: var(--gold);
  overflow: hidden;
  padding-block: 1.2rem;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__text {
  font-size: 1rem;
  font-weight: 700;
  color: #0B1824;
  white-space: nowrap;
  letter-spacing: .015em;
}

.marquee__sep {
  font-size: .45rem;
  color: rgba(11, 24, 40, .38);
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SEÇÃO 3: QUEM É BERTRAN MAIA
   ============================================================ */
.about {
  background: var(--bg);
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.about h2 {
  margin-bottom: .4rem;
}

.about__role {
  font-size: .8rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
}

.about__photo {
  aspect-ratio: 3/4;
  border-radius: var(--r);
  border: 1px solid var(--border);
  overflow: hidden;
  background: repeating-linear-gradient(135deg, rgba(201, 164, 98, .03) 0px, rgba(201, 164, 98, .03) 10px, rgba(201, 164, 98, .015) 10px, rgba(201, 164, 98, .015) 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .6s var(--ease);
}

.about__photo:hover {
  transform: scale(1.02);
}

.about__photo span {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(201, 164, 98, .4);
  font-family: monospace;
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about p {
  font-size: .955rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
  text-wrap: pretty;
}

/* ============================================================
   SEÇÃO 4: O QUE MUDA
   ============================================================ */
.results {
  background: var(--bg-alt);
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.results h2 {
  line-height: 1.25;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 3rem;
  text-align: center;
  text-wrap: pretty;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.15rem;
}

.results__card {
  grid-column: span 2;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem 1.5rem;
  transition: transform .5s var(--ease), border-color .3s, box-shadow .5s var(--ease);
}

.results__card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 164, 98, .45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .2), 0 0 30px rgba(201, 164, 98, .06);
}

.results__card:nth-child(4) {
  grid-column: 2/4;
}

.results__card:nth-child(5) {
  grid-column: 4/6;
}

.results__tag {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .85rem;
}

.results__card h3 {
  margin-bottom: .6rem;
}

.results__card p {
  font-size: .865rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   SEÇÃO 5: PARA QUEM É
   ============================================================ */
.forwho {
  background: var(--bg);
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  text-align: center;
}

.forwho h2 {
  line-height: 1.25;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 2.75rem;
}

.forwho__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  max-width: 900px;
  margin-inline: auto;
  overflow: hidden;
}

.forwho__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: clamp(.88rem, 1.3vw, 1rem);
  font-weight: 500;
  color: var(--muted);
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.forwho__list li:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.forwho__list li:nth-last-child(-n+2) {
  border-bottom: none;
}

/* ============================================================
   SEÇÃO 6: COMO FUNCIONA
   ============================================================ */
.how {
  background: var(--bg-alt);
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.how h2 {
  margin-bottom: 3.5rem;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.how__step {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: var(--r);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform .5s var(--ease), border-color .3s, box-shadow .5s var(--ease);
}

.how__step:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 164, 98, .35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .2), 0 0 30px rgba(201, 164, 98, .06);
}

.how__num {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: #0B1824;
  font-weight: 800;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.how__step h3 {
  margin-bottom: .5rem;
}

.how__step p {
  font-size: .865rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   SEÇÃO 7: DEPOIMENTOS
   ============================================================ */
.testimonials {
  background: var(--bg);
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.testimonials h2 {
  margin-bottom: 3rem;
  text-wrap: pretty;
  text-align: center;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.testimonials__item {
  aspect-ratio: 9/16;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: repeating-linear-gradient(135deg, rgba(201, 164, 98, .025) 0px, rgba(201, 164, 98, .025) 10px, rgba(201, 164, 98, .01) 10px, rgba(201, 164, 98, .01) 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s var(--ease), border-color .3s;
}

.testimonials__item:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 164, 98, .35);
}

.testimonials__item span {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(201, 164, 98, .4);
  text-align: center;
  font-family: monospace;
  line-height: 2;
}

/* ============================================================
   SEÇÃO 8: CHAMADA FINAL
   ============================================================ */
.cta-final {
  padding-block: clamp(5rem, 9vw, 8.5rem);
  text-align: center;
  background: radial-gradient(ellipse at 50% 40%, rgba(201, 164, 98, .12) 0%, transparent 60%), var(--bg-alt);
}

.cta-final h2 {
  line-height: 1.2;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  text-wrap: pretty;
}

.cta-final p {
  font-size: .975rem;
  color: var(--muted);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  text-wrap: pretty;
}

/* ============================================================
   RODAPÉ
   ============================================================ */
footer {
  height: 35px;
  background: #0c1a28;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer p {
  font-size: .58rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .28);
  letter-spacing: .05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-inline: 1rem;
}

footer p span {
  color: rgba(201, 164, 98, .3);
  margin-inline: .45em;
}

/* ============================================================
   RESPONSIVO: TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .results__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results__card,
  .results__card:nth-child(4),
  .results__card:nth-child(5) {
    grid-column: auto;
  }

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

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

/* ============================================================
   RESPONSIVO: MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    align-items: flex-start;
    min-height: 100svh;

  }

  .hero img {
    content: url(/uploads/Mobile.png);
  }

  .hero__content {
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 2.5rem;
    padding-top: 20px;
  }

  .problem__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .about__photo {
    aspect-ratio: 4/5;
  }

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

  .forwho__list li:nth-child(odd) {
    border-right: none;
  }

  .forwho__list li:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .forwho__list li:last-child {
    border-bottom: none;
  }

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

  .results__card:nth-child(4),
  .results__card:nth-child(5) {
    grid-column: auto;
  }

  .how__steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .how__step {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .how__num {
    margin-bottom: 0;
  }

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

  .testimonials__item {
    aspect-ratio: 16/9;
  }

  .cta-final {
    text-align: left;
  }

  .cta-final h2,
  .cta-final p {
    margin-inline: 0;
  }

  .btn {
    width: 100%;
    text-align: center;
    font-size: .76rem;
    padding: 1rem 1.5rem;
  }
}

/* ============================================================
   ACESSIBILIDADE
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .marquee__track {
    animation: none;
  }
}