/* =============================================
   MÉTODO MR - STYLES
   Stack: HTML + CSS + JS (vanilla)
   Design: dark premium, cantos retos, vermelho
   ============================================= */

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #141414;
  --text-primary: #ededed;
  --text-secondary: #a0a0a0;
  --text-muted: #6b6b6b;
  --accent: #cc0000;
  --accent-hover: #e60000;
  --accent-bright: #e60000;
  --paper: #ededed;
  --success: #22c55e;
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.25);
  --font-main: "Manrope", system-ui, sans-serif;
  --font-display: "Archivo", "Manrope", sans-serif;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  touch-action: manipulation;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
}

/* SKIP LINK */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.875rem;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 40px);
  padding-right: clamp(20px, 5vw, 40px);
}

/* ============ TIPOGRAFIA DE SEÇÃO ============ */
.section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-tag {
  font-family: var(--font-main);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 48px);
  letter-spacing: -0.5px;
  line-height: 1.05;
  margin-bottom: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.highlight {
  color: var(--accent);
}

.highlight-bright {
  color: var(--text-primary);
}

/* ============ BOTÕES ============ */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 17px 34px;
  text-align: center;
  transition:
    background var(--transition),
    transform var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: #0a0a0a;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  background: #ffffff;
  color: #0a0a0a;
  transform: translateY(-2px);
}

.btn-primary:hover::after {
  left: 130%;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: #0a0a0a;
}

.btn-full {
  display: block;
  width: 100%;
}

.btn:active {
  transform: scale(0.98);
}

.btn-submit {
  min-height: 52px;
  font-size: 22px;
}

.btn-submit:disabled {
  opacity: 0.7;
  pointer-events: none;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 65%);
  pointer-events: none;
}

.hero-beam {
  position: absolute;
  top: -30%;
  left: 30%;
  width: 180px;
  height: 160%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  transform: rotate(28deg);
  filter: blur(24px);
  pointer-events: none;
  animation: beam-sweep 9s ease-in-out infinite alternate;
}

@keyframes beam-sweep {
  from {
    transform: rotate(28deg) translateX(-8vw);
    opacity: 0.5;
  }
  50% {
    opacity: 0.9;
  }
  to {
    transform: rotate(28deg) translateX(10vw);
    opacity: 0.6;
  }
}

/* Grain cinematográfico */
.hero::after {
  content: "";
  position: absolute;
  inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.045;
  pointer-events: none;
  animation: grain-shift 1.2s steps(4) infinite;
}

@keyframes grain-shift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-2%, 3%);
  }
  50% {
    transform: translate(3%, -2%);
  }
  75% {
    transform: translate(-3%, -3%);
  }
}

.hero-logo-bar {
  position: relative;
  z-index: 2;
  padding-top: 16px;
}

.logo-img {
  height: 44px;
  width: auto;
  mix-blend-mode: screen;
}

.logo-hero {
  height: clamp(60px, 8vw, 84px);
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-photo-bg img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 62%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.7) contrast(1.05) brightness(0.9);
  -webkit-mask-image: linear-gradient(to left, #000 60%, transparent 100%);
  mask-image: linear-gradient(to left, #000 60%, transparent 100%);
  animation: ken-burns 22s ease-in-out infinite alternate;
}

.hero-photo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--bg-primary) 30%, rgba(10, 10, 10, 0.45) 60%, rgba(10, 10, 10, 0.1) 100%);
}

.hero-photo-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0), var(--bg-primary));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: min(78vh, 760px);
  padding-top: clamp(24px, 4vw, 56px);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.hero-text {
  max-width: 560px;
  min-width: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 66px);
  line-height: 1.04;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}

.hero-title .line-inner {
  display: inline-block;
  animation: rise-up 0.8s cubic-bezier(0.2, 0.6, 0.2, 1) both;
}

.hero-title .line:nth-child(2) .line-inner {
  animation-delay: 0.15s;
}

@keyframes rise-up {
  from {
    transform: translateY(110%);
  }
  to {
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 520px;
  text-wrap: pretty;
}

.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.pillar-chip {
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
}

.hero-proof {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 20px;
  letter-spacing: 0.3px;
}

/* ============ PHOTO CARDS ============ */
.hero-photo-col {
  flex: 1 1 300px;
  max-width: 440px;
  margin: 0 auto;
}

.photo-card {
  position: relative;
  border: 1px solid var(--border);
  padding: 10px;
}

.photo-card-red {
  border-color: var(--border-strong);
}

@keyframes ken-burns {
  from {
    transform: scale(1) translate(0, 0);
  }
  to {
    transform: scale(1.09) translate(-1.5%, 1.5%);
  }
}

.photo-card-inner {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-card);
}

.photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.photo-card {
  transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-card:hover {
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
}

.photo-card:hover .photo-img {
  transform: scale(1.04);
}

.photo-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.55) 75%, rgba(10, 10, 10, 0.55) 100%);
  pointer-events: none;
}

.photo-fade-soft {
  height: 35%;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0), rgba(17, 17, 17, 0.5));
}

.photo-caption {
  position: absolute;
  bottom: 22px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-primary);
  pointer-events: none;
}

.photo-card.no-photo .photo-card-inner::after {
  content: "Foto do Maicon";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.photo-card.no-photo .photo-img {
  display: none;
}

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden;
  background: var(--bg-primary);
  border-top: 1px solid #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 55s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(22px, 3.5vw, 34px);
  letter-spacing: 1px;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px #3a3a3a;
}

.marquee-track span b {
  font-weight: 800;
  color: var(--paper);
  -webkit-text-stroke: 0;
}

@keyframes marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

/* ============ SOBRE ============ */
.sobre {
  background: var(--bg-secondary);
}

.sobre-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.sobre-photo-col {
  flex: 1 1 280px;
  max-width: 400px;
  margin: 0 auto;
}

.sobre-text {
  flex: 1 1 380px;
  min-width: 0;
}

.sobre-bio {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  text-wrap: pretty;
}

.sobre-bio-strong {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 28px;
}

.sobre-stats {
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
}

.sobre-creds {
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.creds-title {
  font-family: var(--font-main);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.creds-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.creds-list li {
  position: relative;
  padding-left: 26px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.creds-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%23ededed' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='6'/%3E%3Cpath d='M15.5 13l1.5 8-5-3-5 3 1.5-8'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.creds-certs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
  max-width: 480px;
  align-items: stretch;
}

.cert-thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  padding: 8px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  cursor: zoom-in;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.cert-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cert-thumb:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.cert-zoom {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid var(--border-strong);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
}

.creds-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 5, 5, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: 94vw;
  max-height: 88vh;
  object-fit: contain;
  animation: lightbox-in 0.3s cubic-bezier(0.2, 0.6, 0.2, 1);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
}

@keyframes lightbox-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 44px;
  height: 44px;
  font-size: 30px;
  line-height: 1;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* ============ MÉTODO (4 FASES) ============ */
.metodo {
  background: var(--bg-primary);
}

.metodo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.metodo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 28px 24px;
  height: 100%;
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.metodo-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.metodo-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: #333333;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 14px;
}

.metodo-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.metodo-card-tag {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.metodo-card-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
  text-wrap: pretty;
}

/* ============ ENTREGAS (O QUE VOCÊ RECEBE) ============ */
.entregas {
  background: var(--bg-secondary);
}

.entregas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.entrega-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px 22px;
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.entrega-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.entrega-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
}

.entrega-icon svg {
  width: 22px;
  height: 22px;
}

.entrega-item h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.entrega-item p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

/* ============ COMPARAÇÃO ============ */
.comparacao {
  background: var(--bg-primary);
}

.comparacao-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.comparacao-card {
  padding: 32px 28px;
  height: 100%;
}

.comparacao-card.sem {
  background: var(--bg-card);
  border: 1px solid var(--border);
  opacity: 0.85;
}

.comparacao-card.com {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
}

.comparacao-titulo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.comparacao-card.sem .comparacao-titulo {
  color: var(--text-muted);
}

.comparacao-card.com .comparacao-titulo {
  color: var(--paper);
}

.comparacao-lista {
  list-style: none;
  display: grid;
  gap: 14px;
}

.comparacao-lista li {
  position: relative;
  padding-left: 30px;
  font-size: 14.5px;
  line-height: 1.6;
}

.comparacao-card.sem .comparacao-lista li {
  color: var(--text-secondary);
}

.comparacao-card.com .comparacao-lista li {
  color: var(--text-primary);
}

.comparacao-lista li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 17px;
  height: 17px;
  background-size: contain;
  background-repeat: no-repeat;
}

.comparacao-card.sem .comparacao-lista li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E");
}

.comparacao-card.com .comparacao-lista li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 24 24' fill='none' stroke='%23ededed' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

/* ============ RESULTADOS ============ */
.resultados {
  background: var(--bg-secondary);
}

.resultados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.resultado-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  height: 100%;
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.resultado-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

/* Comparador antes/depois arrastável */
.ba-hint {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  margin-top: 14px;
}

.ba-slider {
  --pos: 50%;
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  background: var(--bg-primary);
}

.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-antes {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  filter: grayscale(1);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  margin-left: -1px;
  background: rgba(255, 255, 255, 0.9);
  pointer-events: none;
  z-index: 1;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: var(--pos);
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  z-index: 2;
  transition: transform var(--transition);
}

