:root {
  --bg: #070708;
  --panel: #0e0f12;
  --panel2: #0b0c0f;
  --text: #f3f4f6;
  --muted: #a6a7ad;
  --stroke: rgba(255, 255, 255, 0.1);
  --stroke2: rgba(255, 255, 255, 0.06);
  --accent: #c10d23; /* vermelho escuro premium */
  --accent2: #ff2d45;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 20px;
  --radius2: 28px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  background: linear-gradient(
    180deg,
    #0b0b0d 0%,
    #0f0c0e 35%,
    #120c10 65%,
    #0b0b0d 100%
  );
  color: var(--text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* Topbar */
.topbar {
  border-bottom: 1px solid var(--stroke2);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}
.topbar__inner {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  font-size: 13px;
  color: var(--muted);
}
.topbar__tag {
  color: var(--text);
  border: 1px solid var(--stroke);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 7, 8, 0.45);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--stroke2);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand__mark {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 12px 30px rgba(193, 13, 35, 0.35);
}
.brand__text {
  display: flex;
  gap: 6px;
  letter-spacing: 0.06em;
  font-size: 14px;
  text-transform: uppercase;
}
.brand__text span {
  opacity: 0.85;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}
.nav a {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.nav a:hover {
  color: var(--text);
  border-color: var(--stroke2);
  background: rgba(255, 255, 255, 0.03);
}

.header__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.menuBtn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.02);
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menuBtn span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
}

/* Mobile nav */
.mobileNav {
  display: none;
  border-top: 1px solid var(--stroke2);
  background: rgba(7, 7, 8, 0.7);
}
.mobileNav__inner {
  padding: 14px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobileNav a {
  padding: 12px 12px;
  border: 1px solid var(--stroke2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke2);
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
  white-space: nowrap;
}
.btn--lg {
  padding: 12px 18px;
  font-size: 15px;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--primary {
  border-color: rgba(193, 13, 35, 0.35);
  background: linear-gradient(
    135deg,
    rgba(193, 13, 35, 0.98),
    rgba(255, 45, 69, 0.78)
  );
  box-shadow: 0 18px 60px rgba(193, 13, 35, 0.25);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.02);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--stroke);
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: stretch;
  overflow: visible;
  border-bottom: 1px solid var(--stroke2);
}
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.04);
}
.hero__img--mobile {
  display: none;
}

/* Overlay: melhora leitura do texto */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.55) 50%,
      rgba(0, 0, 0, 0.15) 100%
    ),
    radial-gradient(
      900px 700px at 30% 30%,
      rgba(120, 20, 30, 0.18),
      transparent 60%
    );
}

.hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  padding: 84px 0;
}
.hero__content {
  width: min(640px, 100%);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(243, 244, 246, 0.88);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  border: 1px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  padding: 8px 12px;
  width: fit-content;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(193, 13, 35, 0.6);
}
.hero__title {
  margin: 18px 0 12px;
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.accent {
  color: var(--text);
  text-shadow: 0 0 40px rgba(193, 13, 35, 0.18);
}
.hero__subtitle {
  margin: 12px 0 26px;
  color: rgba(243, 244, 246, 0.82);
  font-size: 17px;
  max-width: 52ch;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badge {
  border: 1px solid var(--stroke2);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 10px 12px;
  min-width: 160px;
}
.badge__title {
  display: block;
  font-weight: 700;
  font-size: 13px;
}
.badge__text {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 2px;
}

/* Sections */
.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-soft-bg {
  background: radial-gradient(
      1200px 600px at 50% 0%,
      rgba(120, 20, 30, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #0c0c0e 0%, #0f0d10 100%);
}
.section__head {
  max-width: 760px;
  margin-bottom: 26px;
}
.section__head h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.02em;
}
.section__head p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
}

/* Grid + Cards */
.grid {
  display: grid;
  gap: 14px;
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 20px 40px rgba(0, 0, 0, 0.4);
}
.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.card p {
  margin: 0;
  color: rgba(243, 244, 246, 0.78);
}
.muted {
  color: var(--muted);
}

.card--pillar {
  position: relative;
  padding: 20px 20px 18px;
}
.pill {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: rgba(193, 13, 35, 0.18);
  border: 1px solid rgba(193, 13, 35, 0.28);
  color: rgba(243, 244, 246, 0.95);
  margin-bottom: 12px;
}

.list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(243, 244, 246, 0.82);
}
.list li {
  margin: 6px 0;
}

/* Results */
.results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.result {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.02);
}
.result img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.testimonials {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.quote p {
  margin: 0 0 10px;
  font-size: 15px;
  color: rgba(243, 244, 246, 0.88);
}
.quote__who {
  color: var(--muted);
  font-size: 13px;
}

/* About */
.about {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 16px;
  align-items: stretch;
}
.about__photo {
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.02);
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__text {
  border-radius: var(--radius2);
  border: 1px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.02);
  padding: 18px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.chip {
  border: 1px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 13px;
  color: rgba(243, 244, 246, 0.86);
}
.callout {
  margin-top: 14px;
  border: 1px solid rgba(193, 13, 35, 0.22);
  background: rgba(193, 13, 35, 0.1);
  border-radius: 16px;
  padding: 12px 12px;
}

/* CTA section */
.section--cta {
  padding: 70px 0 90px;
}
.ctaBox {
  border-radius: var(--radius2);
  border: 1px solid rgba(193, 13, 35, 0.22);
  background: radial-gradient(
      900px 700px at 15% 30%,
      rgba(193, 13, 35, 0.22),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.02);
  padding: 22px;
  box-shadow: var(--shadow);
}
.ctaBox h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.6vw, 34px);
}
.ctaBox p {
  margin: 0 0 18px;
  color: rgba(243, 244, 246, 0.82);
}
.ctaBox__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ctaBox__fineprint {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* FAQ */
.faq {
  display: grid;
  gap: 10px;
}
.faq__item {
  border: 1px solid var(--stroke2);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 12px 14px;
}
.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item p {
  margin: 10px 0 0;
  color: rgba(243, 244, 246, 0.82);
}

/* Footer */
.footer {
  border-top: 1px solid var(--stroke2);
  padding: 26px 0;
  background: rgba(0, 0, 0, 0.35);
}
.footer__inner {
  display: grid;
  gap: 14px;
  align-items: center;
}
.footer__brand {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}
.footer__links a:hover {
  color: var(--text);
}
.footer__copy {
  margin: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .grid--2 {
    grid-template-columns: 1fr;
  }
  .results {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials {
    grid-template-columns: 1fr;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
  .menuBtn {
    display: inline-flex;
  }
  .mobileNav {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
  }
  .mobileNav.is-open {
    max-height: 420px;
  }
}

@media (max-width: 560px) {
  .topbar__inner {
    flex-direction: column;
    gap: 6px;
  }
  .results {
    grid-template-columns: 1fr;
  }
  .badge {
    min-width: 140px;
  }
}

/* === Premium Método Cards (estilo "Potter") === */
.methodGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.methodCard {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 20px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
}
.methodCard__media {
  position: relative;
  height: 170px;
}
.methodCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}
.methodCard__media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.58) 70%,
    rgba(0, 0, 0, 0.9) 100%
  );
  opacity: 0.35;
}
.methodCard__body {
  padding: 16px 16px 18px;
}
.methodCard__body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.methodCard__body p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
}
.btn--sm {
  padding: 10px 14px;
  font-size: 14px;
}

