/*
Theme Name: Mentoria SAT
Author: Eidi Kobayashi
Description: Custom WordPress theme for Mentoria SAT.
Version: 1.1
Text Domain: mentoria-sat
*/
/* ═══════════════════════════════════════════════════════
   MENTORIA SAT — styles.css
   Palette : #181818 · #FDAB23 · #00629F
   Titles  : Basement Grotesque
   Body    : Montserrat
═══════════════════════════════════════════════════════ */

/* ── Basement Grotesque (Local) ───────────────────────── */
@font-face {
  font-family: 'Basement Grotesque';
  src: url('assets/basement-grotesque-black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ── Tokens ──────────────────────────────────────────── */
:root {
  --clr-bg: #0e0e12;
  --clr-gold: #FDAB23;
  --clr-gold-glow: rgba(253, 171, 35, 0.45);
  --clr-white: #ffffff;
  --clr-text: rgba(255, 255, 255, 0.95);

  --ff-title: 'Basement Grotesque', 'Impact', sans-serif;
  --ff-body: 'Montserrat', sans-serif;

  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 80svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #0e0e12;
}

/* ── Global Particles (Dust) ────────────────────────── */
.particles-global {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

/* ── Video BG (full bleed) ──────────────────────────── */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, #0e0e12 20%, rgba(14, 14, 18, 0.7) 50%, transparent 80%);
}

.hero__reverse-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1;
}


/* ── Content column (left half) ─────────────────────── */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 80svh;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Alinhado à esquerda na Desktop tbm c/ margem base */
  padding: clamp(2rem, 4vh, 3.5rem) clamp(1.5rem, 6vw, 6rem);
}


.hero__center-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.5vh, 1rem); /* Reduzido p/ ficar mais perto da logo */
  width: fit-content;
  text-align: left;
  transform: translateY(-80px); /* Subindo 80px no desktop */
}


/* ── Logo ───────────────────────────────────────────── */
.hero__logo-wrap {
  /* Fluxo normal — alinha à esquerda do título via mesmo padding do pai */
  margin-bottom: 0;
}

.hero__logo {
  width: clamp(182px, 19.6vw, 280px);
  /* +40% do original */
  height: auto;
  display: block;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 16px rgba(0, 0, 0, 0.8));
}

/* ── Copy ───────────────────────────────────────────── */
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 1.8vh, 1.1rem); /* Mais compacto */
  /* sem margin-top — logo já está no fluxo com margin-bottom própria */

  /* Ajuda a ocultar eventuais flashes de fonte no carregamento inicial */
  opacity: 0;
  animation: fade-in-section 1s ease forwards 0.2s;
}

@keyframes fade-in-section {
  to {
    opacity: 1;
  }
}

/* Headline */
.hero__headline {
  font-family: var(--ff-title);
  font-size: 48px;
  /* Título unificado em 48px */
  color: var(--clr-white);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.01em;
  white-space: nowrap;

  opacity: 0;
  animation: fade-up 0.9s var(--ease-expo) 0.35s forwards;
}

/* Sub */
.hero__sub {
  font-size: 20px;
  font-weight: 400;
  color: var(--clr-text);
  line-height: 1.3;
  white-space: nowrap;
  /* quebra apenas nos <br>, igual ao título */

  opacity: 0;
  animation: fade-up 0.9s var(--ease-expo) 0.55s forwards;
}

/* ── Global Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-size: clamp(0.78rem, 1.3vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.1em 2em;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-expo),
    box-shadow 0.35s var(--ease-expo);
  cursor: pointer;
}

.btn--primary {
  color: #111;
  background: var(--clr-gold);
}

/* Shimmer sweep */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      transparent 0%,
      rgba(255, 255, 255, 0.28) 50%,
      transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 46px var(--clr-gold-glow);
}

.btn:active {
  transform: translateY(-1px);
}

/* Animated Arrow Icon */
.btn__icon {
  width: 18px;
  height: 18px;
  margin-left: 1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17l9.2-9.2M17 17V7.8h-9.2'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  transition: transform 0.45s var(--ease-expo);
}

