/* UebiFast - HTML estático - Design system */
:root {
  --background: #F8FAFC;
  --foreground: #1e293b;
  --card: #ffffff;
  --primary: #2563EB;
  --primary-foreground: #fff;
  --secondary: #dbeafe;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --accent: #F97316;
  --accent-foreground: #fff;
  --cta-hero: #FF6B00;
  --wa-green: #25D366;
  --border: #e2e8f0;
  --success: #22c55e;
  --success-foreground: #fff;
  --radius: 0.75rem;
  --touch-min: 48px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: auto;
  padding: 0.25rem 0;
  gap: 1rem;
}
@media (min-width: 768px) { .site-header .inner { min-height: auto; padding: 0.25rem 0; } }
@media (min-width: 1024px) { .site-header .inner { min-height: auto; padding: 0.25rem 0; } }
.logo { display: flex; align-items: center; gap: 0.25rem; text-decoration: none; flex-shrink: 0; }

/* Nav: desktop visível, mobile hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 5;
}
.nav-toggle__bar { width: 100%; height: 2px; background: var(--foreground); border-radius: 1px; transition: transform 0.3s ease, opacity 0.3s ease; }
.site-header .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.site-header .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 768px) { .nav-toggle { display: none; } }

.site-nav { flex-basis: 100%; order: 3; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: var(--muted); margin: 0 -1rem; padding: 0 1rem; border-radius: 0 0 var(--radius) var(--radius); }
.site-header .site-nav.is-open { max-height: 22rem; }
.site-nav__list { list-style: none; margin: 0; padding: 0.5rem 0 1rem; display: flex; flex-direction: column; gap: 0; }
.site-nav__list li { margin: 0; }
.site-nav__list a { display: block; padding: 0.75rem 0.5rem; color: var(--foreground); text-decoration: none; font-weight: 500; border-radius: var(--radius); }
.site-nav__list a:hover { background: var(--background); color: var(--primary); }
@media (min-width: 768px) {
  .site-nav { flex-basis: auto; order: 0; max-height: none; overflow: visible; background: transparent; margin: 0; padding: 0; border-radius: 0; }
  .site-header .site-nav.is-open { max-height: none; }
  .site-nav__list { flex-direction: row; padding: 0; justify-content: center; flex-wrap: wrap; gap: 0.25rem; }
  .site-nav__list a { padding: 0.5rem 0.65rem; font-size: 0.9375rem; }
}
.header-wa { flex-shrink: 0; }
.logo-img { height: 7rem; width: auto; max-width: none; object-fit: contain; display: block; }
@media (min-width: 768px) { .logo-img { height: 8rem; } }
@media (min-width: 1024px) { .logo-img { height: 9rem; } }
.logo-img-footer { height: 6rem; }
@media (min-width: 768px) { .logo-img-footer { height: 7rem; } }
@media (min-width: 1024px) { .logo-img-footer { height: 8rem; } }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: var(--radius); font-weight: 600; text-decoration: none; border: none; cursor: pointer; font-size: 0.875rem; min-height: var(--touch-min); }
.btn-accent { background: var(--accent); color: var(--accent-foreground); }
.btn-accent:hover { background: #ea580c; }
.btn-outline { background: transparent; color: var(--foreground); border: 1px solid var(--border); }
.btn-outline:hover { background: var(--muted); }
.btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; min-height: var(--touch-min); }
.btn-xl { padding: 1rem 2.5rem; font-size: 1.125rem; font-weight: 700; min-height: var(--touch-min); }
.btn-sm { min-height: var(--touch-min); }
.btn-sm .wa-text { display: none; }
@media (min-width: 640px) { .btn-sm .wa-text { display: inline; } }
@media (min-width: 640px) { .btn-sm .wa-short { display: none; } }
.template-links { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1rem; }
.template-links .btn { min-height: var(--touch-min); }

/* Seção Modelos de layout — mini modelos clicáveis */
.templates-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, rgba(219, 234, 254, 0.2) 0%, var(--background) 100%);
  border-top: 1px solid var(--border);
}
.templates-section .section-title { margin-bottom: 2.5rem; }
.templates-section .section-title p { max-width: 28rem; margin-left: auto; margin-right: auto; }
.templates-section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.templates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .templates-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}
.template-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: 1.25rem;
  overflow: hidden;
  text-decoration: none;
  color: var(--foreground);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.12);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.template-card:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 40px -12px rgba(37,99,235,0.25);
  transform: translateY(-6px);
  color: var(--foreground);
}
/* Moldura tipo browser */
.template-card__browser {
  position: relative;
  background: #e5e7eb;
  border-radius: 10px 10px 0 0;
  margin: 1rem 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
}
.template-card__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
}
.template-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
}
.template-card__dot:nth-child(1) { background: #ef4444; }
.template-card__dot:nth-child(2) { background: #f59e0b; }
.template-card__dot:nth-child(3) { background: #22c55e; }
/* Viewport do mini modelo */
.template-card__viewport {
  min-height: 200px;
  background: #f8fafc;
}
.template-card__viewport--topo {
  display: flex;
  flex-direction: column;
}
.template-card__mini-header {
  height: 28px;
  background: var(--primary);
  opacity: 0.9;
}
.template-card__mini-hero {
  height: 56px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  opacity: 0.95;
}
.template-card__mini-hero--flat {
  height: 48px;
  background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 100%);
}
.template-card__mini-row {
  height: 32px;
  margin: 6px 8px 0;
  background: rgba(226, 232, 240, 0.8);
  border-radius: 4px;
}
.template-card__mini-row--short { width: 70%; align-self: flex-start; }
.template-card__viewport--lateral {
  display: flex;
  flex-direction: row;
  min-height: 200px;
}
.template-card__mini-sidebar {
  width: 36px;
  min-width: 36px;
  background: #1e293b;
}
.template-card__mini-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 6px 8px;
}
.template-card__viewport--lateral .template-card__mini-hero--flat { margin-bottom: 4px; }
.template-card__viewport--lateral .template-card__mini-row { margin-top: 4px; }
/* Overlay "Clique para abrir" — cobre o mini modelo no hover */
.template-card__overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  height: 284px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.9);
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  border-radius: 10px 10px 0 0;
}
.template-card__overlay-text {
  font-size: 0.9375rem;
  font-weight: 600;
}
.template-card:hover .template-card__overlay { opacity: 1; }
/* Corpo do card (título + CTA) */
.template-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.template-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--foreground);
}
.template-card__cta {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: color 0.2s ease;
}
.template-card:hover .template-card__cta { color: var(--primary); text-decoration: underline; }

