/* ===== VARIABLES ===== */
:root {
  --blue-dark: #0B2045;
  --blue-mid: #0D3068;
  --teal: #004aad;
  --teal-light: #6EA8FE;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --font: 'Inter', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(11, 32, 69, 0.12);
  --shadow-lg: 0 8px 40px rgba(11, 32, 69, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY UTILS ===== */
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}

.section-label--light {
  color: var(--teal-light);
}

.section-title {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--blue-dark);
  margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
}

.btn--primary:hover {
  background: #003891;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 74, 173, 0.4);
}

.btn--primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn--full {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue-dark);
  padding: 16px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 38px;
  width: auto;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(140deg, #1f3a74 0%, #0e1c3a 60%, #0C2040 100%);
  padding: 80px 0 0;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 74, 173, 0.18);
  border: 1px solid rgba(0, 74, 173, 0.35);
  color: var(--teal-light);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero__title {
  font-size: clamp(38px, 5.5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

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

.hero__sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
}

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

.hero__image img {
  width: 100%;
  max-width: 520px;
  border-radius: 12px 12px 0 0;
  object-fit: cover;
  object-position: top;
  max-height: 520px;
}

/* ===== STATS ===== */
.stats {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 -2px 24px rgba(11, 32, 69, 0.06);
}

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

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 150px;
  padding: 12px 20px;
  border-right: 1px solid var(--gray-200);
}

.stat:last-child {
  border-right: none;
}

.stat__number {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 6px;
  line-height: 1.45;
  max-width: 120px;
}

/* ===== PROPÓSITO ===== */
.proposito {
  padding: 96px 0;
  background: var(--gray-50);
}

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

.proposito__content h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.proposito__content p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.75;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-embed iframe,
.video-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== FEATURES ===== */
.features {
  padding: 96px 0;
  background: var(--white);
}

.features__header {
  text-align: center;
  margin-bottom: 0;
}

.features__header .section-label {
  justify-content: center;
  display: block;
  text-align: center;
}

/* Feature highlights (WhatsApp + Workflow) */
.feature-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}

.feature-highlight--reverse {
  direction: rtl;
}

.feature-highlight--reverse > * {
  direction: ltr;
}

.feature-highlight__icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 18px;
}

.feature-highlight__content h3 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.feature-highlight__content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
}

.feature-highlight__mockup {
  border-radius: var(--radius);
  max-width: 550px;
  max-height: 700px;
  overflow: hidden;
}

.feature-highlight__mockup img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

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

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

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--teal);
}

.feature-card__icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

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

/* ===== BENEFÍCIOS ===== */
.beneficios {
  padding: 96px 0;
  background: linear-gradient(140deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
}

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

.beneficios__content h2 {
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.beneficios__content > p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 36px;
  line-height: 1.65;
}

.beneficios__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.beneficio-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 14px 16px;
  transition: background 0.2s;
}

.beneficio-item:hover {
  background: rgba(255, 255, 255, 0.11);
}

.beneficio-item img,
.beneficio-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--white);
  object-fit: contain;
}

.beneficio-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
}

.beneficios__image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 420px;
}

/* ===== PARCERIA ===== */
.parceria {
  padding: 80px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

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

.parceria__content {
  text-align: left;
}

.parceria__image {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 400px;
}

.parceria__badge {
  display: inline-block;
  background: rgba(0, 74, 173, 0.08);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(0, 74, 173, 0.22);
  margin-bottom: 20px;
}

.parceria__inner h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.parceria__inner p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 40px;
}

.parceria__stats {
  display: flex;
  justify-content: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.parceria__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 24px 20px;
  border-right: 1px solid var(--gray-200);
}

.parceria__stat:last-child {
  border-right: none;
}

.parceria__stat strong {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue-dark);
  letter-spacing: -0.02em;
}

.parceria__stat span {
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 4px;
}

/* ===== CONTATO ===== */
.contato {
  padding: 96px 0;
  background: linear-gradient(140deg, #091A38 0%, var(--blue-dark) 100%);
}

.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: flex-start;
}

.contato__copy h2 {
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.contato__copy > p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  margin-bottom: 36px;
}

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

.contato__info a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--teal-light);
  font-weight: 500;
  transition: color 0.2s;
}

.contato__info a:hover {
  color: var(--teal);
}

/* ===== FORM ===== */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__group label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
}

.form__group input {
  padding: 13px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}

.form__group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form__group input:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.09);
}

.form__group input.input-error {
  border-color: #F87171;
}