.btn:hover .btn__icon {
  transform: translate(4px, -4px);
}


/* Hero specific animation and spacing */
.hero__cta-wrap {
  display: flex;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-expo) 0.75s forwards;
  width: clamp(240px, 34vw, 400px);
}

.hero__cta-wrap .btn {
  width: 100%;
}

/* ── Keyframes ───────────────────────────────────────── */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .hero__content {
    width: 100%;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    padding-top: clamp(1.5rem, 5vw, 2.5rem);
    /* logo já está no fluxo */
  }

  .hero__overlay {
    background:
      linear-gradient(to bottom,
        rgba(13, 13, 17, 0.85) 0%,
        rgba(13, 13, 17, 0.70) 60%,
        rgba(13, 13, 17, 0.85) 100%);
  }

  .hero__headline {
    font-size: clamp(1.4rem, 2.4vw, 2.2rem);
    white-space: normal !important;
    /* Força quebra p/ não vazar */
    width: 100%;
  }

  .hero__sub {
    white-space: normal !important;
    font-size: 1rem;
    line-height: 1.4;
  }



  .hero__cta {
    width: 100%;
    /* Aumentado em ~30% (font + padding) conforme solicitado */
    font-size: 1rem !important;
    padding: 1.4rem 2.4rem !important;
  }
}


/* ════════════════════════════════════════════════════════
   PROBLEMS (DOBRA 2)
════════════════════════════════════════════════════════ */
.problems {
  position: relative;
  background: var(--clr-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 5vh;
  overflow: hidden;
}

/* ── Ticker ─────────────────────────────────────────── */
.problems__ticker {
  background: #1a1a1f;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
  overflow: hidden;
  margin-bottom: clamp(3rem, 7vh, 8rem);
}

.problems__ticker-inner {
  display: flex;
  white-space: nowrap;
  gap: 3rem;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.problems__ticker-inner span {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.90);
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

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

/* ── Scroll Hint ────────────────────────────────────── */
.problems__scroll-hint {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(3rem, 8vh, 10rem);
}

.problems__scroll-hint-icon {
  width: 28px;
  height: 48px;
  border: 1.5px solid var(--clr-gold);
  border-radius: 100px;
  position: relative;
  opacity: 0.7;
}

.problems__scroll-hint-icon::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 8px;
  background: var(--clr-gold);
  border-radius: 2px;
  animation: mouse-scroll 2.5s ease-in-out infinite;
}

@keyframes mouse-scroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  100% {
    transform: translate(-50%, 18px);
    opacity: 0;
  }
}

/* ── Main Container ─────────────────────────────────── */
.problems__container {
  max-width: 1440px;
  margin: auto;
  /* Centra horizontal e verticalmente no flex */
  padding: 2rem clamp(1.5rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Balanceado para centralização visual */
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}

/* ── Image Grid ─────────────────────────────────────── */
.problems__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  /* Duas linhas iguais para empilhar imagens */
  gap: 1rem;
  aspect-ratio: 1/1;
  /* Garante proporção geral quadrada */
}


.problems__grid-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  background: #222;
}

.problems__grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-expo);
}

.problems__grid-item:hover img {
  transform: scale(1.1);
}

.problems__grid-item--main {
  grid-row: span 2;
  height: 100%;
}

.problems__grid-item--top-right {
  height: 100%;
}

.problems__grid-item--bot-right {
  height: 100%;
}

.problems__grid-item--sub {
  display: none;
  /* Ajustado para grid 2-col visual */
}

/* ── Content ────────────────────────────────────────── */
.problems__content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 2.5vh, 2rem);
}

.problems__heading {
  font-family: var(--ff-title);
  font-size: 48px;
  /* Reduzido de 64px para ser mais compacto */
  color: var(--clr-white);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.problems__body {
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 2.5vh, 2rem);
}

.problems__highlight {
  font-family: var(--ff-body);
  /* Trocado de Basement para Montserrat */
  font-size: 24px;
  /* Reduzido para evitar muitas linhas */
  font-weight: 700;
  color: var(--clr-gold);
  text-transform: uppercase;
  line-height: 1.2;
}

