/* =========================
   1) Design Tokens
========================= */
:root {
  --orange-primary: #ff6b00;
  --orange-dark: #e05d00;
  --orange-light: #ff8c42;

  --black-deep: #0a0a0a;
  --gray-dark: #1a1a1a;
  --gray-medium: #3a3a3a;
  --gray-light: #7e7e7e;

  --green-finance: #4caf50;
  --blue-tech: #2196f3;

  --text-primary: #fafafa;
  --text-secondary: #cccccc;

  --border-color: #3a3a3a;
  --card-bg: #2a2a2a;

  --header-height: 100px;
  --header-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --audience-col-min: 300px; /* mesmo min da .audience-cards */
  --audience-gap: 2.5rem;
}

/* =========================
   2) Base / Reset
========================= */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body {
  background-color: var(--gray-dark);
  color: var(--text-primary);
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
}

/* =========================
   3) Header + Navegação (desktop + mobile)
========================= */
.black-header {
  background-color: var(--gray-dark);
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transform: translateY(0);
  transition: var(--header-transition);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  padding: 0 2rem;
}
.black-header.hidden {
  transform: translateY(calc(-100% - 10px));
}

.header-container {
  height: 100%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  max-height: 80px;
  width: auto;
  height: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  min-width: 0;
}

/* Nav (desktop) */
.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  justify-content: center;
  margin: 0 auto;
}
.nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
  white-space: nowrap;
}
.nav-menu a:hover {
  color: var(--orange-primary);
}
.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--orange-primary);
  transition: width 0.3s ease;
}
.nav-menu a:hover::after {
  width: 100%;
}

/* Área para revelar o header via hover (desktop) */
.header-reveal-zone {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 1001;
  background: transparent;
  pointer-events: none;
}

/* Botão CTA do header */
.orange-button {
  background-color: var(--orange-primary);
  color: var(--text-primary);
  padding: 0.8rem 1.5rem;
  border-radius: 400px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}
.orange-button:hover {
  background-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 107, 0, 0.3);
}

/* Mobile: botão + menu lateral */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 84vw;
  max-width: 360px;
  background: var(--black-deep);
  border-left: 1px solid var(--border-color);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  z-index: 1100;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}
.mobile-nav.open {
  right: 0;
}
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-color);
}
.mobile-nav__logo {
  height: 42px;
  width: auto;
}
.mobile-nav__close {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
}
.mobile-nav__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}
.mobile-link {
  color: var(--text-primary);
  text-decoration: none;
  padding: 12px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: 0.2s ease;
}
.mobile-link:hover {
  border-color: var(--border-color);
  background: rgba(255, 255, 255, 0.04);
}
.mobile-cta {
  margin-top: 8px;
  display: inline-block;
  text-align: center;
  background: var(--orange-primary);
  color: var(--text-primary);
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1095;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.mobile-backdrop.show {
  opacity: 1;
  visibility: visible;
}
body.no-scroll {
  overflow: hidden;
}

/* =========================
   4) Hero
========================= */
.hero {
  width: 100%;
  margin-top: var(--header-height);
  position: relative;
}
#hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Mobile Hero (parallax) ---------- */
.m-hero {
  display: none;
}

/* Só aparece no mobile; desktop continua com o banner <img> */
@media (max-width: 640px) {
  .hero {
    position: relative;
    margin-top: var(--header-height);
  }
  .hero > #hero-image {
    display: none;
  } /* esconde o banner desktop */
  .m-hero {
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-items: center;
    justify-items: center;
    position: relative;
    height: calc(100vh - var(--header-height));
    max-height: 900px;
    overflow: hidden;
    padding: clamp(16px, 6vw, 28px) clamp(14px, 6vw, 24px)
      calc(18px + env(safe-area-inset-bottom));
    isolation: isolate; /* garante camadas corretas */
  }

  .m-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: none;
    z-index: 0;
    transform: translateZ(0);
    will-change: transform;
  }

  /* Camada sutil de vinheta para legibilidade do texto */
  .m-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      120% 100% at 50% 20%,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.35) 70%,
      rgba(0, 0, 0, 0.55) 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  .m-hero__top,
  .m-hero__middle,
  .m-hero__bottom {
    position: relative;
    z-index: 2; /* acima do fundo */
    width: 100%;
    display: grid;
    place-items: center;
  }

  .m-hero__heading {
    max-width: 16ch;
    margin: 0;
    padding-top: 20px;
    font-weight: 900;
    font-size: clamp(24px, 7.2vw, 34px);
    line-height: 1.05;
    color: #fff;
    text-align: left;
    width: 100%;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
    text-align: center;
  }

  .m-hero__subheading {
    max-width: 20ch;
    margin: 0;
    font-weight: 400;
    font-size: clamp(16px, 4vw, 20px);
    line-height: 1.1;
    color: #fff;
    text-align: left;
    width: 100%;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    text-align: center;
    margin-top: 8px;
  }

  .m-hero__middle {
    align-self: center;
  }
  .m-hero__device {
    width: min(52vw, 340px);
    height: auto;
    filter: drop-shadow(0 14px 40px rgba(0, 0, 0, 0.5));
    transform: translateZ(0);
    will-change: transform;
    pointer-events: none;
  }

  .m-hero__bottom {
    align-self: end;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }
  .m-hero__cta {
    font-size: 0.95rem;
    padding: 0.9rem 1.4rem;
    box-shadow: 0 10px 28px rgba(255, 107, 0, 0.35);
  }
}