/* Resultados: cursor + hover premium */
.result img {
  cursor: zoom-in;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.result:hover img {
  transform: translateY(-2px) scale(1.01);
  filter: saturate(1.05);
}

/* Floating WhatsApp */
.floatWhats {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2px;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 67, 0.95),
    rgba(255, 0, 67, 0.75)
  );
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}
.floatWhats:hover {
  filter: brightness(1.05);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.82);
  padding: 18px;
}
.lightbox.is-open {
  display: grid;
}
.lightbox__img {
  max-width: min(1080px, 96vw);
  max-height: 86vh;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.75);
}
.lightbox__close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(20, 20, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .methodGrid {
    grid-template-columns: 1fr;
  }
  .methodCard__media {
    height: 190px;
  }
}

/* ---------- Responsividade extra (mobile-first refinement) ---------- */
@media (max-width: 760px) {
  .topbar {
    padding: 10px 0;
  }
  .topbar__chip {
    font-size: 12px;
  }

  .methodGrid {
    grid-template-columns: 1fr;
  }
  .grid--2 {
    grid-template-columns: 1fr;
  }

  .results {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .results img {
    border-radius: 12px;
  }

  .floatWhats {
    right: 14px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 999px;
  }
}

/* Fundo mais suave: "fosco" sem invadir os cards */
.section-soft-bg:before {
  content: "";
  position: absolute;
  inset: -120px -100px auto -100px;
  height: 280px;
  background: radial-gradient(
      600px 240px at 20% 40%,
      rgba(193, 13, 35, 0.18),
      transparent 60%
    ),
    radial-gradient(
      520px 220px at 70% 60%,
      rgba(255, 255, 255, 0.06),
      transparent 60%
    );
  filter: blur(26px);
  opacity: 0.6;
  pointer-events: none;
}
.section-soft-bg {
  position: relative;
  overflow: hidden;
}
.section-soft-bg > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 420px) {
  .hero__title {
    font-size: 32px;
  }
  .section {
    padding: 54px 0;
  }
  .results {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 761px) {
  .hero__img--desktop {
    display: block;
    object-position: 72% 22%;
  }
  .hero__img--mobile {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 92svh;
  }
  .hero__inner {
    padding: 22px 0 calc(26px + env(safe-area-inset-bottom));
    align-items: flex-end;
  }
  .hero__img--desktop {
    display: none;
  }
  .hero__img--mobile {
    display: block;
    object-position: 50% 20%;
    transform: scale(1.08);
  }
  .hero__overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.62) 42%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.72) 100%
      ),
      radial-gradient(
        720px 520px at 50% 18%,
        rgba(193, 13, 35, 0.14),
        transparent 60%
      );
  }
}

@media (max-width: 420px) {
  .hero__img--mobile {
    object-position: 50% 20%;
    transform: scale(1.08);
  }
}
