/* ─────────────────────────────────────────────────────────
   FÁCIL GLASS — Estilos principais
   ───────────────────────────────────────────────────────── */

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

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--blue-dark, #0F3472);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.1s;
}
.skip-link:focus { top: 0; }

:root {
  --blue:        #1A4E9F;
  --blue-dark:   #0F3472;
  --blue-light:  #2563C0;
  --orange:      #F47A20;
  --orange-dark: #D45F08;
  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --gray-600:    #475569;
  --gray-800:    #1E293B;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  height: 68px;
  background: rgba(10, 30, 72, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 38px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
}

.nav-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}

.nav-logo-text span { color: var(--orange); }

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

.nav-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  font-family: inherit;
  white-space: nowrap;
}

.nav-login-btn:hover {
  color: white;
  border-color: rgba(255,255,255,0.55);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, var(--blue-light) 100%);
  display: flex;
  align-items: center;
  padding: 100px 6vw 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(244,122,32,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,122,32,0.2);
  border: 1px solid rgba(244,122,32,0.4);
  color: #FFBA6F;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero h1 .highlight { color: var(--orange); }

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.hero-payment strong { color: rgba(255,255,255,0.9); font-weight: 600; }

.hero-payment svg { flex-shrink: 0; opacity: 0.8; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.trust-avatars { display: flex; }

.trust-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-left: -10px;
}

.trust-avatar:first-child { margin-left: 0; }

.trust-text { font-size: 13px; color: rgba(255,255,255,0.65); }
.trust-text strong { color: rgba(255,255,255,0.9); font-weight: 600; }

/* Hero mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  width: 320px;
  background: #0d1b36;
  border-radius: 48px;
  border: 6px solid rgba(255,255,255,0.12);
  padding: 14px;
  box-shadow:
    0 60px 120px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  z-index: 2;
}

.phone-notch {
  width: 72px; height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: #000;
  border-radius: 36px;
  overflow: hidden;
}

.app-header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-header-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.app-header-icon img { width: 100%; height: 100%; object-fit: cover; }
.app-header-text { color: white; }
.app-header-text .title { font-size: 13px; font-weight: 700; }
.app-header-text .sub { font-size: 10px; opacity: 0.7; }
.app-body { padding: 12px; }

.app-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.app-stat {
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.app-stat .stat-label { font-size: 9px; color: var(--gray-400); font-weight: 500; }
.app-stat .stat-value { font-size: 16px; font-weight: 800; color: var(--blue-dark); margin-top: 2px; }
.app-stat .stat-tag { font-size: 8px; color: #16A34A; font-weight: 600; margin-top: 2px; }
.app-section-title { font-size: 10px; font-weight: 700; color: var(--gray-600); margin-bottom: 6px; }

.app-orcamento-card {
  background: white;
  border-radius: 10px;
  padding: 10px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.app-orc-left .client-name { font-size: 11px; font-weight: 700; color: var(--gray-800); }
.app-orc-left .client-sub { font-size: 9px; color: var(--gray-400); margin-top: 1px; }
.app-orc-right { text-align: right; }
.app-orc-right .price { font-size: 12px; font-weight: 800; color: var(--blue); }
.app-orc-right .status {
  font-size: 8px; font-weight: 600;
  padding: 2px 6px; border-radius: 20px;
  margin-top: 3px; display: inline-block;
}

.status-ok   { background: #DCFCE7; color: #16A34A; }
.status-pend { background: #FEF3C7; color: #D97706; }

.app-fab {
  margin: 8px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--orange);
  color: white;
  border-radius: 30px;
  padding: 10px 16px;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(244,122,32,0.4);
}

.phone-glow {
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(244,122,32,0.2) 0%, rgba(26,78,159,0.15) 45%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(244,122,32,0.4);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(244,122,32,0.5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-family: inherit;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--white); }

.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  font-weight: 800;
  font-size: 17px;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(26,78,159,0.35);
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(26,78,159,0.45);
}

.btn-trial-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  border: none;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.btn-trial-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

/* ── SECTIONS ── */
.section { padding: 96px 6vw; }

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,78,159,0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1.18;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-title .accent { color: var(--blue); }
.section-title .orange { color: var(--orange); }

.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 560px;
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.feature-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,78,159,0.1);
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon.orange {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
}

.feature-icon svg {
  width: 26px; height: 26px;
  stroke: white; fill: none;
  stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 18px; font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 10px; letter-spacing: -0.3px;
}

.feature-card p { font-size: 15px; color: var(--gray-600); line-height: 1.65; }

/* ── MATERIALS ── */
.materials-section {
  padding: 96px 6vw;
  background: var(--gray-50);
  overflow: hidden;
}