.form__feedback {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.form__feedback.success {
  background: rgba(16, 185, 129, 0.15);
  color: #6EE7B7;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.form__feedback.error-msg {
  background: rgba(248, 113, 113, 0.15);
  color: #FCA5A5;
  border: 1px solid rgba(248, 113, 113, 0.25);
}

/* ===== FOOTER ===== */
.footer {
  background: #060F1F;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__logo {
  height: 30px;
  width: auto;
}

.footer__inner p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer__contact {
  display: flex;
  gap: 24px;
}

.footer__contact a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer__contact a:hover {
  color: var(--teal);
}

/* ===== WA MOCKUP ===== */
.wa-scene {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 16px;
  border-radius: var(--radius);
}

.wa-phone {
  width: 320px;
  max-width: 100%;
  padding: 12px;
  border-radius: 42px;
  background: linear-gradient(160deg, #1a3a6e 0%, #0B2045 100%);
  box-shadow:
    0 10px 30px rgba(11, 32, 69, 0.45),
    inset 0 2px 1px rgba(255, 255, 255, 0.12);
  position: relative;
}

.wa-notch {
  width: 110px;
  height: 16px;
  background: #07152e;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
  opacity: 0.95;
}

.wa-screen {
  overflow: hidden;
  border-radius: 32px;
  background: #efe5d7;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.wa-header {
  height: 62px;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.wa-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-back {
  font-size: 22px;
  color: #1f2937;
  line-height: 1;
}

.wa-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2f63b4;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.wa-name {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.wa-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #374151;
  font-size: 16px;
}

.wa-chat {
  padding: 14px 12px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 520px;
  overflow: hidden;
}

.wa-msg {
  display: flex;
  width: 100%;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition:
    opacity 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wa-msg.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wa-visible-static {
  opacity: 1 !important;
  transform: none !important;
}

.wa-msg-in { justify-content: flex-start; }
.wa-msg-out { justify-content: flex-end; }

.wa-bubble,
.wa-upload-card,
.wa-actions {
  max-width: 88%;
}

.wa-bubble {
  background: #fff;
  border-radius: 16px;
  padding: 12px 13px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  color: #1f2937;
  font-size: 14px;
  line-height: 1.45;
  position: relative;
}

.wa-msg-in .wa-bubble::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 12px;
  width: 14px;
  height: 14px;
  background: #fff;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.wa-msg-out .wa-bubble::before {
  content: "";
  position: absolute;
  right: -7px;
  top: 12px;
  width: 14px;
  height: 14px;
  background: #cfeec9;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.wa-file-line {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.wa-file-icon {
  font-size: 15px;
  line-height: 1.2;
  flex-shrink: 0;
}

.wa-upload-card {
  background: rgba(255, 255, 255, 0.72);
  color: #d1d5db;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.wa-file-bubble {
  background: #cfeec9;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 130px;
  font-weight: 600;
}

.wa-file-icon-dark {
  filter: grayscale(1);
  opacity: 0.7;
}

.wa-success {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
}

.wa-check { flex-shrink: 0; }

.wa-data-card { padding: 14px 14px 12px; }

.wa-data-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1f2937;
}

.wa-data-list {
  margin: 0 0 12px 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wa-data-list li {
  color: #1f2937;
  font-size: 13px;
  line-height: 1.45;
}

.wa-question {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

.wa-actions {
  display: flex;
  gap: 8px;
}

.wa-action-btn {
  flex: 1;
  border: 0;
  background: #fff;
  border-radius: 14px;
  padding: 12px 10px;
  color: #86bf99;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* ===== PC WORKFLOW MOCKUP ===== */
.pc-scene {
  padding: 32px 16px;
  display: flex;
  justify-content: center;
  border-radius: var(--radius);
}

.pc-browser {
  width: 100%;
  background: #f8fafc;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 1px 1px rgba(15, 23, 42, 0.18),
    0 8px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.pc-browser-top {
  height: 48px;
  background: #d9e0ea;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
}

.pc-browser-left,
.pc-browser-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bfc8d5;
}

.pc-browser-icon,
.pc-nav-arrow,
.pc-lock {
  color: #8a97aa;
  font-size: 16px;
  line-height: 1;
}

.pc-disabled { opacity: 0.4; }

.pc-appbar {
  height: 62px;
  background: #2f63e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
}

.pc-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  display: flex;
  align-items: center;
}

.pc-logo-plan { color: #ffffff; }

.pc-logo-corp {
  background: #ffffff;
  color: #2f63e0;
  padding: 0 4px 1px;
  margin-left: 3px;
  border-radius: 2px;
  line-height: 1.1;
}

.pc-menu {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pc-menu-item {
  color: rgba(255, 255, 255, 0.8);
  padding: 9px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pc-menu-active {
  background: #2256d6;
  color: #fff;
}

.pc-content {
  padding: 24px 22px 26px;
  background: #f8fafc;
}

.pc-page-head { margin-bottom: 18px; }

.pc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #8a97aa;
  margin-bottom: 10px;
}

.pc-breadcrumb .pc-active {
  color: #4f8df7;
  font-weight: 600;
}

.pc-page-title {
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  color: #21324d;
  letter-spacing: -0.03em;
}

.pc-page-head p {
  margin: 0;
  color: #7c8aa0;
  font-size: 13px;
}

.pc-toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.pc-search {
  flex: 1;
  min-width: 0;
  height: 42px;
  background: #fff;
  border: 1px solid #dce4ef;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: #8a97aa;
  font-size: 13px;
}

.pc-search-icon {
  font-size: 17px;
  line-height: 1;
}

.pc-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pc-filter-btn {
  height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #dce4ef;
  background: #fff;
  color: #5c6b82;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  font-family: var(--font);
}

.pc-board {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: start;
}

.pc-column {
  width: 240px;
  flex-shrink: 0;
}

.pc-column-head {
  width: 240px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 14px 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  border-top: 4px solid #cbd5e1;
}

.pc-blue  { border-top-color: #23b5f6; }
.pc-orange { border-top-color: #ff9f40; }
.pc-gray  { border-top-color: #d6dee9; }

.pc-column-head-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.pc-column-head h3 {
  margin: 0;
  font-size: 15px;
  color: #23486f;
  line-height: 1.2;
}

.pc-orange h3 { color: #a14f11; }
.pc-gray h3   { color: #6b7a90; }

.pc-dots {
  color: #a8b3c3;
  letter-spacing: 2px;
  font-weight: 700;
}

.pc-column-head p {
  margin: 0 0 12px;
  color: #6f7e94;
  font-size: 12px;
  line-height: 1.5;
}

.pc-column-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pc-stat-pill,
.pc-mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f5f8fc;
  color: #4f5f76;
  font-weight: 700;
  font-size: 12px;
}

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

.pc-card {
  width: 240px;
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
  border: 1px solid #edf2f7;
}

.pc-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.pc-card-id {
  color: #5a90f2;
  font-weight: 800;
  font-size: 14px;
  margin-right: auto;
}

.pc-card-status {
  background: #dff5e8;
  color: #42aa76;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 999px;
}

.pc-card-menu {
  color: #a8b3c3;
  font-weight: 700;
  letter-spacing: 2px;
}

.pc-card-name {
  font-size: 14px;
  font-weight: 700;
  color: #31445f;
  margin-bottom: 3px;
}

.pc-card-doc {
  color: #77859a;
  font-size: 12px;
  margin-bottom: 12px;
}

.pc-card-pills {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pc-card-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8090a6;
  font-size: 12px;
}

.pc-date {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
}

.pc-date-start { color: #43b474; }

.pc-arrow {
  color: #7e8ba2;
  font-weight: 700;
}

.pc-avatar-mini {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, #d7e2ef 0%, #c4d1e2 100%);
  flex-shrink: 0;
}

.pc-column-faded { opacity: 0.72; }

.pc-card-placeholder {
  margin-top: 12px;
  height: 220px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(248,250,252,0.96));
  border: 1px dashed #d8e0eb;
}

.pc-animate,
.pc-animate-delay-1,
.pc-animate-delay-2,
.pc-animate-delay-3 {
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  animation: pcFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards paused;
}

.pc-animate         { animation-delay: 0.10s; }
.pc-animate-delay-1 { animation-delay: 0.45s; }
.pc-animate-delay-2 { animation-delay: 0.70s; }
.pc-animate-delay-3 { animation-delay: 0.95s; }

@keyframes pcFadeUp {
  from { opacity: 0; transform: translateY(16px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero__inner,
  .proposito__inner,
  .beneficios__inner,
  .contato__inner,
  .parceria__inner {
    grid-template-columns: 1fr;
  }

  .feature-highlight {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-highlight--reverse {
    direction: ltr;
  }

  .hero {
    padding: 56px 0 0;
  }

  .hero__content {
    padding-bottom: 8px;
  }

  .hero__image img {
    max-height: 340px;
    object-fit: cover;
    border-radius: 12px;
  }

  .beneficios__image img {
    height: 280px;
  }

  .proposito__image {
    height: 280px;
  }

  .contato__inner {
    gap: 48px;
  }
}

@media (max-width: 720px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .nav__logo img {
    height: 30px;
  }

  .btn--outline {
    display: none;
  }

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

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

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

  .stats__grid {
    flex-direction: column;
    align-items: stretch;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
    padding: 14px 0;
  }

  .stat:last-child {
    border-bottom: none;
  }

  .stat__label {
    max-width: none;
    margin-top: 0;
  }

  .parceria__stats {
    flex-direction: column;
  }

  .parceria__stat {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    padding: 16px;
  }

  .parceria__stat:last-child {
    border-bottom: none;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__contact {
    flex-direction: column;
    gap: 8px;
  }
}