/* Hero – imagem estática (sem carrossel, melhor conversão mobile) */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg picture { display: block; width: 100%; height: 100%; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.hero .content { position: relative; z-index: 10; text-align: center; max-width: 52rem; margin: 0 auto; }
.hero h1 { font-size: 1.75rem; line-height: 1.25; font-weight: 700; color: #fff; margin: 0; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
@media (min-width: 768px) { .hero h1 { font-size: 2.5rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.25rem; } }
.hero-subheadline { font-size: 1rem; line-height: 1.4; color: rgba(255,255,255,0.95); margin: 1rem 0 0; font-weight: 500; text-shadow: 0 1px 2px rgba(0,0,0,0.2); }
@media (min-width: 768px) { .hero-subheadline { font-size: 1.25rem; margin-top: 1.25rem; } }
.hero-bullets { list-style: none; margin: 1.25rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; justify-content: center; color: rgba(255,255,255,0.95); font-size: 0.9375rem; }
.hero-bullets li { display: flex; align-items: center; gap: 0.35rem; }
.hero-bullets li::before { content: '✓'; color: var(--success); font-weight: 700; }
@media (min-width: 768px) { .hero-bullets { font-size: 1rem; margin-top: 1.5rem; } }
.hero .cta { margin-top: 2rem; display: flex; flex-wrap: wrap; flex-direction: column; gap: 0.5rem; justify-content: center; align-items: center; }
.hero-microcopy { margin: 0; font-size: 0.8125rem; color: rgba(255,255,255,0.9); }
.hero-cta-secondary { margin-top: 0.25rem; font-size: 0.9375rem; color: rgba(255,255,255,0.95); text-decoration: underline; text-underline-offset: 2px; }
.hero-cta-secondary:hover { color: #fff; }
.hero .cta .btn { min-height: var(--touch-min); font-weight: 700; font-size: 1rem; padding: 0.875rem 1.75rem; border-radius: 0.75rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2); }
@media (min-width: 768px) { .hero .cta .btn { font-size: 1.125rem; padding: 1rem 2rem; } }
.btn-hero-cta { background: var(--cta-hero); color: #fff; }
.btn-hero-cta:hover { background: #e55f00; transform: scale(1.03); box-shadow: 0 12px 20px -5px rgba(255,107,0,0.4); }
.btn-hero-wa { background: var(--wa-green); color: #fff; }
.btn-hero-wa:hover { background: #20bd5a; transform: scale(1.03); box-shadow: 0 12px 20px -5px rgba(37,211,102,0.4); }
.hero-legal { margin-top: 1rem; font-size: 0.8125rem; color: rgba(255,255,255,0.85); max-width: 28rem; margin-left: auto; margin-right: auto; width: 100%; }
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}
.scroll-indicator::after { content: ''; width: 0.375rem; height: 0.75rem; background: rgba(255,255,255,0.7); border-radius: 9999px; }

/* O Que Você Recebe – prova social logo abaixo do hero */
.benefits-section { background: var(--card); padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.benefits-section__title { text-align: center; font-size: 1.5rem; font-weight: 700; margin: 0 0 1.5rem; color: var(--foreground); }
@media (min-width: 768px) { .benefits-section__title { font-size: 1.75rem; margin-bottom: 2rem; } }
.benefits-list { list-style: none; margin: 0; padding: 0; max-width: 36rem; margin: 0 auto; display: grid; gap: 1rem; }
@media (min-width: 640px) { .benefits-list { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
.benefits-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 1rem; font-weight: 500; color: var(--foreground); }
.benefits-list__check { width: 1.5rem; height: 1.5rem; min-width: 1.5rem; border-radius: 9999px; background: var(--success); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefits-list__check svg { display: block; }
@media (min-width: 900px) { .benefits-list { max-width: 40rem; } }
.basico-bem-feito { margin-top: 2rem; padding: 1.25rem 1.5rem; background: var(--muted); border-radius: var(--radius); max-width: 28rem; margin-left: auto; margin-right: auto; }
.basico-bem-feito__title { font-size: 1rem; font-weight: 700; margin: 0 0 0.75rem; color: var(--foreground); text-align: center; }
.basico-bem-feito-list { list-style: none; margin: 0; padding: 0; }
.basico-bem-feito-list li { padding: 0.35rem 0; font-size: 0.9375rem; color: var(--foreground); display: flex; align-items: flex-start; gap: 0.5rem; }
.basico-bem-feito-list li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }

/* Para quem é */
.para-quem-section { background: var(--muted); padding: 3rem 0; }
.para-quem-section__title { text-align: center; font-size: 1.5rem; font-weight: 700; margin: 0 0 0.5rem; color: var(--foreground); }
@media (min-width: 768px) { .para-quem-section__title { font-size: 1.75rem; } }
.para-quem-intro { text-align: center; color: var(--muted-foreground); font-size: 1rem; margin: 0 0 1.5rem; max-width: 32rem; margin-left: auto; margin-right: auto; }
.para-quem-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.chip { display: inline-block; padding: 0.5rem 1rem; background: var(--card); border: 1px solid var(--border); border-radius: 9999px; font-size: 0.875rem; font-weight: 500; color: var(--foreground); box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.chip:hover { border-color: var(--primary); color: var(--primary); }
.para-quem-cta-wrap { text-align: center; margin-top: 1.5rem; }
.para-quem-cta { display: inline-flex; }

/* Sections common */
section { padding: 4rem 0; }
@media (min-width: 768px) { section { padding: 5rem 0; } }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: 1.875rem; font-weight: 700; margin: 0; }
@media (min-width: 768px) { .section-title h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title h2 { font-size: 3rem; } }
.section-title h2 .primary { color: var(--primary); }
.section-title p { margin-top: 1rem; color: var(--muted-foreground); font-size: 1.125rem; }
.portal-valor-frase { margin-top: 0.5rem; font-size: 1rem; font-weight: 600; color: var(--foreground); max-width: 32rem; margin-left: auto; margin-right: auto; }

/* Steps */
#como-funciona { background: var(--background); }
.steps { max-width: 56rem; margin: 0 auto; }
.step { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .step { flex-direction: row; align-items: flex-start; gap: 2rem; } }
.step-num { width: 4rem; height: 4rem; border-radius: 9999px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; flex-shrink: 0; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
@media (min-width: 768px) { .step-num { width: 5rem; height: 5rem; font-size: 1.875rem; } }
.step-card { flex: 1; background: var(--card); border-radius: 1rem; padding: 1.5rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); border: 1px solid rgba(226,232,240,0.5); }
@media (min-width: 768px) { .step-card { padding: 2rem; margin-bottom: 2rem; } }
.step-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border-color: rgba(37,99,235,0.3); }
.step-card .icon-wrap { width: 3rem; height: 3rem; border-radius: 0.75rem; background: rgba(37,99,235,0.1); display: inline-flex; align-items: center; justify-content: center; margin-right: 1rem; vertical-align: middle; }
.step-card h3 { font-size: 1.25rem; margin: 0 0 0.75rem 0; display: inline-block; }
@media (min-width: 768px) { .step-card h3 { font-size: 1.5rem; } }
.step-card p { color: var(--muted-foreground); line-height: 1.6; margin: 0; font-size: 1rem; }
@media (min-width: 768px) { .step-card p { font-size: 1.125rem; } }

/* Structure */
.structure-section { background: rgba(219, 234, 254, 0.3); }
.structure-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .structure-grid { grid-template-columns: repeat(5, 1fr); gap: 1.5rem; } }
.structure-card { background: var(--card); border-radius: 1rem; padding: 1.25rem; text-align: center; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); border: 1px solid rgba(226,232,240,0.5); }
.structure-card:hover { border-color: rgba(37,99,235,0.3); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.structure-card .icon-wrap { width: 3.5rem; height: 3.5rem; margin: 0 auto 1rem; border-radius: 0.75rem; background: rgba(37,99,235,0.1); display: flex; align-items: center; justify-content: center; }
.structure-card h3 { font-size: 0.875rem; margin: 0 0 0.5rem 0; }
@media (min-width: 768px) { .structure-card h3 { font-size: 1rem; } }
.structure-card p { font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.5; margin: 0; }
@media (min-width: 768px) { .structure-card p { font-size: 0.875rem; } }
.structure-grid.portal-cards { max-width: 56rem; }
@media (min-width: 768px) { .structure-grid.portal-cards { grid-template-columns: repeat(3, 1fr); } }
.structure-addon { max-width: 36rem; margin: 2rem auto 0; padding: 1.25rem 1.5rem; background: var(--card); border-radius: 1rem; border: 1px solid rgba(37,99,235,0.2); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.06); text-align: center; }
.structure-addon__title { font-size: 1rem; font-weight: 700; margin: 0 0 0.5rem 0; color: var(--foreground); }
.structure-addon__text { font-size: 0.9375rem; color: var(--muted-foreground); line-height: 1.5; margin: 0; }
.structure-addon__text strong { color: var(--primary); font-size: 1.0625rem; }

/* Pricing */
#pricing { background: var(--primary); position: relative; overflow: hidden; }
#pricing .section-title h2 { color: #fff; }
.pricing-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--accent); color: #fff; padding: 0.75rem 1.5rem; border-radius: 9999px; font-weight: 700; font-size: 1.125rem; margin-bottom: 1.5rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
@media (min-width: 768px) { .pricing-badge { font-size: 1.25rem; } }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 56rem; margin: 0 auto; align-items: stretch; }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.pricing-card { background: var(--card); border-radius: 1.5rem; padding: 2rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); border: 2px solid var(--accent); display: flex; flex-direction: column; position: relative; }
@media (min-width: 768px) { .pricing-card { padding: 2.5rem; } }
.pricing-card--full { border-width: 3px; border-color: var(--accent); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.3), 0 0 0 1px rgba(251,146,60,0.2); padding-top: 2.5rem; }
@media (min-width: 768px) { .pricing-card--full { padding-top: 2.75rem; } }
@media (min-width: 900px) { .pricing-card--full { transform: scale(1.02); z-index: 1; } }
.pricing-card--solo { border-color: rgba(226,232,240,0.8); }
.pricing-card--solo .check { background: var(--primary); }
.pricing-card__badge { position: absolute; top: 0; right: 1.5rem; background: var(--accent); color: #fff; font-size: 0.6875rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.35rem 0.75rem; border-radius: 0 0 0.5rem 0.5rem; box-shadow: 0 2px 8px rgba(251,146,60,0.4); }
.pricing-card__label { margin: 0 0 0.5rem 0; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); }
.pricing-card--full .pricing-card__label { color: var(--primary); }
.pricing-list-title { font-weight: 700; margin-bottom: 1rem; }
.pricing-solo-sub { font-size: 0.9375rem; color: var(--muted-foreground); text-align: center; margin: 0 0 1rem 0; }
.pricing-main--solo { font-size: 2.75rem; }
@media (min-width: 768px) { .pricing-main--solo { font-size: 3.25rem; } }
.pricing-cta__btn-solo { width: 100%; justify-content: center; font-weight: 700; }
/* Bloco de preço – hierarquia e conversão */
.pricing-block { text-align: center; padding: 0.5rem 0 1.5rem; }
.pricing-old { margin: 0; font-size: 0.9375rem; color: var(--muted-foreground); letter-spacing: 0.02em; }
.pricing-old s { font-size: 1.0625rem; opacity: 0.9; }
.pricing-main { margin: 0.5rem 0 0.75rem; font-size: 3.25rem; font-weight: 800; line-height: 1.05; color: var(--foreground); letter-spacing: -0.02em; }
.pricing-main .pricing-install { font-size: 0.45em; font-weight: 600; color: var(--muted-foreground); margin-right: 0.15em; vertical-align: middle; }
.pricing-main sup { font-size: 0.45em; font-weight: 700; opacity: 0.9; top: -0.4em; }
@media (min-width: 768px) {
  .pricing-block { padding: 0.75rem 0 2rem; }
  .pricing-main { font-size: 4.25rem; margin: 0.75rem 0 1rem; }
  .pricing-main .pricing-install { font-size: 0.42em; }
  .pricing-main sup { font-size: 0.42em; }
}
.pricing-cash { margin: 0; font-size: 1rem; color: var(--muted-foreground); }
.pricing-cash strong { color: var(--primary); font-size: 1.25rem; font-weight: 700; }
.pricing-divider { margin: 2rem 0; border-top: 1px solid var(--border); }
.pricing-card ul { list-style: none; padding: 0; margin: 0; }
.pricing-card ul li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; }
.pricing-card ul li .check { width: 1.5rem; height: 1.5rem; min-width: 1.5rem; border-radius: 9999px; background: var(--success); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.125rem; }
.pricing-card ul li .check svg { display: block; }
.pricing-note { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(226,232,240,0.5); font-size: 0.875rem; color: var(--muted-foreground); }
.pricing-addon { margin-top: 0.75rem; font-size: 0.875rem; color: var(--foreground); }
.pricing-addon-link { color: var(--primary); font-weight: 600; text-decoration: underline; }
.pricing-addon-link:hover { color: #1d4ed8; }
.pricing-cta { margin-top: auto; padding-top: 2rem; }
.pricing-cta .btn { width: 100%; justify-content: center; min-height: var(--touch-min); background: var(--accent); color: #fff; font-weight: 700; font-size: 1.25rem; padding: 1.5rem 2rem; border-radius: 1rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.pricing-cta .btn:hover { transform: scale(1.02); }
.pricing-card--full .pricing-cta .btn { font-size: 1.125rem; padding: 1.25rem 1.75rem; }
@media (min-width: 768px) { .pricing-card--full .pricing-cta .btn { font-size: 1.25rem; padding: 1.5rem 2rem; } }
.pricing-secure { margin-top: 1rem; text-align: center; font-size: 0.875rem; color: var(--muted-foreground); }
.pricing-legal { margin-top: 0.75rem; text-align: center; font-size: 0.8125rem; color: var(--muted-foreground); }
.pricing-legal a { color: var(--primary); text-decoration: underline; }
.pricing-depois-12 { margin-top: 1.5rem; padding: 1rem 1.25rem; background: rgba(255,255,255,0.12); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.2); }
.pricing-depois-12__title { font-weight: 700; font-size: 0.9375rem; color: #fff; margin: 0 0 0.35rem 0; }
.pricing-depois-12 p:last-child { margin: 0; font-size: 0.875rem; color: rgba(255,255,255,0.9); line-height: 1.45; }
.pricing-legal a:hover { color: #1d4ed8; }

/* Serviços adicionais (add-ons) */
.addons-section { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.2); }
.addons-section__title { font-size: 1.25rem; font-weight: 700; color: #fff; margin: 0 0 0.25rem 0; text-align: center; }
.addons-section__sub { font-size: 0.9375rem; color: rgba(255,255,255,0.85); text-align: center; margin: 0 0 1.5rem 0; }
.addons-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 640px) { .addons-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 960px) { .addons-grid { grid-template-columns: repeat(3, 1fr); } }
.addon-card { background: var(--card); border-radius: 1rem; padding: 1.5rem; border: 1px solid rgba(226,232,240,0.6); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); text-align: center; }
.addon-card__icon { width: 3.25rem; height: 3.25rem; margin: 0 auto 1rem; border-radius: 0.75rem; background: rgba(37,99,235,0.08); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.addon-card__icon svg { display: block; }
.addon-card__title { font-size: 1rem; font-weight: 700; margin: 0 0 0.5rem 0; color: var(--foreground); }
.addon-card__price { font-size: 1.375rem; font-weight: 800; color: var(--primary); margin: 0 0 0.75rem 0; }
.addon-card__desc { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.5; margin: 0; }
.addons-section__legal { margin-top: 1.25rem; text-align: center; font-size: 0.8125rem; color: rgba(255,255,255,0.8); }
.addons-section__legal a { color: #fff; text-decoration: underline; }
.addons-section__legal a:hover { color: var(--accent); }

/* Sem pegadinha */
.sem-pegadinha-section { background: var(--card); padding: 3rem 0; border-top: 1px solid var(--border); }
.sem-pegadinha__title { text-align: center; font-size: 1.5rem; font-weight: 700; margin: 0 0 1.25rem; color: var(--foreground); }
.sem-pegadinha-list { list-style: none; margin: 0; padding: 0; max-width: 28rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.sem-pegadinha-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 1rem; font-weight: 500; color: var(--foreground); }
.sem-pegadinha-list li::before { content: '✓'; color: var(--success); font-weight: 700; }
@media (min-width: 768px) { .sem-pegadinha-list { flex-direction: row; flex-wrap: wrap; justify-content: center; max-width: 40rem; gap: 1rem; } }

/* Comparativo UebiFast x agência tradicional */
.comparativo-section { background: var(--card); padding: 3rem 0; border-top: 1px solid var(--border); }
.comparativo__title { text-align: center; font-size: 1.35rem; font-weight: 700; margin: 0 0 1.5rem; color: var(--foreground); }
@media (min-width: 768px) { .comparativo__title { font-size: 1.6rem; } }
.comparativo-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 44rem; margin: 0 auto; }
@media (min-width: 640px) { .comparativo-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.comparativo-col { padding: 1.25rem; border-radius: var(--radius); border: 1px solid var(--border); }
.comparativo-col--uebifast { background: rgba(37, 99, 235, 0.06); border-color: rgba(37, 99, 235, 0.3); }
.comparativo-col--agencia { background: var(--muted); }
.comparativo-col__heading { font-size: 1rem; font-weight: 700; margin: 0 0 0.75rem; }
.comparativo-col--uebifast .comparativo-col__heading { color: var(--primary); }
.comparativo-list { list-style: none; margin: 0; padding: 0; }
.comparativo-list li { padding: 0.35rem 0; font-size: 0.9375rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.comparativo-col--uebifast .comparativo-list li::before { content: '✓'; color: var(--success); font-weight: 700; }
.comparativo-col--agencia .comparativo-list li::before { content: '·'; color: var(--muted-foreground); font-weight: 700; }
.comparativo-note { text-align: center; font-size: 0.9375rem; color: var(--muted-foreground); margin: 1.25rem 0 0; }

.pricing-microcopy { margin: 0 0 0.5rem 0; font-size: 0.875rem; color: var(--muted-foreground); text-align: center; }
.briefing-checklist-mini { margin: 1rem 0 0; padding: 1rem 1.25rem; background: var(--muted); border-radius: var(--radius); border: 1px solid var(--border); }
.briefing-checklist-mini__title { font-size: 0.875rem; font-weight: 700; color: var(--foreground); margin: 0 0 0.5rem 0; }
.briefing-checklist-mini ul { margin: 0; padding: 0 0 0 1.25rem; font-size: 0.8125rem; color: var(--muted-foreground); line-height: 1.5; }

/* FAQ */
#faq { background: var(--background); }
.faq-list { max-width: 42rem; margin: 0 auto; }
.faq-item { background: var(--card); border-radius: 0.75rem; border: 1px solid var(--border); margin-bottom: 1rem; box-shadow: 0 1px 3px rgba(0,0,0,0.05); overflow: hidden; }
.faq-item summary { padding: 1.25rem 1.5rem; font-size: 1.125rem; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--primary); }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--primary); }
.faq-item .answer { padding: 0 1.5rem 1.25rem; color: var(--muted-foreground); line-height: 1.6; }

/* Footer */
.site-footer { background: var(--foreground); padding: 0.75rem 0; }
.site-footer .inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.5rem; }
@media (min-width: 768px) { .site-footer .inner { flex-direction: row; gap: 1rem; padding: 0; } }
.site-footer .links { display: flex; align-items: center; gap: 1.5rem; font-size: 0.875rem; }
.site-footer .links a { color: rgba(255,255,255,0.8); text-decoration: none; }
.site-footer .links a:hover { color: var(--accent); }
.site-footer .links .footer-link-btn { background: none; border: none; padding: 0; font: inherit; color: rgba(255,255,255,0.8); cursor: pointer; text-decoration: none; }
.site-footer .links .footer-link-btn:hover { color: var(--accent); }
.site-footer .copy { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* WhatsApp flutuante – com anel de “ping” */
.wa-float {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--touch-min);
  min-width: var(--touch-min);
  padding: 0.75rem 1rem;
  background: var(--wa-green);
  color: #fff;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  overflow: visible;
}
.wa-float-ping {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: rgba(37, 211, 102, 0.5);
  animation: wa-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: -1;
}
@keyframes wa-ping {
  0% { transform: scale(1); opacity: 0.75; }
  75%, 100% { transform: scale(1.6); opacity: 0; }
}
.wa-float:hover { background: #20bd5a; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2); transform: scale(1.05); }
.wa-float .wa-label { display: none; }
@media (min-width: 768px) { .wa-float { bottom: 1.5rem; right: 1.5rem; padding: 1rem 1.25rem; } .wa-float .wa-label { display: inline; } }

/* Botão voltar ao topo */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: #fff;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.back-to-top.visible { display: flex; opacity: 1; }
.back-to-top:hover { background: #1d4ed8; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2); transform: scale(1.05); }
.back-to-top .back-to-top-label { display: none; }
@media (min-width: 768px) { .back-to-top { width: auto; padding: 0.75rem 1.25rem; } .back-to-top .back-to-top-label { display: inline; } }

/* Terms page */
.terms-page { min-height: 100vh; background: #F8FAFC; }
.terms-header { background: #fff; border-bottom: 1px solid var(--border); padding: 0.25rem 0; position: sticky; top: 0; z-index: 10; }
.terms-page .terms-header .logo-img { height: 4.5rem; }
@media (min-width: 768px) { .terms-page .terms-header .logo-img { height: 5rem; } }
@media (min-width: 1024px) { .terms-page .terms-header .logo-img { height: 5.5rem; } }
.terms-main { padding: 1rem 0; }
.terms-box { max-width: 56rem; margin: 0 auto; background: #fff; border-radius: 0.75rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); padding: 1.5rem; }
@media (min-width: 768px) { .terms-box { padding: 2rem; } }
@media (min-width: 1024px) { .terms-box { padding: 2.5rem; } }
.terms-box h1 { font-size: 1.5rem; text-align: center; margin: 0 0 0.75rem 0; }
@media (min-width: 768px) { .terms-box h1 { font-size: 1.875rem; margin-bottom: 1rem; } }
@media (min-width: 1024px) { .terms-box h1 { font-size: 2.25rem; } }
.terms-box section { margin-bottom: 0.4rem; padding: 0; }
.terms-box section:last-of-type { margin-bottom: 0; }
.terms-box section + section { margin-top: 0; }
.terms-box__intro { margin-bottom: 0.5rem; color: rgba(30,41,59,0.85); }
.terms-box h2 { font-size: 1.125rem; margin: 0 0 0.3rem 0; }
@media (min-width: 768px) { .terms-box h2 { font-size: 1.25rem; margin-bottom: 0.3rem; } }
.terms-box p { color: rgba(30,41,59,0.9); line-height: 1.5; margin: 0 0 0.3rem 0; }
.terms-box p:last-child { margin-bottom: 0; }
.terms-box section p:last-of-type { margin-bottom: 0; }
.terms-box ul { margin: 0.15rem 0 0.35rem 1.25rem; padding: 0; list-style: disc; }
.terms-box li { color: rgba(30,41,59,0.9); line-height: 1.5; margin-bottom: 0.15rem; }
.terms-box li:last-child { margin-bottom: 0; }
.terms-back-cta { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); text-align: center; }

/* Página Obrigado (redirect pós-Stripe) */
.obrigado-page .obrigado-box { text-align: center; }
.obrigado-icon { width: 4rem; height: 4rem; margin: 0 auto 1rem; background: var(--success); color: #fff; font-size: 2rem; font-weight: 700; border-radius: 9999px; display: flex; align-items: center; justify-content: center; }
.obrigado-lead { font-size: 1.125rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }
.obrigado-section { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); text-align: center; }
.obrigado-section h2 { text-align: center; margin-bottom: 1rem; }
.obrigado-section p { text-align: center; }
.obrigado-cta { display: inline-flex; margin-top: 1rem; }
.obrigado-note { margin-top: 1rem; font-size: 0.9375rem; }
.obrigado-back { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); text-align: center; }
.terms-footer { background: #fff; border-top: 1px solid var(--border); padding: 1rem; text-align: center; font-size: 0.875rem; color: var(--muted-foreground); }

/* Animações – pulse (piscar) nos botões de compra e na parte de preço */
@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
@keyframes pulse-glow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
}
.animate-pulse-soft {
  animation: pulse-soft 1.8s ease-in-out infinite;
}
.pricing-badge.animate-pulse-soft {
  animation: pulse-soft 1.8s ease-in-out infinite;
}
.pricing-cta .btn.animate-pulse-soft,
.hero .cta .btn.animate-pulse-soft {
  animation: pulse-soft 1.8s ease-in-out infinite, pulse-glow 2s ease-in-out infinite;
}

/* 404 */
.page-404 { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--muted); }
.page-404 .box { text-align: center; }
.page-404 h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.page-404 p { font-size: 1.25rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.page-404 a { color: var(--primary); text-decoration: underline; }
.page-404 a:hover { color: #1d4ed8; }

/* Main padding for fixed header */
main { padding-top: 7.5rem; }
@media (min-width: 768px) { main { padding-top: 8.5rem; } }
@media (min-width: 1024px) { main { padding-top: 9.5rem; } }

/* Scroll alvo: compensar header fixo para links âncora do menu */
#pricing, #como-funciona, #estrutura, #o-que-recebe, #depoimentos, #faq { scroll-margin-top: 7.5rem; }
@media (min-width: 768px) { #pricing, #como-funciona, #estrutura, #o-que-recebe, #depoimentos, #faq { scroll-margin-top: 8.5rem; } }
@media (min-width: 1024px) { #pricing, #como-funciona, #estrutura, #o-que-recebe, #depoimentos, #faq { scroll-margin-top: 9.5rem; } }

/* Social proof bar */
.social-proof-bar { background: var(--primary); color: #fff; padding: 1.5rem 0; }
.social-proof-bar__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; text-align: center; }
.social-proof-bar__item { flex: 1; min-width: 140px; }
.social-proof-bar__num { display: block; font-size: 2rem; font-weight: 800; line-height: 1.2; }
@media (min-width: 768px) { .social-proof-bar__num { font-size: 2.5rem; } }
.social-proof-bar__label { font-size: 0.8125rem; opacity: 0.95; }
@media (min-width: 768px) { .social-proof-bar__label { font-size: 0.875rem; } }

/* Urgência no preço */

/* CTA final (leads) */
/* Prova de processo + selos */
.prova-section { background: var(--muted); padding: 3rem 0; }
.prova-section .section-title { margin-bottom: 1rem; }
.prova-section .section-title h2 { font-size: 1.5rem; }
.prova-list { list-style: none; margin: 0 0 1.5rem 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: center; }
.prova-list li { font-size: 1rem; font-weight: 500; color: var(--foreground); }
.prova-list li::before { content: '✓ '; color: var(--success); font-weight: 700; }
.selos { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.selo { padding: 0.35rem 0.75rem; background: var(--card); border: 1px solid var(--border); border-radius: 9999px; font-size: 0.8125rem; font-weight: 600; color: var(--muted-foreground); }
.selo:hover { border-color: var(--primary); color: var(--primary); }

.cta-final { padding: 3rem 0; background: var(--background); }
.cta-final__box { max-width: 36rem; margin: 0 auto; text-align: center; padding: 2rem; background: var(--card); border-radius: 1rem; border: 2px solid var(--primary); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08); }
.cta-final__title { font-size: 1.5rem; margin: 0 0 0.5rem 0; color: var(--foreground); }
.cta-final__text { color: var(--muted-foreground); margin: 0 0 1.5rem 0; }
.cta-final__btn { display: inline-flex; }

/* Cookie consent banner (LGPD) */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--card);
  border-top: 2px solid var(--primary);
  box-shadow: 0 -10px 25px -5px rgba(0,0,0,0.15);
  padding: 1rem 1rem 1.25rem;
  display: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#cookie-banner.cookie-banner--hidden {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-banner__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.cookie-banner__close {
  position: absolute;
  top: -0.25rem;
  right: 0;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--muted-foreground);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-banner__close:hover { color: var(--foreground); background: var(--muted); }
@media (min-width: 768px) { .cookie-banner__inner { padding: 0 2rem; } }
.cookie-banner__title { font-size: 1rem; font-weight: 700; margin: 0 0 0.5rem 0; color: var(--foreground); }
.cookie-banner__text { font-size: 0.875rem; color: var(--muted-foreground); margin: 0 0 1rem 0; line-height: 1.5; }
.cookie-banner__text a { color: var(--primary); text-decoration: underline; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.cookie-banner__btn { padding: 0.5rem 1rem; border-radius: var(--radius); font-weight: 600; font-size: 0.875rem; cursor: pointer; border: none; }
.cookie-banner__btn--accept { background: var(--primary); color: #fff; }
.cookie-banner__btn--accept:hover { background: #1d4ed8; }
.cookie-banner__btn--reject { background: transparent; color: var(--muted-foreground); border: 1px solid var(--border); }
.cookie-banner__btn--reject:hover { background: var(--muted); color: var(--foreground); }
.cookie-banner__link { font-size: 0.875rem; color: var(--primary); text-decoration: underline; margin-left: 0.25rem; }
.cookie-banner__link:hover { color: #1d4ed8; }

/* Newsletter modal (popup na página – não bloqueado) */
.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}
.newsletter-modal--open {
  visibility: visible;
  opacity: 1;
}
.newsletter-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  cursor: pointer;
}
.newsletter-modal__box {
  position: relative;
  width: 100%;
  max-width: 28rem;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--card);
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  padding: 1.5rem 1.5rem 1.75rem;
  border: 2px solid var(--primary);
}
.newsletter-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  padding: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--muted-foreground);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
}
.newsletter-modal__close:hover { color: var(--foreground); background: var(--muted); }
.newsletter-modal__title { font-size: 1.375rem; margin: 0 0 0.5rem 0; color: var(--foreground); }
.newsletter-modal__text { font-size: 0.9375rem; color: var(--muted-foreground); margin: 0 0 1.25rem 0; line-height: 1.5; }
.newsletter-modal__form { display: flex; flex-direction: column; gap: 0.75rem; }
.newsletter-modal__label { font-size: 0.875rem; font-weight: 600; color: var(--foreground); }
.newsletter-modal__input {
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
}
.newsletter-modal__input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 2px rgba(37,99,235,0.2); }
.newsletter-modal__check { font-size: 0.8125rem; color: var(--muted-foreground); line-height: 1.5; display: flex; gap: 0.5rem; align-items: flex-start; cursor: pointer; }
.newsletter-modal__check input { margin-top: 0.2rem; flex-shrink: 0; }
.newsletter-modal__check a { color: var(--primary); text-decoration: underline; }
.newsletter-modal__submit {
  margin-top: 0.25rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
}
.newsletter-modal__submit:hover { background: #ea580c; }
.newsletter-modal__note { font-size: 0.75rem; color: var(--muted-foreground); margin: 1rem 0 0 0; line-height: 1.4; }
.newsletter-modal__success { margin-top: 0; }
.newsletter-modal__success-icon { width: 3rem; height: 3rem; margin: 0 auto 1rem; background: var(--success); color: #fff; font-size: 1.5rem; font-weight: 700; border-radius: 9999px; display: flex; align-items: center; justify-content: center; }
.newsletter-modal__success-code { font-size: 1.0625rem; margin: 0 0 0.75rem 0; padding: 0.75rem; background: var(--muted); border-radius: var(--radius); border: 2px dashed var(--primary); }
.newsletter-modal__success-cta { display: block; text-align: center; margin-top: 1rem; text-decoration: none; color: #fff; }
