:root {
  --orange: #f37321;
  --orange-dark: #d75217;
  --gray-bg: #eae9e8;
  --text-dark: #231f20;
  --text-muted: #666;
  --white: #fff;
  --shadow: 0 4px 4.8px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.3;
}

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

.content-wide {
  width: min(1723px, calc(100% - 2rem));
  margin: 0 auto;
}

.header {
  background: var(--orange);
  padding: 0.75rem 1rem;
}

.header-inner {
  width: min(1800px, calc(100% - 1rem));
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
}

.header-logo {
  width: clamp(120px, 16vw, 330px);
  flex: 0 0 auto;
}

.header-menu {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
}

.menu-produtos {
  display: grid;
  grid-template-rows: 50px auto;
  justify-items: center;
  align-items: end;
  gap: 0.15rem;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: lowercase;
  text-align: center;
  white-space: nowrap;
}

.menu-produtos svg {
  display: block;
  width: auto;
  height: 44px;
  align-self: end;
  flex-shrink: 0;
}

.hero {
  padding: 0;
}

.hero a {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.hero img {
  width: 100%;
  height: auto;
}

.title-strip {
  background: var(--gray-bg);
  padding: clamp(0.5rem, 2vw, 1.25rem) 1rem;
  text-align: center;
}

.title-strip h2 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(1rem, 2.7vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.problems-section {
  background: var(--gray-bg);
  padding: clamp(1rem, 3vw, 3rem) 0 clamp(1.5rem, 3vw, 4rem);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.problem-card {
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 2rem;
  box-shadow: var(--shadow);
  min-height: 170px;
  padding: 0.85rem;
  text-align: center;
  display: grid;
  align-content: center;
  gap: 0.25rem;
}

.problem-card h3,
.problem-card p {
  margin: 0;
  color: var(--orange);
  font-size: clamp(0.88rem, 1.55vw, 1.8rem);
  line-height: 1.12;
}

.problem-card h3 {
  font-weight: 700;
}

.section-highlight {
  margin: clamp(1rem, 2.3vw, 2.2rem) 0 0;
  text-align: center;
  color: var(--orange);
  font-size: clamp(1rem, 2vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.how-section-wrap {
  background: #eae9e8;
  padding: clamp(0.5rem, 1.5vw, 1rem) 0;
}

.how-section-wrap .how-section {
  margin: 0 auto;
}

.header-enter-wrap {
  padding: clamp(0.4rem, 1vw, 0.75rem) 0;
}

.header-enter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-enter-copy {
  color: var(--orange);
  font-size: clamp(1rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.header-enter-image {
  width: min(90px, 15vw);
  height: auto;
  flex: 0 0 auto;
}

.feature-card {
  width: min(1723px, calc(100% - 2rem));
  margin: clamp(1rem, 2.6vw, 2.5rem) auto;
  border-radius: 2rem;
  padding: clamp(1rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  gap: clamp(0.8rem, 2vw, 2rem);
  align-items: center;
}

.feature-white {
  background: var(--white);
}

.feature-orange {
  background: var(--orange);
}

.feature-card h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.6rem, 4.4vw, 6.25rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.feature-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 3.3vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.feature-orange h2,
.feature-orange h3,
.feature-orange .feature-subtext,
.feature-orange li,
.feature-orange .feature-subtitle {
  color: var(--text-dark);
}

.feature-white h2,
.feature-white h3,
.feature-white .feature-subtext,
.feature-white li,
.feature-white .feature-subtitle {
  color: var(--orange);
}

.feature-subtext,
.feature-subtitle {
  margin: 0.5rem 0 0;
  font-size: clamp(0.9rem, 1.6vw, 2rem);
}

.feature-card ul,
.feature-card ol {
  margin: 0.9rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
  font-size: clamp(0.9rem, 1.7vw, 2rem);
}

.feature-figure {
  justify-self: center;
}

.feature-figure img {
  width: min(100%, 520px);
}

.feature-figure-narrow img {
  width: min(100%, 250px);
}

.feature-right {
  display: grid;
  gap: 1rem;
}

.cta-dark,
.cta-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 180px;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 2.25rem);
  font-weight: 500;
  padding: 0.6em 1.3em;
  cursor: pointer;
  text-decoration: none;
}

.cta-dark {
  background: var(--orange);
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.cta-light {
  background: var(--white);
  color: var(--orange);
  border: 2px solid var(--orange);
}

.vip-section {
  background: var(--gray-bg);
  padding: clamp(1.2rem, 3vw, 3.5rem) 0;
}

.vip-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1rem;
  align-items: start;
}

.vip-intro h2 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(2rem, 4.2vw, 6.25rem);
  line-height: 1.15;
  letter-spacing: -0.07em;
}

.vip-intro p {
  margin: 0.8rem 0 0;
  color: var(--orange);
  font-size: clamp(1rem, 1.7vw, 2rem);
  font-weight: 600;
}

.vip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.vip-card {
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 2rem;
  box-shadow: var(--shadow);
  min-height: 220px;
  padding: 1rem;
  text-align: center;
  color: var(--orange);
  display: grid;
  align-content: center;
  gap: 0.5rem;
}

.vip-card h3,
.vip-card p {
  margin: 0;
  font-size: clamp(0.85rem, 1.3vw, 2.25rem);
}

.vip-price {
  font-size: clamp(1.4rem, 2.9vw, 5.5rem) !important;
  font-weight: 700;
  line-height: 1;
}

.vip-price span {
  font-size: 0.45em;
  font-weight: 300;
}

.vip-badge {
  width: min(110px, 80%);
  justify-self: center;
}

.vip-cta {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.vip-cta img {
  width: min(80px, 75%);
  justify-self: center;
}

.app-section {
  grid-template-columns: 1fr auto 1fr;
}

.app-phone img {
  width: min(220px, 95%);
}

.store-buttons {
  width: min(520px, 100%);
  margin-top: 1rem;
}

.app-logo {
  width: min(420px, 100%);
}

.registration-section {
  background: var(--gray-bg);
  padding: clamp(1.2rem, 3vw, 3.5rem) 0;
}

.registration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1rem;
  align-items: stretch;
}

.registration-intro,
.registration-card {
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.registration-intro {
  background: var(--orange);
  padding: clamp(1.4rem, 3vw, 2.6rem);
  color: var(--text-dark);
  display: grid;
  align-content: start;
  gap: 1rem;
}

.registration-kicker {
  width: fit-content;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.registration-intro h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.registration-intro p {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.registration-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.registration-benefits li {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(35, 31, 32, 0.08);
  border-radius: 1.2rem;
  padding: 0.95rem 1rem;
  font-size: 0.98rem;
  line-height: 1.45;
}

.registration-card {
  background: var(--white);
  border: 2px solid var(--orange);
  padding: clamp(1.2rem, 3vw, 2.2rem);
}

.registration-progress {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.registration-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
  border-radius: 1.3rem;
  padding: 0.85rem 1rem;
  background: #f6f2ef;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.registration-step strong,
.registration-step p {
  display: block;
  margin: 0;
}

.registration-step strong {
  color: var(--text-dark);
  font-size: 0.98rem;
}

.registration-step p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.registration-step-number {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--orange);
  color: var(--orange);
  background: var(--white);
  font-weight: 700;
}

.registration-step.is-active {
  background: rgba(243, 115, 33, 0.12);
  border-color: rgba(243, 115, 33, 0.28);
}

.registration-step.is-complete {
  background: var(--orange);
  border-color: var(--orange);
}

.registration-step.is-complete strong,
.registration-step.is-complete p {
  color: var(--white);
}

.registration-step.is-complete .registration-step-number {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
}

.registration-feedback {
  display: none;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.45;
}

.registration-feedback.is-visible {
  display: block;
}

.registration-feedback.is-success {
  background: #eff9f1;
  border: 1px solid #b8ddc0;
  color: #1f6f37;
}

.registration-feedback.is-error {
  background: #fff1eb;
  border: 1px solid #f2c1ae;
  color: #b3471f;
}

.registration-form {
  display: grid;
  gap: 0.95rem;
}

.registration-form-hidden {
  display: none;
}

.registration-field {
  display: grid;
  gap: 0.45rem;
}

.registration-field label {
  color: var(--orange);
  font-size: 0.96rem;
  font-weight: 600;
}

.registration-field input {
  width: 100%;
  border: 1.5px solid #e7d7cf;
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  background: #fffbf8;
  color: var(--text-dark);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.registration-field input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(243, 115, 33, 0.12);
}

.registration-field input::placeholder {
  color: #9b8c86;
}

.registration-hint,
.registration-summary,
.registration-success p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.registration-hint,
.registration-summary {
  color: var(--text-muted);
}

.registration-summary {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: #f6f2ef;
}

.registration-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.registration-secondary {
  min-width: 160px;
}

.registration-card button[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.registration-success {
  display: grid;
  gap: 0.9rem;
}

.registration-success-badge {
  width: fit-content;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgba(243, 115, 33, 0.14);
  color: var(--orange);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.registration-success h3 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
  line-height: 1.08;
}

.registration-hint code {
  display: inline-block;
  padding: 0.1rem 0.35rem;
  border-radius: 0.45rem;
  background: rgba(243, 115, 33, 0.1);
  color: var(--orange-dark);
  font-size: 0.88em;
}

.auth-header-inner {
  align-items: center;
  justify-content: space-between;
}

.auth-logo-link {
  display: inline-flex;
  align-items: center;
}

.auth-back-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
}

.auth-page-section {
  background: var(--gray-bg);
  padding: clamp(1.3rem, 3vw, 3.6rem) 0;
}

.auth-page-shell {
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
}

.auth-page-card {
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 2rem;
  box-shadow: var(--shadow);
  padding: clamp(1.3rem, 3vw, 2.5rem);
  display: grid;
  gap: 1rem;
}

.auth-page-topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.auth-step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: #f6f2ef;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.auth-step-pill.is-active {
  background: rgba(243, 115, 33, 0.12);
  color: var(--orange-dark);
  border-color: rgba(243, 115, 33, 0.28);
}

.auth-step-pill.is-complete {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.auth-page-card h1 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(1.8rem, 3.8vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.auth-page-card p {
  margin: 0;
}

.auth-page-lead {
  color: var(--text-dark);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.55;
}

.auth-page-helper {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.auth-page-meta {
  display: grid;
  gap: 0.65rem;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  background: #f6f2ef;
}

.auth-page-meta strong {
  color: var(--orange-dark);
  font-size: 0.95rem;
}

.auth-page-meta span {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
  word-break: break-word;
}

.auth-page-card .registration-actions {
  margin-top: 0.2rem;
}

.auth-page-message {
  text-align: center;
}

.auth-page-message .registration-actions {
  justify-content: center;
}

.auth-page-link {
  color: var(--orange-dark);
  font-weight: 600;
  word-break: break-word;
}

.registration-input-wrap {
  position: relative;
}

.registration-input-wrap input {
  padding-right: 4.6rem;
}

.registration-toggle-password {
  position: absolute;
  top: 50%;
  right: 0.85rem;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--orange-dark);
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.registration-toggle-password svg {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
}

.registration-field input[readonly] {
  background: #f3f0ed;
  color: #6d625e;
}

.newsletter {
  background: var(--orange);
  padding: 1.25rem 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.newsletter p {
  margin: 0;
  color: var(--white);
  font-size: clamp(0.9rem, 1.5vw, 1.75rem);
  font-weight: 500;
}

.newsletter-form {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.newsletter-form input {
  width: clamp(140px, 16vw, 328px);
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: var(--gray-bg);
  color: var(--text-muted);
  font-family: "Roboto Condensed", sans-serif;
  font-style: italic;
  font-size: clamp(0.8rem, 1.1vw, 1.25rem);
}

.newsletter-form button {
  border: 0;
  background: transparent;
  width: 52px;
  height: 52px;
  padding: 0;
  cursor: pointer;
}

.newsletter-form button img {
  width: 100%;
}

.footer {
  background: var(--gray-bg);
  padding: clamp(1.2rem, 3vw, 2.5rem) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.2rem;
  align-items: start;
}

.footer-brand img {
  width: min(240px, 80%);
}

.footer-brand p {
  margin: 0.8rem 0 0;
  max-width: 330px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.25rem;
}

.footer-social img {
  width: 44px;
  height: 44px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.footer-links h4 {
  margin: 0 0 0.45rem;
  color: var(--text-dark);
  font-size: 1rem;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

@media (max-width: 1200px) {
  .feature-card {
    grid-template-columns: 1fr 1fr;
  }

  .feature-right {
    grid-column: 1 / -1;
  }

  .vip-layout {
    grid-template-columns: 1fr;
  }

  .vip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-section {
    grid-template-columns: 1fr 1fr;
  }

  .app-section .feature-right {
    grid-column: 1 / -1;
  }

  .registration-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-social {
    justify-content: flex-end;
  }

  .footer-links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .header-inner {
    align-items: center;
    gap: 0.8rem;
  }

  .header-logo {
    width: clamp(140px, 28vw, 250px);
  }

  .header-menu {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.7rem;
    column-gap: 0.9rem;
  }

  .menu-produtos {
    grid-template-rows: 42px auto;
    font-size: 0.84rem;
  }

  .menu-produtos svg {
    height: 38px;
  }

  .auth-back-link {
    font-size: 0.9rem;
    padding: 0.55rem 0.9rem;
  }
}

@media (max-width: 760px) {
  .header {
    padding: 0.55rem 0.7rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: center;
    width: calc(100% - 0.5rem);
    gap: 0.6rem;
  }

  .header-logo {
    width: clamp(140px, 50vw, 220px);
  }

  .header-menu {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    justify-items: center;
    gap: 0.65rem 0.35rem;
    overflow: visible;
    padding-bottom: 0;
  }

  .menu-produtos {
    width: 100%;
    min-width: 0;
    grid-template-rows: 34px auto;
    gap: 0.15rem;
    font-size: 0.69rem;
    line-height: 1.05;
    white-space: normal;
    text-wrap: balance;
  }

  .menu-produtos svg {
    height: 30px;
  }

  .title-strip h2 {
    line-height: 1.15;
  }

  .problems-grid {
    grid-template-columns: 1fr 1fr;
  }

  .header-enter-content {
    flex-direction: column;
    text-align: center;
  }

  .header-enter-image {
    width: min(180px, 55vw);
  }

  .feature-card {
    width: calc(100% - 1rem);
    margin: 0.7rem auto;
    border-radius: 1rem;
    grid-template-columns: 1fr;
  }

  .feature-right {
    grid-column: auto;
  }

  .cta-dark,
  .cta-light {
    width: 100%;
    text-align: center;
  }

  .vip-grid {
    grid-template-columns: 1fr;
  }

  .app-section {
    grid-template-columns: 1fr;
  }

  .auth-header-inner {
    flex-direction: column;
  }

  .auth-page-shell {
    width: calc(100% - 1rem);
  }

  .auth-page-card {
    border-radius: 1rem;
  }

  .auth-page-topbar {
    flex-direction: column;
  }

  .auth-step-pill {
    width: 100%;
  }

  .registration-intro,
  .registration-card {
    border-radius: 1rem;
  }

  .registration-progress {
    grid-template-columns: 1fr;
  }

  .registration-actions {
    flex-direction: column;
  }

  .registration-secondary {
    width: 100%;
  }

  .newsletter-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem 0.3rem;
  }

  .menu-produtos {
    font-size: 0.67rem;
  }
}

.header-mobile {
  background: #f37321;
  padding: 14px 12px;
}

.header-mobile-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-mobile-logo {
  width: 100%;
  height: auto;
  display: block;
}

/* evita piscar layout */
#header-mobile,
#header-desktop {
  width: 100%;
}