.problems__body-text {
  font-size: 18px;
  /* Mantido conforme solicitado */
  line-height: 1.6;
  color: var(--clr-text);
  font-weight: 400;
}

.problems__body-text strong {
  color: var(--clr-white);
  font-weight: 700;
}

.problems__footer-accent {
  font-family: var(--ff-body);
  /* Trocado para Montserrat */
  font-size: 22px;
  /* Reduzido */
  font-weight: 800;
  color: var(--clr-blue);
  text-transform: uppercase;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .problems__container {
    grid-template-columns : 1fr;
    gap : 3rem;
  }

  .problems__content {
    order : 1;
    text-align : left;
  }

  .problems__grid {
    order : 2;
    margin : 0 auto;
    max-width : 450px;
  }
}

/* ════════════════════════════════════════════════════════
   CORTE (DOBRA 3)
════════════════════════════════════════════════════════ */
.corte {
  position: relative;
  width: 100%;
}

.corte__banner {
  width: 100%;
  position: relative;
  background: url('assets/bg-faixa.webp') no-repeat center center;
  background-size: cover;
  z-index: 2; /* Sempre a frente do personagem no mobile */
  padding: clamp(4.5rem, 11vh, 8rem) 0 clamp(6.5rem, 13vh, 12rem) 0;
}

.corte__container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
}

/* ── Puppets ────────────────────────────────────────── */
.corte__expert {
  position: absolute;
  width: clamp(280px, 35vw, 500px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  z-index: 10; /* À frente da faixa no Desktop */
}

.corte__expert--right {
  bottom: 0px;
  right: clamp(1rem, 5vw, 10rem); 
  top: auto;
  transform: none;
  left: auto;
  width: clamp(170px, 24vw, 290px);
}









/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .corte__banner {
    background : url('assets/bg-faixa-mobile.webp') no-repeat center center;
    background-size : cover;
    z-index : 2; /* Sempre a frente no mobile p/ cobrir a base do expert */
    padding: 2.2rem 0; /* Faixa mais compacta no mobile */
  }

  .corte {
    background: transparent;
    padding : clamp(2rem, 5vh, 4rem) 0;
  }

  .corte__expert--right {
    position : absolute;
    top : -110px; /* Ajustado p/ nova altura da faixa */
    bottom: auto; 
    left : 50%;
    transform : translateX(-50%);
    width : 160px; 
    display : block;
    z-index : 1; /* Atrás da faixa (banner) no Mobile */
  }

  .corte__content {
    margin-top : 60px; /* Reduzido p/ acompanhar a faixa menor */
    margin-bottom : 0px; 
    transform: translateY(-20px); /* Subindo o texto no mobile p/ visibilidade */
  }
}

.corte__content {
  display : flex;
  flex-direction : column;
  gap : 1.5rem;
  align-items : flex-start; /* Alinhado à esquerda */
  text-align : left;       /* Alinhado à esquerda */
}


.corte__main-text {
  font-family: var(--ff-body);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  line-height: 1.5;
  color: #ffffff;
  /* Branco novamente por conta do fundo escuro */
  font-weight: 600;
  max-width: 850px;
}

.corte__divider {
  display: none;
}

.corte__highlight {
  font-family: var(--ff-title);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  font-weight: 900;
  color: #ffffff;
  /* Branco novamente */
  line-height: 1.1;
  max-width: 900px;
  text-transform: uppercase;
}

/* ── Scroll hint on box bottom edge ────────────────── */
.corte__box-scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  /* Sentado exatamente na borda */
}

.corte__box-scroll-icon {
  width: 32px;
  height: 52px;
  background: #011d33;
  /* Fundo mais escuro p/ destacar na faixa */
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.corte__box-scroll-icon::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 10px;
  background: #ffffff;
  border-radius: 2px;
  animation: box-scroll-anim 2.5s ease-in-out infinite;
}

