/* Monetary BPO Financeiro — identidade visual
   Azul-marinho: #152238 | Verde degradê: #0f5c2e -> #4ade80 */

:root {
  --navy: #152238;
  --navy-light: #1e2f4d;
  --green-dark: #0f5c2e;
  --green-light: #4ade80;
  --green-gradient: linear-gradient(90deg, var(--green-dark), var(--green-light));
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --text-muted: #5a6472;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(21, 34, 56, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: var(--navy);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { color: var(--text-muted); }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--green-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

/* Header / Nav */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eef0f3;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand img { height: 58px; width: auto; }

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}

nav a.active,
nav a:hover {
  color: var(--green-dark);
}

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--green-dark); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--navy);
}

/* Hero */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--green-gradient);
  opacity: 0.15;
  filter: blur(10px);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero h1 { color: #fff; margin-bottom: 18px; }
.hero p.lead { color: #c7cedb; font-size: 1.05rem; max-width: 480px; }

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.45);
}

.btn:focus:not(:focus-visible) {
  outline: none;
}

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

.btn-outline {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

.btn-outline:hover { border-color: #fff; }

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

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px;
}

.hero-card ul { list-style: none; }

.hero-card li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #dbe1ea;
  font-size: 0.95rem;
}

.hero-card li:last-child { border-bottom: none; }

.check {
  color: var(--green-light);
  font-weight: 700;
}

/* Sections */
section { padding: 80px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.section-head p { margin-top: 12px; }

.section-soft { background: var(--bg-soft); }

/* Grids / cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid #eef0f3;
  height: 100%;
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.card h3 { margin-bottom: 10px; }

/* Plans */
.plan-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 28px;
  border: 1px solid #eef0f3;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--green-gradient) border-box;
  transform: translateY(-10px);
}

.plan-badge {
  align-self: flex-start;
  background: var(--green-gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.plan-name { font-size: 1.3rem; margin-bottom: 6px; }
.plan-desc { font-size: 0.9rem; margin-bottom: 18px; }

.plan-price {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.plan-price-prefix {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.plan-price span { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }

.plan-list { list-style: none; margin: 22px 0 28px; flex-grow: 1; }

.plan-list li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--navy-light);
  align-items: flex-start;
}

.plan-list li.muted { color: #b7bdc8; }

/* Instagram embed */
.instagram-embed-wrap {
  max-width: 765px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #eef0f3;
  padding: 12px;
  overflow: hidden;
}

.instagram-embed-wrap iframe {
  width: 100% !important;
  aspect-ratio: 765 / 510;
  height: auto !important;
  display: block;
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid #eef0f3;
}

.testimonial-card .quote {
  font-size: 1rem;
  color: var(--navy-light);
  font-style: italic;
  margin-bottom: 18px;
}

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

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.notice-box {
  background: var(--bg-soft);
  border: 1px dashed #c6ccd6;
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 30px;
}

/* CTA band */
.cta-band {
  background: var(--navy);
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  padding: 60px 30px;
  margin: 0 24px;
}

.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: #c7cedb; max-width: 520px; margin: 0 auto 26px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-item .icon-badge { flex-shrink: 0; margin-bottom: 0; }

.contact-item a, .contact-item span { color: var(--navy); font-weight: 600; }

form.contact-form { display: flex; flex-direction: column; gap: 16px; }

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #dadfe6;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg-soft);
}

.contact-form textarea { min-height: 120px; resize: vertical; }

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--green-light);
}

/* Footer */
footer {
  background: var(--navy);
  color: #c7cedb;
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 30px;
}

footer .brand { color: #fff; margin-bottom: 12px; }
footer .brand img { height: 48px; }

footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }

footer ul { list-style: none; }
footer li { margin-bottom: 10px; font-size: 0.9rem; }
footer a:hover { color: var(--green-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.8rem;
  text-align: center;
  color: #8b93a3;
}

/* Utilities */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* Responsive */
@media (max-width: 860px) {
  nav { display: none; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
  .hero .container { grid-template-columns: 1fr; }
  .grid-3, .grid-2, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }

  nav.open {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px;
    box-shadow: var(--shadow);
  }
  nav.open ul { flex-direction: column; gap: 4px; }
  nav.open li { padding: 10px 0; border-bottom: 1px solid #eef0f3; }
}

/* ===== New one-page design additions ===== */

/* Hero v2 */
.hero-v2 {
  background: var(--navy);
  color: #fff;
  padding: 70px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-v2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -160px;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: var(--green-gradient);
  opacity: 0.18;
  filter: blur(40px);
}

.hero-v2 .container { position: relative; z-index: 1; }

.hero-v2 h1 { color: #fff; max-width: 780px; margin: 18px auto 20px; }
.hero-v2 p.lead { color: #c7cedb; max-width: 560px; margin: 0 auto 30px; }

.hero-v2 .hero-actions { justify-content: center; margin-top: 0; }

.hero-mock {
  margin-top: 50px;
  background: #fff;
  border-radius: 18px 18px 0 0;
  padding: 28px 28px 0;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.hero-mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.hero-mock-stat {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: left;
}

.hero-mock-stat .label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-mock-stat .value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 4px;
}

.hero-mock-chart {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.hero-mock-bars {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 140px;
}

.hero-mock-bars span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: var(--green-gradient);
  opacity: 0.85;
}

.hero-mock-donut {
  background: var(--bg-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
}

.donut {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: conic-gradient(var(--green-dark) 0% 35%, var(--green-light) 35% 65%, var(--navy) 65% 100%);
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 16px;
  background: var(--bg-soft);
  border-radius: 50%;
}

/* Section badge (eyebrow variant, centered, on dark or light) */
.section-head .eyebrow { display: block; }

/* Service icon variants */
.icon-badge.navy-badge { background: var(--navy); }

/* Steps (Como funciona) */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step;
}

.step {
  text-align: center;
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step h3 { margin-bottom: 8px; font-size: 1.05rem; }
.step p { font-size: 0.9rem; }

/* Founder / diferenciais section */
.founder-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #eef0f3;
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  max-width: 640px;
  margin: 0 auto 40px;
}

.founder-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--green-gradient);
  flex-shrink: 0;
  display: block;
  object-fit: cover;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(21,34,56,0.15);
}

.founder-card .founder-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 6px;
  display: block;
}

.founder-card h3 { margin-bottom: 8px; }
.founder-card p { font-size: 0.92rem; }

.benefit-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.benefit-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.benefit-list .check {
  background: var(--green-gradient);
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-list strong { display: block; margin-bottom: 3px; font-size: 0.95rem; }
.benefit-list span.desc { font-size: 0.85rem; color: var(--text-muted); }

/* FAQ accordion */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-question .plus {
  font-size: 1.2rem;
  color: var(--green-dark);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question .plus { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 240px;
  padding: 0 22px 18px;
}

.faq-answer p { font-size: 0.9rem; }

/* CTA v2 */
.cta-band-v2 {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}

.cta-band-v2 h2 { color: #fff; margin-bottom: 14px; }
.cta-band-v2 p { color: #c7cedb; max-width: 520px; margin: 0 auto 30px; }

/* Diagnostic quiz */
.quiz-wrap { max-width: 720px; margin: 0 auto; }

.quiz-item {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 22px 24px;
  margin-bottom: 16px;
}

.quiz-item .quiz-question {
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  gap: 12px;
}

.quiz-item .quiz-question .qnum {
  background: var(--navy);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.quiz-options {
  display: flex;
  gap: 12px;
  padding-left: 38px;
}

.quiz-options label {
  border: 1.5px solid #dadfe6;
  border-radius: 999px;
  padding: 8px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--navy-light);
  transition: all 0.15s ease;
}

.quiz-options input { display: none; }

.quiz-options input:checked + label {
  background: var(--green-gradient);
  border-color: transparent;
  color: #fff;
}

.quiz-progress {
  height: 6px;
  background: #eef0f3;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 30px;
}

.quiz-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--green-gradient);
  transition: width 0.2s ease;
}

.quiz-result {
  display: none;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #eef0f3;
  padding: 34px;
  text-align: center;
}

.quiz-result.show { display: block; }

.quiz-result .score-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.risk-low { background: #dcfce7; color: #166534; }
.risk-medium { background: #fef3c7; color: #92400e; }
.risk-high { background: #fee2e2; color: #991b1b; }

@media (max-width: 860px) {
  .hero-mock-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-mock-chart { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .benefit-list { grid-template-columns: 1fr; }
  .founder-card { flex-direction: column; }
  .quiz-options { padding-left: 0; flex-wrap: wrap; }
}