.ba-handle:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.ba-label {
  position: absolute;
  bottom: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 9px;
  pointer-events: none;
  z-index: 1;
}

.ba-label-antes {
  left: 10px;
  background: rgba(10, 10, 10, 0.85);
  color: var(--text-secondary);
}

.ba-label-depois {
  right: 10px;
  background: var(--paper);
  color: #0a0a0a;
}

.resultado-info {
  padding: 24px 22px;
}

.resultado-nota {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.resultado-badge {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-secondary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  margin-bottom: 14px;
}

.resultado-nome {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.resultado-tempo {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.resultado-quote {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.6;
}

/* ============ MID CTA ============ */
.mid-cta {
  text-align: center;
  margin-top: clamp(40px, 6vw, 64px);
}

.mid-cta-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

/* ============ FAQ ============ */
.faq {
  background: var(--bg-primary);
}

.faq-wrapper {
  max-width: 760px;
  margin: 0 auto;
}

.faq-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: var(--border-strong);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  padding: 18px 20px;
  cursor: pointer;
  min-height: 44px;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--paper);
  line-height: 1;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.7;
  padding: 0 20px 20px;
  text-wrap: pretty;
}

/* ============ FORMULÁRIO ============ */
.formulario {
  background: var(--bg-secondary);
}

.form-container {
  max-width: 680px;
}

.formulario .section-header {
  margin-bottom: 32px;
}

/* Quiz interativo */
.quiz {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: clamp(24px, 4vw, 40px);
}

.quiz-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  min-height: 24px;
}

.quiz-back {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  min-height: 24px;
  transition: color var(--transition);
}

.quiz-back:hover {
  color: var(--text-primary);
}

.quiz-step-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-left: auto;
}

.quiz-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--paper);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: quiz-in 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
}

@keyframes quiz-in {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.quiz-question {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.5vw, 24px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}

.quiz-options {
  display: grid;
  gap: 10px;
}

.quiz-option {
  width: 100%;
  text-align: left;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 18px;
  min-height: 52px;
  cursor: pointer;
  transition:
    border-color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.quiz-option:hover {
  border-color: var(--border-strong);
  transform: translateX(4px);
}

.quiz-option.selected {
  background: var(--paper);
  color: #0a0a0a;
  border-color: var(--paper);
}

.quiz-final {
  text-align: center;
}

.quiz-final svg {
  margin: 0 auto 16px;
}

.quiz-final-desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  text-wrap: pretty;
}

.quiz-note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid #1c1c1c;
}

.footer-inner {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.logo-footer {
  height: 52px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 13.5px;
  margin-top: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  min-height: 44px;
  transition: color var(--transition);
}

.social-link:hover {
  color: var(--text-primary);
}

.footer-credit {
  border-top: 1px solid #1c1c1c;
  padding-top: 16px;
  padding-bottom: 20px;
  text-align: center;
}

.footer-credit p {
  color: #555555;
  font-size: 12px;
}

.footer-credit a {
  color: #777777;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-credit a:hover {
  color: var(--text-primary);
}

/* ============ WHATSAPP FLUTUANTE ============ */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.08);
}

/* ============ BTN LOADING ============ */
.btn-loading {
  pointer-events: none;
  opacity: 0.7;
}

/* ============ REVEAL ANIMATIONS ============ */
[data-reveal] {
  opacity: 1;
  transform: none;
}

.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}

.js-reveal [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  /* Hero mobile: foto inteira no topo, texto logo abaixo */
  .hero-photo-bg {
    inset: 0 0 auto 0;
    height: min(56svh, 470px);
  }

  .hero-photo-bg img {
    width: 100%;
    height: 100%;
    -webkit-mask-image: none;
    mask-image: none;
    object-position: center top;
    filter: saturate(0.7) contrast(1.05) brightness(0.85);
  }

  .hero-photo-bg::before {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.45) 0%,
      rgba(10, 10, 10, 0.05) 35%,
      rgba(10, 10, 10, 0.15) 100%
    );
  }

  .hero-photo-bg::after {
    height: 34%;
  }

  .hero-content {
    min-height: 0;
    align-items: flex-start;
    padding-top: calc(min(56svh, 470px) - 96px);
    padding-bottom: clamp(48px, 8vw, 72px);
  }

  .hero-text {
    text-align: center;
    max-width: 100%;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-pillars {
    justify-content: center;
  }

  .hero-logo-bar {
    display: flex;
    justify-content: center;
  }

  .hero-text .btn {
    display: block;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 52px;
  }

  .metodo-card,
  .plano-card {
    padding: 24px 20px;
  }
}