@keyframes box-scroll-anim {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  100% {
    transform: translate(-50%, 20px);
    opacity: 0;
  }
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .corte__expert {
    width: 220px;
  }

  .corte__expert--left {
    left: -15%;
  }

  .corte__expert--right {
    right: -15%;
  }
}

@media (max-width: 768px) {
  .corte {
    padding : 2.5rem 0 !important; /* Altura da faixa reduzida p/ ser mais compacta */
    overflow : visible !important; /* Permite o "vazamento" do boneco */
  }

  .corte__box {
    border-radius: 20px;
    padding: 5rem 1.5rem;
  }

  .corte__expert--right {
    display : block !important;
    position : absolute;
    top: -180px; /* Subiu mais 40px */    bottom: auto;
    left : 50%;
    transform : translateX(-50%);
    width : 180px; 
    z-index : 1;
  }
}




/* ════════════════════════════════════════════════════════
   METODOLOGIA SAT (DOBRA 4)
════════════════════════════════════════════════════════ */
.metodologia {
  background: var(--clr-bg);
  padding: clamp(5rem, 15vh, 12rem) 0 clamp(3rem, 8vh, 6rem) 0; /* Reduzido o padding de baixo */
  position: relative;
  overflow: hidden;
}

.metodologia__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Alinhado à esquerda */
  text-align: left;         /* Alinhado à esquerda */
}

/* ── Header ────────────────────────────────────────── */
.metodologia__header {
  margin-bottom: 4rem;
  width: 100%;
}

.metodologia__heading {
  font-family: var(--ff-title);
  /* Basement Grotesque */
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--clr-white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  /* Trocado p/ combina com o estilo Basement */
}

.metodologia__heading .clr-gold {
  color: var(--clr-gold) !important;
}

.metodologia__heading span {
  color: var(--clr-gold);
}

.metodologia__intro {
  font-family: var(--ff-body);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.6;
  max-width: 800px;
  margin-inline: 0; /* Removido o centralizado */
}


/* ── Visual (Venn Diagram) ───────────────────────── */
.metodologia__visual {
  margin-bottom: 6rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.sat-tripe {
  position : relative;
  width : 800px; 
  height : 700px;
}

.sat-tripe__circle {
  position : absolute;
  width : 450px; /* Tamanho clássico p/ desktop */
  height : 450px;
  border : 3.5px solid var(--clr-gold); /* Borda mais imponente */
  border-radius : 50%;
  display : flex;
  font-family : var(--ff-title);
  text-transform : uppercase;
  font-size : 1.6rem;
  font-weight : 900;
  letter-spacing : 0.05em;
  color : var(--clr-white);
  /* BRILHO RESTAURADO */
  background : radial-gradient(circle at center, rgba(253, 171, 35, 0.15), rgba(14, 14, 18, 0.6));
  box-shadow : 0 0 50px rgba(253, 171, 35, 0.35); 
  backdrop-filter : blur(8px);
  transition : all 0.6s var(--ease-expo);
}



.sat-tripe__circle--top {
  top : 0;
  left : 50%;
  transform : translateX(-50%);
  z-index : 1;
  justify-content : center;
  align-items : center; /* Agora mais centralizado conforme solicitado */
  padding-bottom : 20%; /* Pequeno ajuste p/ não ficar colado no ícone central vago */
}



.sat-tripe__circle--left {
  bottom : 0;
  left : 0;
  z-index : 2;
  justify-content : center; /* Centralizado tbm conforme solicitado */
  align-items : center;
  padding-left : 0;
}



.sat-tripe__circle--right {
  bottom : 0;
  right : 0;
  z-index : 2;
  justify-content : center; /* Centralizado no desktop tbm conforme solicitado */
  align-items : center;
  padding-right : 0; 
}



.sat-tripe__center-icon {
  display : flex; /* Restaurado p/ Desktop */
  position : absolute;
  top : 50%;
  left : 50%;
  transform : translate(-50%, -50%);
  width : 110px;
  height : 110px;
  background : var(--clr-bg);
  border-radius : 50%;
  justify-content : center;
  align-items : center;
  z-index : 10;
  border : 2px solid var(--clr-gold);
  box-shadow : 0 0 40px rgba(253, 171, 35, 0.4);
}



.sat-tripe__icon-img {
  width: 70%;
  height: auto;
  object-fit: contain;
}

/* ── Steps Grid ───────────────────────────────────── */
.metodologia__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 5rem;
  text-align: left;
}