/* =========================
   5) NPB Section (Maquininha)
========================= */
.npb-section {
  background: linear-gradient(
    135deg,
    var(--gray-dark) 0%,
    var(--black-deep) 100%
  );
  color: var(--text-primary);
  padding: 80px 20px;
  margin-bottom: 50px;
  position: relative;
  overflow: visible;
  border-bottom: 1px solid var(--border-color);
  border-radius: 0 0 50px 50px;
  z-index: 1;
}
.npb-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.npb-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}
.npb-logo-container {
  margin-bottom: 20px;
  max-width: 300px;
}
.npb-logo-image {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.npb-tagline {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 20px;
  color: var(--text-primary);
}
.npb-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
  color: var(--text-secondary);
}
.npb-btn {
  display: inline-block;
  background-color: var(--orange-primary);
  color: var(--text-primary);
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}
.npb-btn:hover {
  background-color: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.npb-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-hover-container {
  position: relative;
  display: inline-block;
  border-radius: 10px;
}
.npb-product-image {
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}
.hover-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 150px;
  height: 150px;
  background-color: var(--orange-primary);
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
  pointer-events: none;
}
.image-hover-container:hover .hover-circle {
  transform: translate(-50%, -50%) scale(2.5);
  opacity: 1;
}
.image-hover-container:hover .npb-product-image {
  transform: translateY(-5px);
}

/* =========================
   6) Features Carousel
========================= */
.features-carousel {
  max-width: 1200px;
  margin: 60px auto 0;
  position: relative;
  padding: 0 40px;
  perspective: 1000px;
  z-index: 2;
}
.carousel-container {
  overflow: hidden;
  border-radius: 12px;
  padding: 20px 0;
  margin: -20px 0;
  transform-style: preserve-3d;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
  will-change: transform;
}
.carousel-card {
  flex: 0 0 calc(33.333% - 14px);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  z-index: 1;
}
.carousel-card:hover {
  z-index: 10;
  transform: translateY(-5px) scale(1.02);
  border-color: var(--orange-primary);
}
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--orange-primary);
}
.carousel-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.carousel-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.carousel-prev,
.carousel-next {
  background: var(--orange-primary);
  color: var(--text-primary);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
}
.carousel-prev:hover,
.carousel-next:hover {
  background: var(--orange-dark);
}
/* Dots */
.features-carousel {
  position: relative;
}
.features-carousel .carousel-dots {
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
  pointer-events: auto;
}
.features-carousel .carousel-dot {
  appearance: none;
  border: none;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gray-dark);
  box-shadow: inset 0 0 0 1px var(--orange-primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, background-color 0.18s ease,
    box-shadow 0.18s ease, opacity 0.18s ease;
}
.features-carousel .carousel-dot:hover {
  transform: scale(1.15);
}
.features-carousel .carousel-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.features-carousel .carousel-dot.active {
  background: var(--orange-primary);
  opacity: 1;
}