.materials-inner {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.materials-content .section-tag {
  background: rgba(244,122,32,0.1);
  color: var(--orange-dark);
}

.materials-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.materials-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.5;
  list-style: none;
}

/* ── HOW IT WORKS ── */
.how-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 96px 6vw;
}

.how-section .section-tag  { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }
.how-section .section-title { color: white; }
.how-section .section-title .accent { color: var(--orange); }
.how-section .section-sub  { color: rgba(255,255,255,0.7); }

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: rgba(255,255,255,0.15);
  pointer-events: none;
}

.step-card { text-align: center; position: relative; }

.step-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px; font-weight: 900;
  color: var(--orange);
  margin: 0 auto 20px;
  position: relative; z-index: 1;
}

.step-card h3 { font-size: 16px; font-weight: 800; color: white; margin-bottom: 8px; }
.step-card p  { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.82); line-height: 1.6; }

/* ── PRICING ── */
.pricing-section { padding: 96px 6vw; background: var(--gray-50); }

.pricing-card-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
  max-width: 1180px;
  margin: 56px auto 0;
  padding-top: 64px;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(26,78,159,0.12), 0 0 0 1px var(--gray-200);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.pricing-card-featured {
  transform: scale(1.2);
  box-shadow: 0 32px 80px rgba(26,78,159,0.25), 0 0 0 3px var(--blue);
  z-index: 1;
}

.pricing-card-featured .btn-buy {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 8px 24px rgba(244,122,32,0.4);
}

.pricing-ribbons { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }

.pricing-ribbon {
  font-size: 11px; font-weight: 800;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-ribbon-choice { background: var(--blue);   color: white; }
.pricing-ribbon-save   { background: var(--orange); color: white; }

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(244,122,32,0.1);
  color: var(--orange-dark);
  font-size: 12px; font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-name { font-size: 22px; font-weight: 800; color: var(--blue-dark); margin-bottom: 8px; }

.pricing-desc { font-size: 15px; color: var(--gray-600); line-height: 1.6; margin-bottom: 32px; }

.pricing-price { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 8px; }

.price-currency { font-size: 22px; font-weight: 700; color: var(--blue); line-height: 1; padding-bottom: 8px; }
.price-value    { font-size: 72px; font-weight: 900; color: var(--blue-dark); line-height: 1; letter-spacing: -3px; }
.price-cents    { font-size: 24px; font-weight: 700; color: var(--blue); line-height: 1; padding-bottom: 10px; }
.price-period   { font-size: 15px; color: var(--gray-400); margin-bottom: 32px; }

.pricing-divider { height: 1px; background: var(--gray-200); margin-bottom: 28px; }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700, #334155);
  line-height: 1.5;
}

.check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(26,78,159,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon svg {
  width: 12px; height: 12px;
  stroke: var(--blue); fill: none;
  stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
  font-size: 13px;
  color: var(--gray-400);
}

.pricing-guarantee svg {
  width: 16px; height: 16px;
  stroke: var(--gray-400); fill: none;
  stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ── Formas de pagamento (cartão / PIX) ─────────────────────────────── */

.payment-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.payment-methods-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.payment-methods-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
}

.payment-badge svg { flex-shrink: 0; }

.payment-badge-pix {
  border-color: rgba(46,125,50,0.3);
  color: #2E7D32;
  background: rgba(46,125,50,0.06);
}

.pricing-included {
  max-width: 640px;
  margin: 56px auto 0;
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  box-shadow: 0 12px 40px rgba(26,78,159,0.08), 0 0 0 1px var(--gray-200);
  text-align: left;
}

.pricing-included-title {
  font-size: 16px; font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 20px;
  text-align: center;
}

.pricing-features-shared { margin-bottom: 0; }

/* ── TRIAL ── */
.trial-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  border: 2px solid #43a047;
  color: #1b5e20;
  font-size: 16px; font-weight: 700;
  padding: 16px 28px;
  border-radius: 50px;
  margin-top: 28px;
  box-shadow: 0 4px 16px rgba(67,160,71,0.18);
  letter-spacing: -0.01em;
}

.trial-banner svg    { color: #43a047; flex-shrink: 0; }
.trial-banner strong { color: #2e7d32; font-size: 18px; }

.trial-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  border: 1.5px solid #43a047;
  color: #1b5e20;
  font-size: 13px; font-weight: 700;
  padding: 7px 14px;
  border-radius: 50px;
  margin-top: 10px;
  width: 100%;
  box-sizing: border-box;
}

.trial-badge svg { color: #43a047; flex-shrink: 0; }

.pricing-trial-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin: 120px 0 48px;
  width: 100%;
}

.pricing-trial-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 560px;
}