.metodologia__heading .clr-gold {
  color: var(--clr-gold) !important;
}

.step-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--clr-gold);
  transform: translateY(-10px);
}

.step-card__label {
  display: block;
  font-family: var(--ff-title);
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1.2rem;
}

.step-card__text {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.90);
}

.metodologia__cta {
  margin-top: 2rem;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .metodologia__steps {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 600px;
  }
}

/* ════════════════════════════════════════════════════════
   DEPOIMENTOS (DOBRA 5)
════════════════════════════════════════════════════════ */
.testimonials {
  background: var(--clr-bg);
  padding: clamp(3rem, 8vh, 5rem) 0 clamp(5rem, 15vh, 12rem) 0; /* Reduzido drasticamente o padding de cima */
  position: relative;
}

.testimonials__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
}

.testimonials__heading {
  font-family : var(--ff-title);
  font-size : clamp(1.8rem, 4vw, 3rem);
  line-height : 1.1;
  color : var(--clr-white);
  text-align : left; /* Alinhado à esquerda */
  margin-bottom : 6rem;
  text-transform : uppercase;
}


/* ── Texto Carousel (Infinito) ─────────────────────── */
.testimonials__carousel-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 8rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials__carousel {
  display: flex;
  width: 100%;
}

.testimonials__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding-left: 2rem;
  /* Start padding */
  will-change: transform;
  cursor: grab;
}

.testimonials__track:active {
  cursor: grabbing;
}

/* @keyframes testimonial-ticker removed for JS drag implementation */

/* .testimonials__track:hover {
  animation-play-state: paused;
} */