/* =========================
   7) Target Audience
========================= */
.target-audience {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
  text-align: center;
}
.target-audience h3 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
}
.target-audience span {
  font-weight: 900;
  color: var(--orange-primary);
}
.linha {
  height: 5px;
  margin: 20px 0;
  background: linear-gradient(var(--orange-dark), var(--orange-primary));
}
.audience-flags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--audience-col-min), 1fr));
  gap: var(--audience-gap);
  justify-items: center;
  align-items: center;
  margin: 8px 0 12px;
  transform: translateY(12px);
}
.audience-flags img {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.35));
  transition: transform 0.15s ease;
}
.audience-flags img:hover {
  transform: scale(1.1);
}
.target-audience .linha {
  margin: 14px auto 0;
}
.audience-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.card {
  width: 100%;
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.card:hover::before {
  transform: scaleX(1);
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.card p {
  color: var(--text-primary);
  line-height: 1.6;
}
.card-container h4 {
  font-size: 1.5rem;
  color: var(--orange-primary);
  margin: 0;
  font-weight: 700;
}
.cor {
  color: var(--text-primary) !important;
}

/* =========================
   8) Orange Section (vídeo + frase)
========================= */
.orange-section {
  background: linear-gradient(
    135deg,
    var(--orange-primary),
    var(--orange-dark)
  );
  padding: 6rem 2rem;
  width: 100%;
}
.orange-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.video-container {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.phrase-container {
  flex: 1;
  color: white;
  text-align: right;
}
.phrase-container h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}
.phrase-container strong {
  font-weight: 900;
  display: block;
}

/* =========================
   9) Simulator
========================= */
.simulator {
  background: var(--gray-dark);
  padding: 6rem 2rem;
  text-align: center;
}
.simulator .container {
  max-width: 1200px;
  margin: 0 auto;
}
.simulator-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}
.simulator-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.simulator-column {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}
.simulator-card,
.results-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  height: 100%;
}
.input-group {
  margin-bottom: 1.5rem;
  text-align: left;
}
.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
}
.input-group input,
.input-group select {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--orange-primary);
  border-radius: 8px;
  background: var(--black-deep);
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
}
.input-group input:focus,
.input-group select:focus {
  border-color: var(--orange-light);
  transition: 0.3s;
}
.tax-display {
  margin-top: 2rem;
}
.tax-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}
.tax-item.comparison {
  border-bottom: none;
}
.tax-item span {
  color: var(--text-secondary);
}
.tax-item strong {
  color: var(--text-primary);
  font-size: 1.2rem;
}
.tax-item.comparison strong {
  color: var(--orange-primary);
}
.results-card {
  text-align: center;
  border: 1px solid var(--orange-primary);
}
.results-card h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.results-card h2 {
  color: var(--orange-primary);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.results-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.economiza {
  margin-top: 2rem;
  color: var(--text-primary) !important;
  font-size: 1.5rem !important;
}
#valor03 {
  color: var(--green-finance) !important;
  font-size: 2.5rem;
}

/* =========================
   10) Diferenciais
========================= */
.diferenciais-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.diferenciais-header {
  text-align: center;
  margin-bottom: 4rem;
}
.diferenciais-header h2 {
  font-size: 2.8rem;
  color: var(--orange-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.diferenciais-header p {
  font-size: 1.4rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.diferencial-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2.2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.diferencial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.diferencial-card:hover::before {
  transform: scaleX(1);
}
.diferencial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--orange-primary);
}
.diferencial-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 2px solid var(--orange-primary);
}
.diferencial-icon i {
  font-size: 2rem;
  color: var(--orange-primary);
}
.diferencial-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.diferencial-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

