:root {
  --red: #ed1717;
  --red2: #8b0909;
  --green: #19f44b;
  --black: #050505;
  --panel: #0d0d0f;
  --muted: #aaa;
  --line: #252529;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--black);
  color: #fff;
  font-family: Montserrat, Arial, sans-serif;
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}
.topbar {
  height: 88px;
  padding: 0 max(5vw, 24px);
  display: flex;
  align-items: center;
  gap: 42px;
  position: absolute;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid #ffffff18;
}
.brand img {
  width: 150px;
  display: block;
}
.topbar nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.topbar nav a,
.text-link {
  color: #ddd;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.topbar nav a:hover {
  color: var(--red);
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 18px 26px;
  background: linear-gradient(135deg, var(--red), #ad0909);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  border-radius: 5px;
  box-shadow: 0 12px 34px #e4111135;
  transition: 0.25s;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px #e4111160;
}
.btn-small {
  padding: 13px 19px;
}
.menu {
  display: none;
  background: none;
  border: 0;
}
.hero {
  min-height: 850px;
  padding: 150px max(7vw, 28px) 90px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  position: relative;
  background:
    radial-gradient(circle at 76% 45%, #970a0a35, transparent 27%),
    linear-gradient(100deg, #050505 52%, #140303);
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 49.8%,
    #ed171722 50%,
    transparent 50.2%
  );
  transform: skewX(-10deg);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  background: #d01010;
  filter: blur(180px);
  opacity: 0.13;
  right: 4%;
  top: 25%;
}
.hero-content,
.hero-art {
  position: relative;
  z-index: 2;
}
.eyebrow,
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 800;
  color: #bbb;
}
.eyebrow span {
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--red);
  vertical-align: middle;
  margin-right: 10px;
}
.hero h1,
.section-head h2,
.method h2,
.bonus h2,
.offer h2 {
  font-family: Oswald, sans-serif;
  font-size: clamp(54px, 6.5vw, 96px);
  line-height: 0.98;
  margin: 20px 0;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
.hero h1 em,
.section-head h2 span,
.method h2 span,
.bonus h2 span,
.offer h2 span {
  font-style: normal;
  color: var(--red);
}
.lead {
  color: #c0c0c0;
  max-width: 660px;
  font-size: 17px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
  color: #8e8e93;
  font-size: 11px;
  font-weight: 600;
}
.hero-art {
  display: grid;
  place-items: center;
  min-height: 480px;
}
.hero-art > img {
  width: min(470px, 92%);
  filter: drop-shadow(0 30px 55px #000);
}
.hero-art > .hero-result {
  width: min(610px, 96%);
  border: 1px solid #5b1717;
  border-radius: 12px;
  box-shadow: 0 35px 90px #000, 0 0 50px #d0101025;
}
.status-card {
  position: absolute;
  right: 5%;
  bottom: 12%;
  background: #101013df;
  border: 1px solid #ffffff20;
  border-radius: 8px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  font-size: 11px;
  box-shadow: 0 20px 60px #000;
}
.status-card i {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  grid-row: 1/3;
  align-self: center;
  box-shadow: 0 0 14px var(--green);
}
.status-card span {
  color: #999;
}
.status-card strong {
  font-size: 16px;
}
.section-pad {
  padding: 110px max(7vw, 28px);
}
.section-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}
.section-head h2,
.method h2,
.bonus h2,
.offer h2 {
  font-size: clamp(42px, 5vw, 72px);
}
.section-head p:last-child {
  color: var(--muted);
}
.problem {
  background: #09090a;
}
.problem-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.problem article {
  padding: 42px;
  border-right: 1px solid var(--line);
  background: linear-gradient(145deg, #111113, #080809);
  transition: 0.3s;
}
.problem article:last-child {
  border: 0;
}
.problem article:hover {
  transform: translateY(-7px);
  background: #141416;
}
.problem article b {
  font-family: Oswald;
  font-size: 42px;
  color: #3b3b3f;
}
.problem h3 {
  font-size: 19px;
}
.problem p,
.method p,
.bonus p,
.offer p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}
.method {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
  background: linear-gradient(120deg, #050505, #0c0606);
}
.method-copy {
  max-width: 580px;
}
.btn-outline {
  margin-top: 20px;
  background: transparent;
  border: 1px solid var(--red);
  box-shadow: none;
}
.steps {
  border-left: 1px solid #3a1717;
}
.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 30px;
  border-bottom: 1px solid var(--line);
}
.step > span {
  font: 700 50px Oswald;
  color: #2f2f32;
}
.step small {
  color: var(--red);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.step h3 {
  font-size: 22px;
  margin: 8px 0;
}
.step p {
  margin: 0;
  color: #999;
  line-height: 1.7;
  font-size: 13px;
}
.results {
  background: #0b0b0c;
}
.proof-grid {
  max-width: 1160px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: start;
}
.proof {
  margin: 0;
  border: 1px solid #29292c;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
}
.proof img {
  width: 100%;
  display: block;
  max-height: 470px;
  object-fit: contain;
  background: #080808;
}
.proof.tall img {
  max-height: 620px;
}
.disclaimer {
  text-align: center;
  color: #6f6f74;
  font-size: 10px;
  margin-top: 28px;
}
.bonus {
  background: linear-gradient(180deg, #050505, #110202);
}
.bonus-card {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #4c1313;
  box-shadow: 0 30px 90px #000;
}
.bonus-image {
  background: #050505;
}
.bonus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bonus-copy {
  padding: 56px;
}
.bonus-copy ul,
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}
.bonus-copy li,
.price-card li {
  padding: 12px 0;
  border-bottom: 1px solid #ffffff12;
  color: #ddd;
  font-size: 13px;
}
.bonus-copy li:before {
  content: "✓";
  color: var(--red);
  font-weight: 900;
  margin-right: 12px;
}
.offer {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.2fr);
  gap: 70px;
  align-items: center;
}
.offer-intro {
  max-width: 680px;
}
.price-card {
  position: relative;
  background: linear-gradient(150deg, #161617, #090909);
  border: 1px solid #5b1b1b;
  border-radius: 10px;
  padding: 44px 38px 34px;
  box-shadow: 0 30px 90px #000;
}
.price-card > img {
  width: 240px;
  display: block;
  margin: 0 auto 26px;
}

.offer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 4px 0 24px;
  font-family: Oswald, sans-serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.offer-brand strong {
  color: var(--red);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.plan-option {
  position: relative;
  padding: 25px 18px 18px;
  border: 1px solid #343438;
  border-radius: 9px;
  background: linear-gradient(150deg, #18181b, #0b0b0c);
  text-align: center;
  transition: 0.3s ease;
}

.plan-option:hover {
  transform: translateY(-5px);
  border-color: #7c2525;
}

.plan-featured {
  border-color: var(--red);
  box-shadow: 0 15px 45px #ed17171e;
}

.best-choice {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 6px 12px;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  background: var(--red);
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.plan-name {
  display: block;
  color: #c8c8cb;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 14px 0 6px;
  color: #fff;
}

.plan-price strong {
  font-family: Oswald, sans-serif;
  font-size: 54px;
  line-height: 0.9;
}

.plan-price small {
  margin: 3px 2px 0;
  color: #929297;
  font-size: 11px;
  font-weight: 700;
}

.plan-option p {
  min-height: 38px;
  margin: 12px 0 18px;
  font-size: 11px;
}

.plan-option .btn {
  padding: 15px 10px;
  font-size: 10px;
}

.support-link {
  display: block;
  margin-top: 22px;
  color: #88888d;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.support-link:hover {
  color: #fff;
}
.popular {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--red);
  font-size: 10px;
  font-weight: 900;
  padding: 9px 18px;
  border-radius: 20px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.btn-full {
  width: 100%;
}
.price-card small {
  display: block;
  text-align: center;
  color: #777;
  margin-top: 15px;
}
.faq {
  background: #0a0a0b;
}
.accordion {
  max-width: 900px;
  margin: auto;
}
.accordion details {
  border-bottom: 1px solid #29292c;
}
.accordion summary {
  padding: 24px 6px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary i {
  font-style: normal;
  color: var(--red);
  font-size: 24px;
}
.accordion details[open] summary i {
  transform: rotate(45deg);
}
.accordion details p {
  color: #999;
  line-height: 1.7;
  padding: 0 6px 20px;
  margin: 0;
}
footer {
  text-align: center;
  padding: 70px 24px;
  border-top: 1px solid #222;
  background: #050505;
}
footer img {
  width: 180px;
}
footer p {
  color: #aaa;
}
footer small {
  color: #555;
  line-height: 1.7;
}
.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #20c65a;
  color: #fff;
  text-decoration: none;
  font-size: 26px;
  z-index: 20;
  box-shadow: 0 8px 25px #20c65a55;
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .topbar {
    height: 72px;
    position: absolute;
  }
  .brand img {
    width: 115px;
  }
  .topbar nav,
  .topbar > .btn {
    display: none;
  }
  .menu {
    display: flex;
    margin-left: auto;
    flex-direction: column;
    gap: 5px;
  }
  .menu span {
    width: 25px;
    height: 2px;
    background: #fff;
  }
  .topbar.open nav {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    padding: 24px;
    background: #0a0a0af5;
    flex-direction: column;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
    text-align: center;
    min-height: auto;
  }
  .eyebrow {
    font-size: 9px;
  }
  .hero h1 {
    font-size: clamp(46px, 13vw, 70px);
  }
  .hero-actions,
  .trust {
    justify-content: center;
  }
  .hero-art {
    min-height: 300px;
  }
  .hero-art > img {
    width: 310px;
  }
  .status-card {
    right: 5%;
    bottom: 5%;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .problem article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .method,
  .offer {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .steps {
    border-left: 0;
  }
  .bonus-card {
    grid-template-columns: 1fr;
  }
  .bonus-copy {
    padding: 36px;
  }
  .offer-intro {
    text-align: center;
  }
  .price-card {
    max-width: 500px;
    width: 100%;
    margin: auto;
  }
}
@media (max-width: 560px) {
  .section-pad {
    padding: 78px 20px;
  }
  .hero {
    padding: 115px 20px 65px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .lead {
    font-size: 14px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .trust {
    gap: 10px;
    flex-direction: column;
  }
  .hero-art {
    min-height: 230px;
  }
  .hero-art > img {
    width: 240px;
  }
  .status-card {
    padding: 10px 12px;
  }
  .problem article {
    padding: 30px;
  }
  .section-head {
    margin-bottom: 38px;
  }
  .section-head h2,
  .method h2,
  .bonus h2,
  .offer h2 {
    font-size: 40px;
  }
  .step {
    grid-template-columns: 55px 1fr;
    padding: 24px 6px;
  }
  .step > span {
    font-size: 34px;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .proof img,
  .proof.tall img {
    max-height: 520px;
  }
  .bonus-copy {
    padding: 28px 22px;
  }
  .price-card {
    padding: 40px 22px;
  }
  .plan-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .whatsapp {
    width: 50px;
    height: 50px;
  }
  .text-link {
    font-size: 12px;
  }
}

/* refinamentos visuais e animações */
.scroll-progress {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--red), #ff6868);
  box-shadow: 0 0 14px var(--red);
}
.hero-art > img {
  animation: logoFloat 5s ease-in-out infinite;
}
.status-card i {
  animation: statusPulse 1.5s infinite;
}
.btn {
  position: relative;
  overflow: hidden;
}
.btn:after {
  content: "";
  position: absolute;
  inset: -60%;
  background: linear-gradient(
    100deg,
    transparent 35%,
    #ffffff55 50%,
    transparent 65%
  );
  transform: translateX(-100%) rotate(10deg);
  animation: btnShine 3.8s infinite;
}
.proof-grid {
  gap: 20px;
}
.proof {
  border-radius: 12px;
  cursor: zoom-in;
  transition:
    transform 0.4s,
    border-color 0.4s,
    box-shadow 0.4s;
}
.proof:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  box-shadow: 0 25px 65px #000;
}
.proof img,
.proof.tall img {
  height: 430px;
  max-height: none;
  object-fit: contain;
  padding: 14px;
  background: #060606;
}
.proof-phone img {
  height: 570px !important;
}
.proof-wide img {
  height: 330px !important;
}
.proof-square img {
  height: 430px !important;
}
.proof figcaption {
  display: flex;
  justify-content: space-between;
  padding: 15px 18px;
  color: #aaa;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-top: 1px solid #222;
}
.proof figcaption span {
  color: var(--red);
}
.bonus-image {
  display: grid;
  place-items: center;
  padding: 24px;
}
.bonus-image img {
  width: 100%;
  height: auto;
  max-height: 510px;
  object-fit: contain;
}
.whatsapp {
  width: 60px;
  height: 60px;
  animation: whatsPulse 2.2s infinite;
}
.whatsapp svg {
  width: 32px;
  height: 32px;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #000e;
  display: none;
  place-items: center;
  padding: 28px;
}
.lightbox.open {
  display: grid;
  animation: fadeIn 0.25s;
}
.lightbox img {
  max-width: min(1000px, 94vw);
  max-height: 88vh;
  object-fit: contain;
}
.lightbox button {
  position: absolute;
  right: 24px;
  top: 16px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 44px;
  cursor: pointer;
}
.reveal {
  transform: translateY(34px) scale(0.98);
  filter: blur(5px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.8s;
}
.reveal.visible {
  filter: none;
}
@keyframes logoFloat {
  50% {
    transform: translateY(-14px) scale(1.015);
  }
}
@keyframes whatsPulse {
  0%,
  100% {
    box-shadow:
      0 8px 25px #20c65a55,
      0 0 0 0 #20c65a55;
  }
  50% {
    box-shadow:
      0 8px 30px #20c65a88,
      0 0 0 13px transparent;
  }
}
@keyframes btnShine {
  0%,
  55% {
    transform: translateX(-100%) rotate(10deg);
  }
  85%,
  100% {
    transform: translateX(100%) rotate(10deg);
  }
}
@keyframes statusPulse {
  50% {
    opacity: 0.55;
    box-shadow: 0 0 24px var(--green);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 560px) {
  .proof img,
  .proof.tall img,
  .proof-phone img,
  .proof-square img {
    height: auto !important;
    max-height: 530px;
  }
  .proof-wide img {
    height: auto !important;
  }
  .bonus-image {
    padding: 10px;
  }
  .whatsapp {
    width: 54px;
    height: 54px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* assinatura animada da marca no cabeçalho */
.brand {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-shrink: 0;
  position: relative;
  padding: 8px 12px 8px 14px;
  text-decoration: none;
  line-height: 0.82;
  isolation: isolate;
}

.brand::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 3px -10px;
  border-left: 2px solid var(--red);
  background: linear-gradient(90deg, #ed17171f, transparent 82%);
  transform: skewX(-8deg);
  opacity: 0.85;
}

.brand::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 12px;
  bottom: 2px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
  animation: brandLine 2.8s ease-in-out infinite;
}

.brand-bot,
.brand-million {
  font-family: Oswald, Montserrat, sans-serif;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.brand-bot {
  color: #fff;
  font-size: 22px;
  text-shadow: 0 2px 12px #000;
}

.brand-million {
  color: var(--red);
  font-size: 20px;
  margin-top: 5px;
  text-shadow: 0 0 18px #ed171750;
}

.brand-robot {
  display: inline-flex;
  width: 22px;
  height: 22px;
  margin: 0 4px;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1;
  vertical-align: -2px;
  filter: drop-shadow(0 0 5px #38a9ff);
  animation: robotGlow 2s ease-in-out infinite;
}

.brand:hover .brand-million {
  color: #ff3838;
}

@media (max-width: 900px) {
  .brand {
    padding-left: 10px;
  }

  .brand-bot {
    font-size: 20px;
  }

  .brand-million {
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  .brand {
    padding: 7px 7px 7px 9px;
  }

  .brand-bot {
    font-size: 18px;
  }

  .brand-million {
    font-size: 16px;
  }
}

@keyframes brandLine {
  0%,
  100% {
    transform: scaleX(0.35);
    transform-origin: left;
    opacity: 0.5;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
    opacity: 1;
  }
}

@keyframes robotGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 2px #38a9ff65);
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    filter: drop-shadow(0 0 8px #38a9ff);
    transform: translateY(-2px) rotate(2deg);
  }
}