.testimonial-card {
  flex: 0 0 auto;
  /* Altura aumentada */
  height: clamp(250px, 40vh, 450px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: #1a1a1f;
  border: 1px solid rgba(255, 255, 255, 0.1);

  transition: transform 0.3s ease;
}

.testimonial-card img {
  height: 100%;
  /* Ocupa a altura do card */
  width: auto;
  /* Largura automática baseada na proporção da imagem */
  display: block;
  object-fit: contain;
  /* Garante que a imagem inteira apareça sem cortes */
}

.testimonial-card:hover {
  transform: scale(1.05);
  border-color: var(--clr-gold);
  z-index: 10;
  cursor: pointer;
}

/* Lightbox for Testimonials */
.testimonial-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.testimonial-lightbox.active {
  opacity: 1;
  pointer-events: auto;
  cursor: zoom-out;
}
.testimonial-lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.testimonial-lightbox.active img {
  transform: scale(1);
}

/* ── Video Carousel ────────────────────────────────── */
.testimonials__video-carousel-wrap {
  width: 100%;
  position: relative;
}

.testimonials__video-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 2rem;
  padding-bottom: 2rem;

  /* Esconde a scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials__video-carousel::-webkit-scrollbar {
  display: none;
}

.video-card {
  flex: 0 0 clamp(260px, 35vw, 360px);
  scroll-snap-align: center;
  aspect-ratio: 9/16;
  height: clamp(462px, 62.22vw, 640px); /* Explicit height to fix iOS Safari flex aspect-ratio collapse */
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s ease;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.video-card video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.video-card:hover {
  border-color: var(--clr-gold);
  transform: translateY(-8px);
}

/* Tenta remover a sombra nativa dos controles do Android/iOS */
.video-card video::-webkit-media-controls-panel,
.video-card video::-webkit-media-controls-enclosure {
  background-image: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

/* ── Navigation Buttons ────────────────────────────── */
.video-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
}

.video-nav__btn {
  background: #1a1a1f;
  color: var(--clr-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-nav__btn:hover {
  background: var(--clr-gold);
  color: #000;
  border-color: var(--clr-gold);
  transform: translateY(-3px);
}

.video-nav__btn--left svg {
  transform: translateX(-1px);
}

.video-nav__btn--right svg {
  transform: translateX(1px);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .video-card {
    flex: 0 0 280px;
    height: 498px; /* 280 * 16/9 for iOS Safari flex aspect-ratio bug */
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  .sat-tripe {
    width: min(340px, 94vw); /* Mais largo p/ espaçar as esferas */
    height: 320px;
  }

  .sat-tripe__circle {
    width: 200px; 
    height: 200px;
    border-width: 1px;
    font-size: 0.85rem;
    padding : 1rem !important;
  }



  .sat-tripe__circle--top { 
    padding-top : 0 !important; 
    align-items : center !important; 
  }


  .sat-tripe__circle--left { padding-left : 0.5rem !important; } /* Movido 40px p/ esquerda conforme solicitado */


  .sat-tripe__circle--right { 
    padding-right : 0 !important; 
    justify-content : center !important; /* Centralizado no mobile conforme solicitado */
  }


  .sat-tripe__center-icon { 
    display : none !important; /* Escondido no mobile p/ não sobrepor texto em telas pequenas */
  }

  /* Redução de gap entre Dobra 4 e 5 no mobile */

  .metodologia {
    padding-bottom : 2rem !important;
  }

  .metodologia__steps {
    margin-bottom : 2rem !important;
  }

  .testimonials {
    padding-top : 2rem !important;
    padding-bottom : 2rem !important; /* Adicionado para reduzir gap inferior */
  }
}


/* ════════════════════════════════════════════════════════
   OFERTA PRIME (REBUILT FROM SCRATCH)
════════════════════════════════════════════════════════ */
.oferta-prime {
  background: #08080a;
  padding: clamp(6rem, 15vh, 12rem) 0;
  /* Padding lateral movido p/ o container p/ controle total */
  position: relative;
  overflow: hidden;
  margin : 4rem clamp(1rem, 3vw, 4rem) 2rem; /* Margem inferior reduzida p/ colar na próxima dobra */
  box-shadow : 0 40px 100px rgba(0, 0, 0, 0.5);
}



.oferta-prime__container {
  max-width: 1440px;
  /* Alinhado com o restante do site */
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  /* Padding lateral padrão do site */
  display: flex;
  align-items: center;
  justify-content: center;
  /* Centraliza o grupo como um todo */
  gap: clamp(2rem, 8vw, 6rem);
  /* Espaço equilibrado entre os dois blocos */
}

.oferta-prime__info {
  flex: 1;
  text-align: left;
}



.oferta-prime__title {
  font-family: var(--ff-title);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 2rem;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  white-space: nowrap;
  /* Força o texto a seguir apenas os <br> manuais */
}

.oferta-prime__text {
  font-size: 1.15rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 3rem;
  max-width: 500px;
}

.oferta-prime__features {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.oferta-prime__features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--clr-white);
  font-weight: 500;
}

.oferta-prime__features span {
  color: var(--clr-gold);
  font-weight: 800;
}

/* ── Ticket Card with Animated Border ──────────────── */
.oferta-prime__ticket-wrap {
  flex: 0 0 clamp(360px, 45vw, 480px);
  position: relative;
}

.ticket-card {
  position: relative;
  width: 100%;
  padding: 3px;
  background: #111;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
}

.ticket-card__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Tamanho otimizado p/ não pesar tanto no GPU */
  width: 150%; 
  height: 150%;
  background: conic-gradient(from 0deg,
      transparent 0%,
      gold 10%,
      transparent 20%,
      transparent 50%,
      gold 60%,
      transparent 70%);
  transform: translate(-50%, -50%) translateZ(0); /* Força aceleração de Hardware */
  animation: ticket-rotate 6s linear infinite;
  z-index: 0;
  will-change: transform;
}

@keyframes ticket-rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateZ(0);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateZ(0);
  }
}