/* =========================
   11) CTA Final
========================= */
.final-cta-fullwidth {
  width: 100%;
  position: relative;
  margin: 6rem 0 0;
  overflow: visible;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    var(--gray-dark) 0%,
    var(--black-deep) 100%
  );
}
.parallelogram-container {
  background: linear-gradient(
    135deg,
    var(--orange-primary),
    var(--orange-dark)
  );
  padding: 8rem 2rem;
  position: relative;
  transform: skewY(-3deg);
  width: 100%;
  margin: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.final-cta-content {
  transform: skewY(3deg);
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.final-cta-content h3 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}
.final-cta-content p {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-button {
  background: var(--black-deep);
  color: var(--orange-primary);
  border: 2px solid var(--orange-primary);
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}
.cta-button:hover {
  background: var(--orange-primary);
  color: var(--text-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.6);
}
/* Ribbons */
.ribbon {
  position: absolute;
  height: 40px;
  background: var(--black-deep);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.8);
  left: 0;
  right: 0;
  border: 1px solid rgba(255, 107, 0, 0.4);
}
.ribbon-top {
  top: 0;
  transform: skewY(-3deg);
}
.ribbon-bottom {
  bottom: 0;
  transform: skewY(-3deg);
}
.ribbon-content {
  display: flex;
  white-space: nowrap;
  animation: ribbonMove 15s linear infinite;
  padding: 0 20px;
}
.ribbon-content span {
  color: var(--orange-primary);
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
  padding: 0 20px;
  letter-spacing: 2px;
}
.ribbon-top .ribbon-content,
.ribbon-bottom .ribbon-content {
  transform: skewY(3deg);
}

/* =========================
   12) Footer
========================= */
footer {
  background: var(--black-deep);
  color: var(--text-secondary);
  text-align: center;
  padding: 3rem 2rem;
}
.newpay-footer {
  background-color: var(--black-deep);
  color: var(--text-primary);
  padding: 50px 20px 30px;
  position: relative;
  z-index: 2;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: var(--orange-primary);
  letter-spacing: 0.5px;
}
.footer-logo img {
  max-height: 60px;
  width: auto;
  height: auto;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-item {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.4;
}
.footer-links-section {
  display: flex;
  justify-content: center;
}
.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.link-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 35px;
}
.links-title {
  color: var(--text-secondary);
}
.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}
.footer-link:hover {
  color: var(--orange-primary);
  padding-left: 5px;
}
.footer-social-section {
  display: flex;
  justify-content: flex-end;
}
.social-buttons {
  display: flex;
  gap: 15px;
}
.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--orange-primary);
  color: var(--text-primary);
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-button:hover {
  background-color: var(--orange-dark);
  transform: translateY(-3px);
}
.footer-end {
  padding-top: 80px;
}

/* Transição CTA → Footer */
.cta-footer-transition {
  height: 60px;
  background: var(--black-deep);
  margin-top: -1px;
  position: relative;
  z-index: 0;
}

/* =========================
   13) WhatsApp Float
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}
.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  animation: pulse 2s infinite;
}
.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px var(--orange-dark);
  background-color: var(--orange-primary);
}
.whatsapp-button i {
  font-size: 32px;
  color: white;
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background-color: var(--black-deep);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--black-deep);
}
.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* =========================
   14) Sessões de Vendas / Indicações / Upsell
========================= */
/* Meta de Vendas (parceiros) */
.sales-target-section {
  background: var(--gray-dark);
  padding: 6rem 2rem;
}
.sales-container {
  max-width: 1200px;
  margin: 0 auto;
}
.sales-header {
  text-align: center;
  margin-bottom: 1.25rem;
}
.sales-header h2 {
  font-size: 2.2rem;
  color: var(--text-primary);
}
.sales-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 0.25rem;
}
.sales-controls {
  display: flex;
  justify-content: center;
  margin: 1.2rem 0 2rem;
}
.sales-controls .input-group {
  width: 100%;
  max-width: 420px;
}
.sales-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 20px;
}
.sales-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.sales-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange-primary);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
.sales-card h3 {
  margin: 6px 0 4px;
  color: var(--text-primary);
  font-size: 1.2rem;
}
.sales-price {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}
.sales-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--orange-primary);
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange-primary);
}
.sales-card-icon i {
  font-size: 1.4rem;
}
.sales-result-box {
  margin-top: 10px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 4px;
  text-align: center;
}
.sales-result-box span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.sales-result-box .sales-result {
  color: var(--orange-primary);
  font-size: 1.8rem;
  line-height: 1;
}
.sales-footnote {
  color: var(--text-secondary);
  text-align: center;
  margin-top: 1rem;
  font-size: 0.95rem;
}
.sales-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
  text-align: center;
}
.sales-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.sales-badge strong {
  color: var(--orange-primary);
}