.pricing-trial-divider-line { flex: 1; height: 1.5px; background: var(--gray-200); }
.pricing-trial-divider-text { font-size: 13px; font-weight: 600; color: var(--gray-400); white-space: nowrap; }

.trial-card {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 560px;
  background: linear-gradient(135deg, #fff7f0 0%, #fff3e8 100%);
  border: 2px solid var(--orange);
  border-radius: 16px;
  padding: 20px 24px;
  cursor: pointer; text-align: left;
  box-shadow: 0 4px 20px rgba(244,122,32,0.12);
  transition: transform 0.15s, box-shadow 0.15s;
  margin: 28px auto 0;
}

.trial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(244,122,32,0.22);
}

.trial-card-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.trial-card-body { flex: 1; }
.trial-card-title { font-size: 16px; font-weight: 800; color: var(--orange-dark); margin: 0 0 4px; }
.trial-card-sub   { font-size: 13px; font-weight: 500; color: var(--orange); margin: 0; }
.trial-card-arrow { flex-shrink: 0; color: var(--orange); }

.pricing-trial-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 28px auto 0;
}

.pricing-trial-btn     { font-size: 16px; padding: 16px 36px; border: none; }
.pricing-trial-btn-sub { font-size: 13px; color: var(--gray-500); margin: 0; }

/* ── FAQ ── */
.faq-section { padding: 96px 6vw; }

.faq-grid {
  max-width: 720px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; }

.faq-question {
  width: 100%;
  background: none; border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 16px; font-weight: 600;
  color: var(--gray-800);
  cursor: pointer; text-align: left;
  transition: background 0.15s;
}

.faq-question:hover { background: var(--gray-50); }
.faq-question.open  { background: var(--gray-50); color: var(--blue); }

.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s;
  stroke: currentColor; fill: none;
  stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
}

.faq-question.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  padding: 0 24px;
}

.faq-answer.open { max-height: 200px; padding: 0 24px 20px; }
.faq-answer p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* ── CTA FINAL ── */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 96px 6vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(244,122,32,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900; color: white;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
  line-height: 1.6;
  position: relative;
}

.cta-section .btn-primary { position: relative; font-size: 17px; padding: 18px 40px; }
.cta-section .cta-buttons { display: flex; flex-direction: column; align-items: center; gap: 14px; }

/* ── DOWNLOAD ── */
.download-section {
  padding: 96px 6vw;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
}

.download-section .section-tag   { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }
.download-section .section-title { color: white; }
.download-section .section-title .accent { color: var(--orange); }
.download-section .section-sub   { color: rgba(255,255,255,0.7); }

.store-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  position: relative;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.store-badge:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.store-badge svg   { width: 26px; height: 26px; flex-shrink: 0; }

.store-badge-text { text-align: left; line-height: 1.2; }
.store-badge-text .small { font-size: 11px; opacity: 0.75; }
.store-badge-text .big   { font-size: 16px; font-weight: 700; }

/* ── FOOTER ── */
footer {
  background: #080F20;
  padding: 48px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo img { height: 34px; width: auto; border-radius: 0; object-fit: contain; }
.footer-logo-text { font-size: 18px; font-weight: 800; color: white; }
.footer-logo-text span { color: var(--orange); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: flex-end; }
.footer-link { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; font-weight: 500; transition: color 0.15s; }
.footer-link:hover { color: var(--orange); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .pricing-card-wrap { grid-template-columns: 1fr; max-width: 480px; padding-top: 0; }
  .pricing-card-featured { transform: none; order: -1; }
  .pricing-card { text-align: center; }
  .pricing-price { justify-content: center; }
  .pricing-features li { text-align: left; }
  .pricing-ribbons { justify-content: center; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .materials-inner { grid-template-columns: 1fr; text-align: center; }
  .materials-list { text-align: left; }
  .hero-visual { order: -1; }
  .phone-mockup { width: 260px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .section-sub { max-width: 100%; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card { padding: 36px 28px; }
  nav { padding: 0 5vw; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .price-value { font-size: 58px; }
  .nav-logo-text { display: none; }
  footer { flex-direction: column; text-align: center; }
  .footer-meta { justify-content: center; }
}

/* ── FOCUS VISIBLE — todos os interativos ── */
:focus { outline: none; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav-login-btn:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* ── BTN TRIAL DOWNLOAD (step 3 modal) ── */
.btn-trial-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border: 2px solid #43a047;
  color: #1b5e20;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.15s;
  font-family: inherit;
  width: 100%;
}

.btn-trial-download:hover { transform: translateY(-1px); }