.ticket-card__inner {
  position: relative;
  z-index: 1;
  background: #0e0e12;
  border-radius: 38px;
  padding: 4.5rem 2.5rem 3.5rem;
  text-align: center;
}

/* Seal Badge Image */
.ticket-badge-warranty {
  /* Centralizado no topo da linha/container conforme solicitado */
  position : relative;
  margin : -1rem auto 2.5rem; 
  width : 90px;
  z-index : 10;
  display : block;
  filter : drop-shadow(0 0 15px rgba(0, 0, 0, 0.6));
}


.warranty-seal {
  width: 100%;
  height: auto;
  display: block;
}


.ticket-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.ticket-price {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ticket-old {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.90);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.ticket-price {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ticket-old {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.90);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.ticket-installments {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 0.5rem;
}

.price-val {
  font-family: var(--ff-title);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  /* Leve ajuste p/ caber em uma linha */
  color: var(--clr-gold);
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(253, 171, 35, 0.3);
  text-transform: uppercase;
  white-space: nowrap;
  /* Garante linha única */
}


.ticket-single {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.90);
  margin-top: 0.4rem;
}


.ticket-cta {
  width: 100%;
  padding: 1.5rem !important;
  font-size: 0.9rem !important;
  margin-bottom: 1.5rem;
  /* Reduzido p/ dar espaço às bandeiras */
  box-shadow: 0 20px 40px var(--clr-gold-glow);
}

.ticket-brands-wrap {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.ticket-brands {
  max-width: 220px;
  width: 100%;
  height: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1);
  /* Transforma o PNG em branco puro */
}


.ticket-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
}

/* ── Progress Bar Scarcity ─────────────────────────── */
.ticket-progress-wrap {
  margin-bottom: 2rem;
  text-align: center;
}

.ticket-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  margin-bottom: 0.8rem;
  overflow: hidden;
  position: relative;
}

.ticket-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 20%;
  /* Representando 20% preenchido conforme solicitado */
  background: var(--clr-gold);
  box-shadow: 0 0 15px var(--clr-gold-glow);
  border-radius: 100px;
}


.ticket-progress-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.90);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.ticket-progress-text strong {
  color: var(--clr-gold);
}



.ticket-footer p {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.90);
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .oferta-prime {
    border-radius: 40px 40px 0 0;
    margin-top: 1rem; /* Reduz a distância da dobra de cima no mobile */
  }

  .oferta-prime__container {
    flex-direction: column;
    text-align: left; /* Alinhado à esquerda na Mobile */
    gap: 3rem; /* Reduz espaço interno */
  }

  .oferta-prime__ticket-wrap {
    flex: 1 0 100%;
    width: 100%;
    max-width: min(100%, 450px);
  }


  .oferta-prime__info {
    text-align: left; /* Trocado para esquerda na Mobile */
  }

  .oferta-prime__features {
    justify-content: flex-start; /* Trocado para esquerda na Mobile */
    margin: 0;                   /* Remove margem que forçava centro */
    text-align: left;
    width: 100%;
  }
}


.oferta__cta {
  width: 100%;
  margin-bottom: 2rem;
  padding: 1.4rem 1rem !important;
  font-size: 0.85rem !important;
}

/* ── Badges ────────────────────────────────────────── */
.oferta__badges {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.90);
}

.badge-item span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.oferta__disclaimer {
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.90);
}

/* ════════════════════════════════════════════════════════
   O MENTOR (DOBRA ADICIONAL)
════════════════════════════════════════════════════════ */
.mentor {
  background: var(--clr-bg);
  padding: clamp(2.5rem, 8vh, 5rem) 0; /* Padding reduzido p/ minimizar gap com a Oferta */
  position: relative;
  overflow: hidden;
}


.mentor__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
}

.mentor__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  /* Foto aumentada: Proporções equilibradas */
  align-items: flex-start;
  gap: 6vw;
}

/* ── Mentor Image (Right Side) ────────────────────────── */
.mentor__image-wrap {
  position: relative;
  margin-top: 1rem;
}