/* Indicações */
.referral-section {
  background: var(--gray-dark);
  padding: 6rem 2rem;
  border-top: 1px solid var(--border-color);
}
.ref-result-wrapper {
  display: flex;
  justify-content: center;
}
.ref-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: border-color 0.25s ease, transform 0.25s ease,
    box-shadow 0.25s ease;
}
.ref-card:hover {
  border-color: var(--orange-primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}
.ref-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--orange-primary);
  background: rgba(255, 107, 0, 0.08);
  color: var(--orange-primary);
}
.ref-icon i {
  font-size: 1.6rem;
}
.ref-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange-primary);
  line-height: 1.1;
  margin: 0.35rem 0 0.25rem;
}
.ref-note {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Upsell mini-CTA */
.upsell-partner {
  background: linear-gradient(135deg, #121212, #0f0f0f);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2.2rem 1rem;
}
.upsell-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.upsell-text h3 {
  color: var(--text-primary);
  font-size: 1.6rem;
  line-height: 1.25;
  margin: 0 0 0.35rem 0;
}
.upsell-text h3 span {
  color: var(--orange-primary);
}
.upsell-text p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 1rem;
}
.sm-only {
  display: none;
}

/* =========================
   15) "Como funciona" — Força 4 cards por linha (desktop)
========================= */
@media (min-width: 1100px) {
  .steps-section .steps-flow {
    display: grid !important;
    grid-template-columns: 1fr 36px 1fr 36px 1fr 36px 1fr;
    column-gap: 24px;
    align-items: stretch;
    justify-items: stretch;
  }
  .steps-section .step-card {
    width: auto !important;
    min-width: 0;
  }
  .steps-section .step-arrow {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
  }
}

/* =========================
   16) Keyframes
========================= */
@keyframes ribbonMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* =========================
   17) Media Queries (consolidadas)
========================= */
/* Header/nav */
@media (max-width: 1024px) {
  .nav-menu ul {
    gap: 1rem;
  }
  .nav-menu a {
    font-size: 0.8rem;
  }
}
@media (max-width: 900px) {
  .header-right {
    gap: 20px;
  }
  .nav-menu ul {
    gap: 0.8rem;
  }
  .nav-menu a {
    font-size: 0.75rem;
  }
  .orange-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.75rem;
  }
}
@media (max-width: 768px) {
  .black-header {
    padding: 0 1rem;
  }
  .header-container {
    padding: 0 10px;
  }
  .logo img {
    max-height: 60px;
  }
  .header-right {
    gap: 15px;
  }
  .nav-menu ul {
    gap: 0.6rem;
  }
  .nav-menu a {
    font-size: 0.7rem;
  }
  .orange-button {
    padding: 0.6rem 1rem;
    font-size: 0.7rem;
  }
}
@media (max-width: 640px) {
  .nav-menu {
    display: none;
  }
  .header-right {
    justify-content: flex-end;
  }
  .mobile-menu-btn {
    display: block;
  }
  .header-button {
    display: none;
  }
  .logo img {
    max-height: 56px;
  }
}

/* Hero / NPB / Carousel */
@media (max-width: 768px) {
  .npb-container {
    flex-direction: column;
    text-align: center;
  }
  .npb-description {
    margin: 0 auto 30px;
  }
  .npb-image {
    order: -1;
    margin-bottom: 30px;
  }
  .npb-section {
    border-radius: 0 0 30px 30px;
    padding: 50px 20px;
  }
  .features-carousel {
    padding: 0 20px;
  }
  .carousel-card {
    flex: 0 0 calc(50% - 10px);
  }
  .hover-circle {
    width: 80px;
    height: 80px;
  }
  .image-hover-container:hover .hover-circle {
    transform: translate(-50%, -50%) scale(2.2);
  }
}
@media (max-width: 640px) {
  .hero > #hero-image {
    width: 100%;
    height: auto;
  }
  .npb-product-image {
    max-width: 80%;
  }
  .carousel-card {
    flex: 0 0 100%;
  }
  .carousel-prev,
  .carousel-next {
    width: 44px;
    height: 44px;
  }
  .features-carousel .carousel-dots {
    bottom: -2px;
    gap: 8px;
  }
  .features-carousel .carousel-dot {
    width: 8px;
    height: 8px;
  }
  .npb-image {
    display: none !important;
  }
  .npb-content {
    max-width: 700px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .carousel-card {
    flex: 0 0 100%;
  }
}

