/* ========================================
   Momenza Landing Page — style.css
   Cores: Terracota #C4633B | Verde #2F4A3E
   Sem degradê.
   ======================================== */

:root {
  --primary: #C4633B;
  --primary-hover: #B0562F;
  --secondary: #2F4A3E;
  --secondary-hover: #253D33;
  --bg: #F7F4F0;
  --surface: #FFFFFF;
  --text-primary: #1C1B19;
  --text-secondary: #6B6862;
  --border: #E5E2DC;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(28,27,25,.08), 0 1px 2px rgba(28,27,25,.04);
  --shadow-md: 0 4px 12px rgba(28,27,25,.1), 0 2px 4px rgba(28,27,25,.06);
  --shadow-lg: 0 8px 24px rgba(28,27,25,.12), 0 4px 8px rgba(28,27,25,.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── Utilitários ── */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.badge--primary { background: rgba(196,99,59,.12); color: var(--primary); }
.badge--secondary { background: rgba(47,74,62,.12); color: var(--secondary); }

/* ── Navbar ── */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}

.navbar__logo img {
  height: 28px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color .2s;
}

.navbar__links a:hover {
  color: var(--primary);
}

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s, transform .1s;
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--primary);
  color: #fff;
}

.btn--primary:hover { background: var(--primary-hover); }

.btn--secondary {
  background: var(--secondary);
  color: #fff;
}

.btn--secondary:hover { background: var(--secondary-hover); }

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

.btn--outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* ── Hero ── */

.hero {
  background: var(--secondary);
  padding: 80px 0 96px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: var(--bg);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__label {
  margin-bottom: 16px;
}

.hero__label span {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(196,99,59,.25);
  color: #F7C4AC;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .4px;
}

.hero__title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}

.hero__title span {
  color: var(--primary);
}

.hero__desc {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__stores {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  transition: background .2s;
}

.store-badge:hover {
  background: rgba(255,255,255,.18);
}

.store-badge svg {
  display: inline;
  width: 20px;
  height: 20px;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.15);
  border-radius: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
}

.phone-mockup__icon {
  width: 80px;
  height: 80px;
}

.phone-mockup__text {
  color: rgba(255,255,255,.5);
  font-size: 14px;
  text-align: center;
  padding: 0 24px;
}

/* ── Features ── */

.features {
  padding: 96px 0;
  background: var(--bg);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .badge {
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.3px;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.feature-card__icon--primary { background: rgba(196,99,59,.1); color: var(--primary); }
.feature-card__icon--secondary { background: rgba(47,74,62,.1); color: var(--secondary); }

.feature-card__icon i,
.feature-card__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}

.feature-card .badge {
  margin-bottom: 8px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Pricing ── */

.pricing {
  padding: 96px 0;
  background: var(--surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.plan-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.plan-card--featured {
  border-color: var(--primary);
  position: relative;
}

.plan-card__ribbon {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.plan-card__header {
  margin-bottom: 24px;
}

.plan-card__name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.plan-card--featured .plan-card__name {
  color: var(--primary);
}

.plan-card__tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
}

.price-period {
  font-size: 14px;
  color: var(--text-secondary);
}

.plan-card__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.plan-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.feature-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  font-size: 10px;
}

.feature-check--free { background: rgba(47,74,62,.1); color: var(--secondary); }
.feature-check--plus { background: rgba(196,99,59,.1); color: var(--primary); }

.plan-card .btn {
  width: 100%;
}

.price-annual {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.price-annual strong {
  color: var(--primary);
}

/* ── How it works ── */

.how-it-works {
  padding: 96px 0;
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.step:nth-child(2) .step__number { border-color: var(--primary); }

.step h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── CTA Section ── */

.cta-section {
  padding: 96px 0;
  background: var(--secondary);
  text-align: center;
}

.cta-section h2 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -.3px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .hero__stores {
  justify-content: center;
}

/* ── 49Tech Brand Section ── */

.brand-section {
  padding: 96px 0;
  background: var(--bg);
}

.brand-section__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.brand-section__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-section__text h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -.3px;
  line-height: 1.2;
}

.brand-section__highlight {
  color: var(--primary);
}

.brand-section__text p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
}

.brand-section__contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s;
}

.brand-section__contact:hover {
  opacity: .75;
}

.brand-section__contact i {
  width: 18px;
  height: 18px;
}

.brand-section__badge {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.brand-section__badge span {
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}

.brand-section__badge small {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .85;
}

@media (max-width: 640px) {
  .brand-section__inner {
    grid-template-columns: 1fr;
  }

  .brand-section__badge {
    display: none;
  }
}

/* ── Footer ── */

footer {
  background: var(--text-primary);
  color: rgba(255,255,255,.65);
  padding: 48px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__brand img {
  height: 24px;
  margin-bottom: 16px;
  opacity: .85;
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.65;
  max-width: 260px;
}

.footer__col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  font-size: 14px;
  transition: color .2s;
}

.footer__col a:hover { color: var(--primary); }

.footer__bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.footer__bottom a {
  color: rgba(255,255,255,.45);
}

.footer__bottom a:hover { color: var(--primary); }

/* ── Inner pages (Termos / Privacidade) ── */

.inner-page {
  padding: 80px 0 120px;
}

.inner-page .container {
  max-width: 720px;
}

.inner-page h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -.3px;
}

.inner-page .meta {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.inner-page h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 12px;
  color: var(--secondary);
}

.inner-page h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 24px 0 8px;
}

.inner-page p,
.inner-page li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.inner-page ul,
.inner-page ol {
  padding-left: 20px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.inner-page p + p { margin-top: 12px; }

.inner-page .highlight-box {
  background: rgba(196,99,59,.07);
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14px;
  color: var(--text-primary);
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero__desc { margin: 0 auto 40px; }
  .hero__actions { justify-content: center; }
  .hero__stores { justify-content: center; }

  .hero__visual { display: none; }

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

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

  .steps-grid::before { display: none; }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .navbar__links { display: none; }

  .hero { padding: 56px 0 72px; }
  .hero__title { font-size: 36px; }

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

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

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

  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .inner-page h1 { font-size: 28px; }
}