.mentor__img-secondary {
  position: absolute;
  bottom: 5%;
  left: -25%;
  width: 55%;
  height: auto;
  z-index: 10;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  border: 2px solid var(--clr-bg);
  border-radius: 16px;
}

.mentor__image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  /* Arredondamento suave solicitado */
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  background: #0e0e12;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
}




.mentor__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

/* ── Mentor Content (Left Side) ────────────────────────── */
.mentor__tag {
  display: inline-block;
  color: var(--clr-gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.mentor__title {
  font-family: var(--ff-title);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 3rem;
  color: var(--clr-white);
  text-transform: uppercase;
  text-align: left;
  /* Alinhamento à esquerda */
}

.mentor__text-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.90);
  font-size: 1.1rem;
  /* Unificado: sem fontes maiores no corpo */
  line-height: 1.7;
  text-align: left;
}

.mentor__text-body strong {
  color: var(--clr-gold);
}

.mentor__cta-text {
  font-weight: 700;
  color: var(--clr-white);
  border-left: 3px solid var(--clr-gold);
  padding-left: 1.5rem;
  margin-top: 1rem;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__content {
    justify-content : center; /* Mantém centralizado no mobile conforme solicitado */
  }

  .mentor__grid {

    grid-template-columns: 1fr;
    text-align: left;
    gap: 4rem;
  }

  .mentor__image-wrap {
    order : 2; /* Foto desce no mobile conforme solicitado */
    max-width : min(100%, 450px);
    width : 100%;
    margin : 3rem auto 0;
  }

  .mentor__image-frame {
    aspect-ratio : 1 / 1 !important; /* Foto quadrada no mobile */
  }

  .mentor__img-secondary {
    left: -5%;
    bottom: -10%;
    width: 50%;
  }
}


/* ════════════════════════════════════════════════════════
   FAQ (DOBRA FINAL)
════════════════════════════════════════════════════════ */
.faq {
  background: var(--clr-bg);
  padding: clamp(6rem, 15vh, 12rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.faq__container {
  max-width: 1200px;
  /* Aumentado p/ comportar o título em uma linha */
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
}

.faq__heading {
  text-align: left;
  font-family: var(--ff-title);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  text-transform: uppercase;
  margin-bottom: 6rem;
}



.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 0;
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-size: clamp(1.1rem, 1.3vw, 1.25rem);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq__question:hover {
  color: var(--clr-gold);
}

.faq__icon {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
  margin-left: 2rem;
  transition: transform 0.4s ease;
}

.faq__icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
  transform: rotate(90deg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.active .faq__icon::after {
  transform: rotate(0deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer-inner {
  padding-bottom: 2.5rem;
}

.faq__answer p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.7;
  max-width: 800px;
}

.faq__item.active .faq__answer {
  max-height: 500px;
  /* Altura suficiente p/ comportar o texto */
}

/* Ensure parents have relative position */
.hero,
.intro,
.corte,
.metodologia,
.depoimentos,
.oferta-prime,
.mentor {
  position: relative;
}

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.footer {
  background: #0a0a0d;
  padding: 4rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 10;
}

.footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
}

.footer__logo {
  filter: grayscale(1) brightness(0.9);
  transition: filter 0.4s ease;
  opacity: 0.7;
}

.footer__logo:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

.footer__copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
  font-weight: 400;
}

/* ════════════════════════════════════════════════════════
   GLOBAL MOBILE TYPOGRAPHY (Basement Grotesque)
════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  .hero__headline,
  .problems__heading,
  .metodologia__heading,
  .testimonials__heading,
  .oferta-prime__title,
  .mentor__title,
  .faq__heading,
  .price-val {
    font-size: clamp(1.4rem, 4.5vw, 2.2rem) !important;
    line-height: 1.1 !important;
  }
  
  .hero__center-wrap {
    gap: 1.5rem !important;
    transform: none !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  .hero__logo {
    width: clamp(130px, 14vw, 200px) !important;
    margin: 0 auto !important;
  }
}