/* Orange section */
@media (max-width: 768px) {
  .orange-container {
    flex-direction: column;
  }
  .video-container,
  .phrase-container {
    width: 100%;
  }
  .video-container {
    margin-bottom: 30px;
  }
  .phrase-container h2 {
    font-size: 28px;
  }
}

/* Público-alvo */
@media (max-width: 768px) {
  .audience-cards {
    flex-direction: column;
    align-items: center;
  }
  .card-container {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .audience-flags img,
  .linha {
    display: none;
  }
}

/* Simulator */
@media (max-width: 768px) {
  .simulator-grid {
    flex-direction: column;
  }
  .simulator-column {
    max-width: 100%;
  }
}

/* Diferenciais */
@media (max-width: 768px) {
  .diferenciais-section {
    padding: 4rem 1.5rem;
  }
  .diferenciais-header h2 {
    font-size: 2.2rem;
  }
  .diferenciais-header p {
    font-size: 1.2rem;
  }
  .diferenciais-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .diferencial-card {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .diferenciais-header h2 {
    font-size: 1.8rem;
  }
  .diferencial-icon {
    width: 70px;
    height: 70px;
  }
  .diferencial-icon i {
    font-size: 1.75rem;
  }
}

/* CTA Final */
@media (max-width: 768px) {
  .final-cta-fullwidth {
    margin: 6rem 0;
  }
  .parallelogram-container {
    padding: 6rem 1.5rem;
  }
  .final-cta-content h3 {
    font-size: 2rem;
  }
  .final-cta-content p {
    font-size: 1.1rem;
  }
  .ribbon {
    height: 35px;
  }
  .ribbon-content span {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Footer */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-links-section,
  .footer-social-section {
    justify-content: flex-start;
  }
  .links-grid {
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .footer-links-section {
    justify-content: center;
    width: 100%;
  }
  .links-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 16px;
  }
  .link-group {
    align-items: center;
  }
  .links-title {
    display: none;
  }
  .footer-link {
    display: inline-block;
    padding: 8px 0;
  }
}
@media (max-width: 480px) {
  .links-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-logo {
    font-size: 1.8rem;
  }
  .newpay-footer {
    padding: 40px 20px;
  }
}

/* WhatsApp */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 15px;
    right: 20px;
  }
  .whatsapp-button {
    width: 55px;
    height: 55px;
  }
  .whatsapp-button i {
    font-size: 28px;
  }
  .whatsapp-tooltip {
    display: none;
  }
}

/* Mobile — oculta setas do passo */
@media (max-width: 768px) {
  .steps-section .step-arrow {
    display: none;
  }
}

/* === Upsell Partner (responsivo) === */
@media (max-width: 768px) {
  .upsell-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
  }

  .upsell-partner .npb-btn {
    display: inline-flex;
    margin: 8px auto 0; /* centraliza horizontalmente */
    width: auto;
    max-width: none;
  }

  .upsell-actions,
  .upsell-partner .sales-cta {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .upsell-partner {
    padding: 1.8rem 1rem;
  }
  .upsell-text h3 {
    font-size: 1.35rem;
  }
  .upsell-text p {
    font-size: 0.96rem;
  }
}

/* ===== Mobile: maquininha colada no fundo e CTA fixo ===== */
@media (max-width: 640px) {
  /* garante recorte */
  .m-hero {
    overflow: hidden;
    position: relative;
  }

  /* leva a camada da maquininha para o fundo da seção */
  .m-hero__middle {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0; /* encosta no fundo */
    display: flex;
    justify-content: center;
    pointer-events: none; /* imagem não intercepta cliques */
  }

  /* mostra ~70% da imagem: empurra 30% para baixo, fora da seção */
  .m-hero__device {
    width: clamp(300px, 52vw, 340px);
    height: auto;
    transform: translateY(30%); /* ajuste fino: 25–35% */
    filter: drop-shadow(0 14px 40px rgba(0, 0, 0, 0.5));
  }

  /* CTA laranja fixo, centralizado no rodapé da tela */
  .m-hero__cta {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 1050; /* acima do conteúdo/whatsapp(1000), abaixo do menu(1100) */
    box-shadow: 0 10px 28px rgba(255, 107, 0, 0.35);
  }

  /* o “slot” inferior do grid não precisa de altura quando o CTA é fixo */
  .m-hero__bottom {
    min-height: 0;
  }
}
/* ===== Fix: CTA acima de tudo (exceto menu off-canvas) ===== */
@media (max-width: 640px) {
  /* não criar stacking context na seção hero */
  .m-hero {
    isolation: unset; /* ou: isolation: initial; */
  }

  /* CTA realmente no topo da página */
  .m-hero__cta {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 1090; /* acima do header(1000) e WhatsApp(1000),
                      abaixo do backdrop(1095) e menu(1100) */
    box-shadow: 0 10px 28px rgba(255, 107, 0, 0.35);
  }
}
/* ===== NPB section — ajustes mobile ===== */
@media (max-width: 640px) {
  #maquininha .npb-content {
    padding: 10px 12px;
  }

  /* só a logo fica centralizada */
  #maquininha .npb-logo-container {
    margin: 0 auto 12px;
    text-align: center;
  }

  /* título e parágrafo justificados */
  #maquininha .npb-tagline {
    margin: 0 0 12px;
    font-size: clamp(22px, 6.2vw, 28px);
    line-height: 1.2;
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-justify: inter-word;
    hyphens: auto;
  }

  #maquininha .npb-description {
    max-width: 34ch;
    margin: 0 auto;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
  }

  /* remove o CTA da NPB section no mobile */
  #maquininha .npb-btn {
    display: none !important;
  }

  .cta-button {
    display: none !important;
  }
}

