/* Fontes da identidade (self-hosted — sem Google Fonts: nada de IP vazando
   pra terceiros, coerente com a promessa de privacidade do site). */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url('/assets/fonts/nunito-latin-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/onest-latin-var.woff2') format('woff2');
}

/* ============================================================
   Risplo — risplo.com
   Folha de estilo do site, fiel à identidade visual da marca.
   Cores: azul #1E40AF · escuro #1E293B · céu #7DD3FC · fundo #FAF9F6
   Fontes: Nunito (títulos) · Onest (texto)
   ============================================================ */

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Onest', sans-serif;
  color: #1E293B;
  background: #FAF9F6;
}

a { color: #1E40AF; }
a:hover { color: #172554; }

img { max-width: 100%; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ===== Animações ===== */
@keyframes ripple {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.6); opacity: 0; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.reveal { opacity: 0; }
.reveal.in { animation: fadeUp 0.7s ease forwards; }

/* ===== Botões ===== */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  border-radius: 99px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: #1E40AF;
  color: #FAF9F6;
}
.btn-primary:hover {
  background: #172554;
  color: #FAF9F6;
}

.btn-nav {
  font-size: 14.5px;
  padding: 10px 22px;
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.btn-hero {
  font-size: 17px;
  padding: 16px 34px;
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.28);
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(30, 64, 175, 0.42);
}

.btn-outline {
  text-align: center;
  border: 2px solid #1E40AF;
  color: #1E40AF;
  font-size: 15.5px;
  padding: 13px 20px;
}
.btn-outline:hover {
  background: #EEF4FF;
  color: #1E40AF;
  transform: translateY(-2px);
}

.btn-light {
  text-align: center;
  background: #FAF9F6;
  color: #1E40AF;
  font-size: 15.5px;
  padding: 14px 20px;
}
.btn-light:hover {
  background: #FFFFFF;
  color: #172554;
  transform: translateY(-2px);
}

.btn-cta-final {
  font-weight: 900;
  font-size: 19px;
  padding: 18px 44px;
  background: #FAF9F6;
  color: #1E40AF;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}
.btn-cta-final:hover {
  background: #FFFFFF;
  color: #172554;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

/* ===== Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #ECE8E1;
}

.site-header .container {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-header .logo-link img {
  height: 44px;
  display: block;
  margin-left: -9px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
}

.site-nav > a {
  text-decoration: none;
  color: #46536B;
}
.site-nav > a:hover { color: #1E40AF; }
.site-nav > a.btn:hover { color: #FAF9F6; }

/* ===== Títulos de seção ===== */
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1E40AF;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 38px;
  letter-spacing: -0.01em;
}

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; }

.hero .container {
  padding-top: 96px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EEF4FF;
  color: #1E40AF;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 22px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #16A34A;
  display: inline-block;
}

.hero h1 {
  margin: 0 0 18px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

.hero .hero-sub {
  margin: 0 0 32px;
  font-size: 19px;
  line-height: 1.6;
  color: #46536B;
  max-width: 480px;
  text-wrap: pretty;
}

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

.hero-actions .link-como-funciona {
  text-decoration: none;
  color: #1E40AF;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 10px;
}

.hero-facts {
  display: flex;
  gap: 22px;
  margin-top: 30px;
  font-size: 13.5px;
  color: #55627A;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.ripple-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ripple-rings {
  position: relative;
  width: 200px;
  height: 200px;
}

.ripple-rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #7DD3FC;
  animation: ripple 3.6s ease-out infinite;
}
.ripple-rings span:nth-child(2) { animation-delay: 1.2s; }
.ripple-rings span:nth-child(3) { animation-delay: 2.4s; }

.call-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #ECE8E1;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(30, 41, 59, 0.14);
  padding: 20px;
  width: 360px;
  animation: floatY 6s ease-in-out infinite;
}

.call-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.call-tile {
  height: 110px;
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  padding: 10px;
}
.call-tile--ana   { background: linear-gradient(135deg, #1E40AF, #3B5BD9); }
.call-tile--bruno { background: linear-gradient(135deg, #334155, #1E293B); }
.call-tile--carla { background: linear-gradient(135deg, #7DD3FC, #38BDF8); }
.call-tile--vazio {
  background: #F1EEE8;
  align-items: center;
  justify-content: center;
}

.call-tile .tag {
  font-size: 11px;
  color: #FAF9F6;
  background: rgba(0, 0, 0, 0.28);
  padding: 3px 8px;
  border-radius: 6px;
}
.call-tile--carla .tag {
  color: #1E293B;
  background: rgba(255, 255, 255, 0.55);
}
.call-tile--vazio .tag {
  font-size: 12px;
  color: #7A8299;
  background: none;
  padding: 0;
}

.call-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.call-controls span {
  width: 42px;
  height: 42px;
  border-radius: 99px;
  background: #EEF4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.call-controls .hangup {
  background: #DC2626;
  font-size: 15px;
  color: #fff;
}

/* ===== Seções ===== */
.section { }
.section .container {
  padding-top: 88px;
  padding-bottom: 88px;
}

.section--white {
  background: #FFFFFF;
  border-top: 1px solid #ECE8E1;
  border-bottom: 1px solid #ECE8E1;
}

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

/* ===== 3 passos ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: #FAF9F6;
  border: 1px solid #ECE8E1;
  border-radius: 18px;
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: #7DD3FC;
  box-shadow: 0 14px 36px rgba(30, 64, 175, 0.1);
}

.step-card .step-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: #7DD3FC;
  margin-bottom: 14px;
}

.step-card h3 {
  margin: 0 0 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 20px;
}

.step-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #46536B;
}

/* ===== Recursos ===== */
.features-head {
  max-width: 620px;
  margin-bottom: 52px;
}
.features-head .section-title { margin-bottom: 14px; }
.features-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #46536B;
}

.feature-hero {
  background: linear-gradient(120deg, #1E40AF, #2B54C9);
  color: #FAF9F6;
  border-radius: 18px;
  padding: 36px 34px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(30, 64, 175, 0.32);
}

.feature-hero .badge-destaque {
  display: inline-block;
  background: #7DD3FC;
  color: #1E293B;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.feature-hero h3 {
  margin: 0 0 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #FAF9F6;
}

.feature-hero p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: #C7D2E8;
  max-width: 520px;
}

.feature-hero .stat-wrap {
  display: flex;
  justify-content: center;
}

.feature-hero .stat-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 18px 26px;
  text-align: center;
}

.feature-hero .stat-value {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 54px;
  line-height: 1;
  color: #7DD3FC;
}

.feature-hero .stat-label {
  font-size: 12.5px;
  color: #C7D2E8;
  margin-top: 6px;
}

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

.feature-card {
  background: #FFFFFF;
  border: 1px solid #ECE8E1;
  border-radius: 18px;
  padding: 30px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover {
  border-color: #7DD3FC;
  box-shadow: 0 14px 36px rgba(30, 64, 175, 0.12);
  transform: translateY(-4px);
}

.feature-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #EEF4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 18px;
}

.feature-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: #46536B;
}

/* ===== Casos de uso ===== */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.usecase-card {
  background: #FAF9F6;
  border: 1px solid #ECE8E1;
  border-radius: 16px;
  padding: 26px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.usecase-card:hover {
  transform: translateY(-4px);
  border-color: #7DD3FC;
  box-shadow: 0 14px 36px rgba(30, 64, 175, 0.1);
}

.usecase-card h3 {
  margin: 0 0 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16.5px;
  color: #1E40AF;
}

.usecase-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #46536B;
}

/* ===== Privacidade ===== */
.privacy {
  background: #1E293B;
  color: #FAF9F6;
}

.privacy .container {
  padding-top: 96px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.privacy .eyebrow { color: #7DD3FC; }

.privacy .section-title {
  margin-bottom: 16px;
  color: #FAF9F6;
}

.privacy .privacy-sub {
  margin: 0 0 28px;
  font-size: 16.5px;
  line-height: 1.65;
  color: #B8C2D4;
  text-wrap: pretty;
}

.privacy .privacy-link {
  text-decoration: none;
  color: #7DD3FC;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15.5px;
}
.privacy .privacy-link:hover { color: #BAE6FD; }

.privacy-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.privacy-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 18px 20px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.privacy-item:hover {
  transform: translateX(8px);
  background: rgba(125, 211, 252, 0.1);
  border-color: rgba(125, 211, 252, 0.45);
}

.privacy-item .check {
  color: #7DD3FC;
  font-size: 18px;
  line-height: 1.4;
}

.privacy-item strong { font-size: 15px; }

.privacy-item .desc {
  font-size: 13.5px;
  color: #B8C2D4;
  margin-top: 2px;
}

/* ===== Comparativo ===== */
.compare-scroll { overflow-x: auto; }

.compare-card {
  background: #FFFFFF;
  border: 1px solid #ECE8E1;
  border-radius: 18px;
  overflow: hidden;
  min-width: 720px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  font-size: 14.5px;
}

.compare-grid .head {
  padding: 16px 12px;
  background: #FAF9F6;
  border-bottom: 1px solid #ECE8E1;
  text-align: center;
  font-weight: 600;
  color: #7A8299;
}
.compare-grid .head--empty {
  padding: 16px 22px;
  text-align: left;
}
.compare-grid .head--risplo {
  background: #EEF4FF;
  border-bottom: 2px solid #1E40AF;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: #1E40AF;
}

.compare-grid .row-label {
  padding: 15px 22px;
  border-bottom: 1px solid #F1EEE8;
  color: #46536B;
}

.compare-grid .cell {
  padding: 15px 12px;
  border-bottom: 1px solid #F1EEE8;
  text-align: center;
  color: #7A8299;
}
.compare-grid .cell--risplo {
  background: #F7FAFF;
  font-weight: 600;
  color: #16A34A;
}
.compare-grid .row-label.last,
.compare-grid .cell.last { border-bottom: none; }

.compare-note {
  text-align: center;
  font-size: 12.5px;
  color: #7A8299;
  margin: 16px 0 0;
}

/* ===== Preços ===== */
.pricing-head p {
  margin: 0;
  font-size: 16.5px;
  color: #46536B;
}
.pricing-head .section-title { margin-bottom: 12px; }

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

.price-card {
  background: #FAF9F6;
  border: 1px solid #ECE8E1;
  border-radius: 20px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(30, 64, 175, 0.12);
}

.price-card h3 {
  margin: 0 0 6px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 19px;
}

.price-card .price {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 42px;
  margin: 10px 0 2px;
}

.price-card .price small {
  font-size: 17px;
  font-weight: 700;
  opacity: 0.75;
}

.price-card .price-note {
  font-size: 13.5px;
  color: #7A8299;
  margin-bottom: 24px;
}

.price-card ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
  color: #46536B;
  flex: 1;
}

.price-card ul li {
  display: flex;
  gap: 10px;
}

.price-card ul li .check { color: #1E40AF; }

.price-card--featured {
  position: relative;
  background: #1E40AF;
  color: #FAF9F6;
  border: none;
  box-shadow: 0 20px 48px rgba(30, 64, 175, 0.3);
}
.price-card--featured:hover {
  box-shadow: 0 26px 56px rgba(30, 64, 175, 0.4);
}

.price-card--featured h3 { color: #FAF9F6; }

.price-card--featured .price-note { color: #B8C2D4; }

.price-card--featured ul { color: #DCE4F0; }

.price-card--featured ul li .check { color: #7DD3FC; }

.price-card--featured .ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #7DD3FC;
  color: #1E293B;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 12px;
  padding: 5px 16px;
  border-radius: 99px;
  white-space: nowrap;
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: #7A8299;
  margin: 28px 0 0;
}

/* ===== FAQ ===== */
.faq .container {
  max-width: 760px;
  padding-top: 88px;
  padding-bottom: 88px;
}

.faq .section-head-center { margin-bottom: 44px; }
.faq .section-title { font-size: 34px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid #ECE8E1;
  border-radius: 14px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #1E293B;
  text-align: left;
}

.faq-item .mark {
  color: #1E40AF;
  font-size: 20px;
  flex-shrink: 0;
}

.faq-item .faq-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 15px;
  line-height: 1.65;
  color: #46536B;
}

.faq-item.open .faq-answer { display: block; }

/* ===== CTA final ===== */
.cta-final {
  background: #1E40AF;
  position: relative;
  overflow: hidden;
}

.cta-final .simbolo-bg {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.14;
}

.cta-final .container {
  padding-top: 96px;
  padding-bottom: 96px;
  text-align: center;
  position: relative;
}

.cta-final h2 {
  margin: 0 0 14px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 44px;
  letter-spacing: -0.01em;
  color: #FAF9F6;
}

.cta-final p {
  margin: 0 0 36px;
  font-size: 17px;
  color: #C7D2E8;
}

/* ===== Footer ===== */
.site-footer {
  background: #1E293B;
  color: #B8C2D4;
}

.site-footer .footer-main {
  padding-top: 56px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.site-footer .footer-brand img {
  height: 42px;
  display: block;
  margin-bottom: 14px;
  margin-left: -9px;
}

.site-footer .footer-brand p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 260px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-col strong {
  color: #FAF9F6;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col a {
  color: #B8C2D4;
  text-decoration: none;
}
.footer-col a:hover { color: #7DD3FC; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #7A8299;
}

/* ============================================================
   Páginas "Risplo para" (SEO / personas)
   ============================================================ */

.persona-bar {
  background: #FFFFFF;
  border-bottom: 1px solid #ECE8E1;
}

.persona-bar .container {
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.persona-bar .bar-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7A8299;
  font-weight: 600;
  margin-right: 6px;
}

.persona-tab {
  border: 1px solid #D8D3CA;
  background: transparent;
  color: #46536B;
  text-decoration: none;
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 7px 15px;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.persona-tab:hover {
  border-color: #1E40AF;
  color: #46536B;
  transform: translateY(-1px);
}
.persona-tab.active {
  border-color: #1E40AF;
  background: #1E40AF;
  color: #FAF9F6;
}

.persona-hero {
  background: #1E293B;
  color: #FAF9F6;
  position: relative;
  overflow: hidden;
}

.persona-hero .simbolo-bg {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
}

.persona-hero .container {
  padding-top: 80px;
  padding-bottom: 72px;
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  animation: fadeUp 0.6s ease;
}

.persona-hero .hero-pill {
  display: inline-block;
  background: rgba(125, 211, 252, 0.14);
  border: 1px solid rgba(125, 211, 252, 0.35);
  color: #7DD3FC;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 18px;
}

.persona-hero h1 {
  margin: 0 0 16px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #FAF9F6;
  text-wrap: pretty;
}

.persona-hero .hero-sub {
  margin: 0 0 30px;
  font-size: 17.5px;
  line-height: 1.65;
  color: #B8C2D4;
  max-width: 540px;
  text-wrap: pretty;
}

.persona-hero .btn-hero {
  padding: 15px 34px;
  box-shadow: 0 10px 28px rgba(30, 64, 175, 0.4);
}
.persona-hero .btn-hero:hover {
  box-shadow: 0 16px 36px rgba(30, 64, 175, 0.5);
}

.persona-hero .hero-note {
  font-size: 13.5px;
  color: #7A8299;
}

.persona-mock-wrap {
  display: flex;
  justify-content: center;
}

.persona-mock {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 26px 30px;
  width: 320px;
  animation: floatY 6s ease-in-out infinite;
}

.persona-mock .mock-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7A8299;
  margin-bottom: 16px;
}

.persona-mock .mock-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 13px 16px;
}

.mock-row .avatar {
  width: 34px;
  height: 34px;
  border-radius: 99px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #1E293B;
}

.mock-row .row-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #FAF9F6;
}

.mock-row .row-sub {
  font-size: 12px;
  color: #7A8299;
}

.persona-cards .container {
  padding-top: 72px;
  padding-bottom: 72px;
}

.persona-cards .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.persona-card {
  background: #FFFFFF;
  border: 1px solid #ECE8E1;
  border-radius: 18px;
  padding: 30px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.persona-card:hover {
  transform: translateY(-4px);
  border-color: #7DD3FC;
  box-shadow: 0 14px 36px rgba(30, 64, 175, 0.12);
}

.persona-card .card-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: #7DD3FC;
  margin-bottom: 12px;
}

.persona-card h3 {
  margin: 0 0 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 18px;
}

.persona-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: #46536B;
}

.persona-pains .container {
  padding-top: 72px;
  padding-bottom: 72px;
}

.persona-pains h2 {
  margin: 0 0 40px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.01em;
  text-align: center;
}

.pains-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
}

.pain-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  background: #FAF9F6;
  border: 1px solid #ECE8E1;
  border-radius: 16px;
  padding: 20px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pain-pair:hover {
  transform: translateY(-3px);
  border-color: #7DD3FC;
  box-shadow: 0 12px 30px rgba(30, 64, 175, 0.1);
}

.pain-pair .antes {
  font-size: 13.5px;
  line-height: 1.5;
  color: #98A0B3;
  text-decoration: line-through;
}

.pain-pair .arrow {
  color: #1E40AF;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 18px;
}

.pain-pair .depois {
  font-size: 13.5px;
  line-height: 1.5;
  color: #1E293B;
  font-weight: 600;
}

.start-strip-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.start-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #EEF4FF;
  border-radius: 99px;
  padding: 14px 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.start-strip .strip-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 14.5px;
  color: #1E40AF;
}

.start-strip .strip-step {
  font-size: 14px;
  color: #46536B;
}

.start-strip .strip-arrow {
  color: #7DD3FC;
  font-weight: 800;
}

.persona-cta {
  background: #1E40AF;
  position: relative;
  overflow: hidden;
}

.persona-cta .simbolo-bg {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.14;
}

.persona-cta .container {
  max-width: 900px;
  padding-top: 76px;
  padding-bottom: 76px;
  text-align: center;
  position: relative;
}

.persona-cta h2 {
  margin: 0 0 12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: #FAF9F6;
  letter-spacing: -0.01em;
}

.persona-cta p {
  margin: 0 0 30px;
  font-size: 16px;
  color: #C7D2E8;
}

.persona-cta .btn-cta-final {
  font-size: 18px;
  padding: 16px 42px;
  box-shadow: none;
}
.persona-cta .btn-cta-final:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

/* ============================================================
   Páginas legais (privacidade / termos)
   ============================================================ */

.legal .container {
  max-width: 760px;
  padding-top: 72px;
  padding-bottom: 88px;
}

.legal h1 {
  margin: 0 0 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -0.015em;
}

.legal .updated {
  font-size: 13.5px;
  color: #7A8299;
  margin: 0 0 36px;
}

.legal h2 {
  margin: 36px 0 12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 22px;
}

.legal p, .legal li {
  font-size: 15.5px;
  line-height: 1.7;
  color: #46536B;
}

.legal ul { padding-left: 22px; }

/* ============================================================
   Responsivo
   ============================================================ */

@media (max-width: 960px) {
  .hero .container,
  .privacy .container,
  .persona-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 { font-size: 42px; }
  .persona-hero h1 { font-size: 36px; }
  .section-title { font-size: 32px; }
  .cta-final h2 { font-size: 34px; }

  .steps-grid,
  .features-grid,
  .persona-cards .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-card--featured { order: -1; }

  .feature-hero { grid-template-columns: 1fr; }

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

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

@media (max-width: 640px) {
  .site-nav { gap: 16px; }
  .site-nav > a:not(.btn) { display: none; }

  .hero .container { padding-top: 64px; padding-bottom: 56px; }
  .hero h1 { font-size: 34px; }
  .hero .hero-sub { font-size: 17px; }

  .persona-hero h1 { font-size: 30px; }

  .section .container,
  .faq .container { padding-top: 60px; padding-bottom: 60px; }

  .privacy .container,
  .cta-final .container { padding-top: 64px; padding-bottom: 64px; }

  .steps-grid,
  .features-grid,
  .usecases-grid,
  .persona-cards .cards-grid {
    grid-template-columns: 1fr;
  }

  .section-title { font-size: 28px; }
  .cta-final h2 { font-size: 28px; }
  .persona-cta h2 { font-size: 28px; }

  .call-card { width: 100%; max-width: 360px; }

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

/* Alternador de idioma no nav (PT ⇄ EN) */
.site-nav .lang-switch { opacity: .72; font-weight: 700; letter-spacing: .02em; }
.site-nav .lang-switch:hover { opacity: 1; }