/* ===== Carousel — mobile 2 cards por coluna com scroll-snap e peek ===== */
@media (max-width: 640px) {
  .features-carousel {
    max-width: 100%;
    margin: 28px auto 0;
    padding: 0 12px; /* respiro lateral */
  }

  /* o scroller é o container */
  .features-carousel .carousel-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory; /* snap horizontal */
    scroll-padding-left: 12px; /* onde o snap “ancora” */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .features-carousel .carousel-container::-webkit-scrollbar {
    display: none;
  }

  /* grid em colunas: cada coluna tem 2 linhas (2 cards empilhados) */
  .features-carousel .carousel-track {
    display: grid !important; /* vence o flex do desktop */
    grid-auto-flow: column; /* preenche por colunas */
    grid-template-rows: repeat(2, auto); /* 2 linhas por coluna   */
    grid-auto-columns: min(86vw, 360px); /* largura da coluna → cria PEEK */
    column-gap: 14px; /* espaço entre colunas  */
    row-gap: 12px;
    padding: 6px 20px 6px 0; /* um pouco de respiro à direita */
    transform: none !important; /* anula translateX do slider desktop */
    transition: none !important;
  }

  /* cada card vira “pill” horizontal: ícone à esquerda + título */
  .features-carousel .carousel-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    min-height: 72px;
    text-align: left;
    border-radius: 12px;
    scroll-snap-align: start; /* faz o snap em cada coluna (ver abaixo) */
  }

  /* ícone com plaquinha */
  .features-carousel .card-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--orange-primary);
    font-size: 1.2rem;
    margin: 0;
  }

  /* mostra só o título */
  .features-carousel .carousel-card h3 {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.2;
    color: var(--text-primary);
  }
  .features-carousel .carousel-card p {
    display: none !important;
  }

  /* setas e dots somem no mobile */
  .features-carousel .carousel-controls,
  .features-carousel .carousel-dots {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .features-carousel .carousel-card {
    scroll-snap-align: none;
  }
  .features-carousel .carousel-card:nth-child(odd) {
    scroll-snap-align: start;
  }
}

/* Evita que números longos estourem o card */
.results-card {
  overflow: hidden; /* recorta o que sobrar */
  contain: layout paint; /* isola pintura/layout do card */
}

.results-card h2,
.results-card h3,
.tax-item strong {
  max-width: 100%;
  overflow-wrap: anywhere; /* pode quebrar no meio do número */
  word-break: break-word; /* fallback */
  white-space: normal;
}

/* Tamanhos responsivos no mobile */
@media (max-width: 640px) {
  .results-card h2 {
    font-size: clamp(1.1rem, 6.8vw, 2rem);
    line-height: 1.1;
  }
  .results-card h3 {
    font-size: clamp(0.9rem, 3.8vw, 1.1rem);
  }
  .tax-item strong {
    font-size: clamp(1rem, 5vw, 1.2rem);
  }
}
