/* ============================================================
   MyPlat — Modern Static Landing
   Pure CSS, no dependencies.
   ============================================================ */

/* ============ SOBRE ============ */
.myplat-about-section {
  width: 100%;
  padding: 90px 24px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.myplat-about-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.about-label {
  display: inline-block;
  margin-bottom: 16px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-content h2 {
  margin: 0 0 22px;
  color: #0f172a;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 900;
}

.about-content p {
  margin: 0 0 18px;
  color: #475569;
  font-size: 17px;
  line-height: 1.75;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 32px 0;
}

.highlight-card {
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.highlight-card strong {
  display: block;
  margin-bottom: 8px;
  color: #0f172a;
  font-size: 16px;
}

.highlight-card span {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.about-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.about-btn-primary,
.about-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.2s ease;
}

.about-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.about-btn-secondary {
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.about-btn-primary:hover,
.about-btn-secondary:hover {
  transform: translateY(-2px);
}

.about-visual {
  position: relative;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: -28px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(16, 185, 129, 0.12));
  border-radius: 36px;
  filter: blur(8px);
}

.about-dashboard-card {
  position: relative;
  z-index: 1;
  padding: 28px;
  border-radius: 30px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.dashboard-header span {
  display: block;
  color: #93c5fd;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.dashboard-header strong {
  color: #ffffff;
  font-size: 22px;
}

.status-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  color: #86efac !important;
  font-size: 12px !important;
  margin: 0 !important;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.dashboard-metrics div {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-metrics span {
  display: block;
  margin-bottom: 8px;
  color: #94a3b8;
  font-size: 12px;
}

.dashboard-metrics strong {
  color: #ffffff;
  font-size: 18px;
}

.dashboard-chart {
  height: 210px;
  display: flex;
  align-items: end;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  background:
    linear-gradient(to top, rgba(148, 163, 184, 0.12) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 100% 42px;
  margin-bottom: 22px;
}

.bar {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
  min-height: 40px;
}

.bar-1 { height: 48%; }
.bar-2 { height: 72%; }
.bar-3 { height: 56%; }
.bar-4 { height: 86%; }
.bar-5 { height: 64%; }
.bar-6 { height: 92%; }

.dashboard-list {
  display: grid;
  gap: 12px;
  color: #cbd5e1;
  font-size: 15px;
}

.dashboard-list div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-list span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
}

@media (max-width: 980px) {
  .myplat-about-container {
    grid-template-columns: 1fr;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .myplat-about-section {
    padding: 60px 16px;
  }

  .about-content {
    text-align: center;
  }

  .about-actions {
    justify-content: center;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }
}

:root {
  --bg: #0a0d14;
  --bg-elev: #11151f;
  --bg-card: #151a26;
  --border: #232938;
  --text: #e6e9f0;
  --text-dim: #9aa3b5;
  --text-muted: #6b7384;
  --brand: #4f8cff;
  --brand-2: #7c5cff;
  --brand-glow: rgba(79, 140, 255, 0.35);
  --accent: #20d4a8;
  --danger: #ff6b6b;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-lg: 0 30px 80px -20px rgba(0, 0, 0, 0.6),
    0 10px 25px -10px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --container: 1180px;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  opacity: 0.85;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ------- Buttons ------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 8px 24px -8px var(--brand-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px var(--brand-glow);
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--brand);
  background: rgba(79, 140, 255, 0.08);
  opacity: 1;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.45);
  opacity: 1;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* ------- Header ------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 13, 20, 0.7);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 500;
}

.nav a:hover {
  color: var(--text);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions .btn {
  padding: 9px 18px;
  font-size: 14px;
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }
}

/* ------- Hero ------- */
.hero {
  position: relative;
  padding: 88px 0 64px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      900px 500px at 80% -10%,
      rgba(124, 92, 255, 0.25),
      transparent 60%
    ),
    radial-gradient(
      700px 400px at 20% 10%,
      rgba(79, 140, 255, 0.2),
      transparent 60%
    );
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(79, 140, 255, 0.1);
  border: 1px solid rgba(79, 140, 255, 0.25);
  color: var(--brand);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px var(--brand);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

h1 .gradient {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 1.125rem;
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-bullets {
  display: grid;
  gap: 12px;
}

.hero-bullets li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dim);
}

.hero-bullets li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(32, 212, 168, 0.15);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}

.hero-bullets strong {
  color: var(--text);
  font-weight: 600;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -10% -10% -10% -10%;
  background: radial-gradient(
    closest-side,
    rgba(124, 92, 255, 0.25),
    transparent 70%
  );
  filter: blur(40px);
  z-index: -1;
}

.hero-visual img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero {
    padding: 56px 0 40px;
  }
}

/* ------- Section base ------- */
section {
  padding: 96px 0;
}

@media (max-width: 720px) {
  section {
    padding: 64px 0;
  }
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--text-dim);
}

/* ------- Modules ------- */
.modules {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015));
  border-top: 1px solid var(--border);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.module-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px 200px at var(--mx, 50%) var(--my, 0%),
    rgba(79, 140, 255, 0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.module-card:hover {
  transform: translateY(-3px);
  border-color: rgba(79, 140, 255, 0.35);
  box-shadow: var(--shadow-md);
}

.module-card:hover::after {
  opacity: 1;
}

.module-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.module-icon svg {
  width: 22px;
  height: 22px;
}

.module-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.module-card .subtitle {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: -8px;
}

.module-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.module-card .cta {
  margin-top: auto;
  padding-top: 12px;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.module-card .cta:hover {
  gap: 10px;
}

/* ------- Sectors ------- */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.sector {
  padding: 26px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.sector:hover {
  border-color: rgba(79, 140, 255, 0.3);
  transform: translateY(-2px);
}

.sector h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.sector p {
  color: var(--text-dim);
  font-size: 0.92rem;
}

.sector-img {
  display: block;
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  margin-bottom: 14px;
}

/* ------- Pricing ------- */
.pricing {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tabs {
  display: inline-flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  margin: 0 auto 40px;
}

.tabs-wrap {
  display: flex;
  justify-content: center;
}

.tab {
  padding: 9px 22px;
  border-radius: 100px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease, background 0.2s ease;
}

.tab.active {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
}

.tab:not(.active):hover {
  color: var(--text);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 880px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

.plan {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.plan.popular {
  border-color: var(--brand);
  background: linear-gradient(
      180deg,
      rgba(79, 140, 255, 0.08),
      rgba(124, 92, 255, 0.04)
    ),
    var(--bg-card);
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.plan h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.plan-desc {
  color: var(--text-dim);
  font-size: 0.95rem;
  min-height: 60px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.plan-price .price {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.plan-price .currency {
  color: var(--text-dim);
  font-size: 1rem;
  font-weight: 600;
}

.plan-price .period {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.plan-price .old {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: line-through;
  margin-left: 6px;
}

.plan-price.custom .price {
  font-size: 1.5rem;
  color: var(--text-dim);
}

.plan-features {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 6px 0;
}

.plan-features li {
  display: flex;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-dim);
}

.plan-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
}

.plan .btn {
  width: 100%;
  justify-content: center;
}

.plan-pricing-set {
  display: none;
}

.plan-pricing-set.active {
  display: contents;
}

/* ------- Contact ------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.contact-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(79, 140, 255, 0.12);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.contact-card .icon svg {
  width: 22px;
  height: 22px;
}

.contact-card h4 {
  font-size: 1.05rem;
}

.contact-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.contact-card a {
  color: var(--brand);
  font-weight: 600;
}

.cta-final {
  background: linear-gradient(
      135deg,
      rgba(79, 140, 255, 0.12),
      rgba(124, 92, 255, 0.08)
    ),
    var(--bg-card);
  border: 1px solid rgba(79, 140, 255, 0.3);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
}

.cta-final h3 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cta-final p {
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 24px;
}

/* ------- Footer ------- */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.footer h5 {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer a:hover {
  color: var(--text);
  opacity: 1;
}

.footer-brand p {
  margin-top: 12px;
  max-width: 320px;
  font-size: 0.92rem;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ------- Floating WhatsApp ------- */
.float-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.6);
  z-index: 60;
  transition: transform 0.2s ease;
}

.float-whatsapp:hover {
  transform: scale(1.08);
  opacity: 1;
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
}

/* ------- Legal page ------- */
.legal {
  padding: 56px 0 80px;
  max-width: 820px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.legal .date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.legal h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 32px 0 10px;
  letter-spacing: -0.01em;
}

.legal p,
.legal ul {
  color: var(--text-dim);
  margin-bottom: 12px;
  font-size: 0.98rem;
}

.legal ul {
  padding-left: 22px;
}

.legal a {
  color: var(--brand);
}

/* ============ PARCEIROS ESTRATÉGICOS ============ */
.myplat-partners-section {
  width: 100%;
  padding: 86px 24px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.28), transparent 34%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.16), transparent 30%),
    linear-gradient(180deg, #020817 0%, #0f172a 100%);
  color: #ffffff;
}

.myplat-partners-container {
  max-width: 1180px;
  margin: 0 auto;
}

.partners-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.partners-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #3b82f6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.partners-header h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 900;
  color: #ffffff;
}

.partners-header p {
  margin: 0;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.7;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.partner-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 28px;
  border-radius: 28px;
  text-decoration: none;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
  transition: 0.25s ease;
}

.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), transparent 45%);
  opacity: 0;
  transition: 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.55);
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-logo-area,
.partner-category,
.partner-card h3,
.partner-card p {
  position: relative;
  z-index: 1;
}

.partner-logo-area {
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-bottom: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.partner-logo-area img {
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
  display: block;
}

.partner-logo-area img.partner-logo-cyta {
  max-height: 156px;
}

.partner-category {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.18);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.partner-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.partner-card p {
  margin: 0;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.65;
}

.partners-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.28), rgba(15, 23, 42, 0.86));
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.partners-footer strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 20px;
}

.partners-footer span {
  color: #cbd5e1;
  font-size: 15px;
}

.partners-button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
  transition: 0.2s ease;
}

.partners-button:hover {
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partner-card {
    min-height: auto;
  }

  .partners-footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .myplat-partners-section {
    padding: 58px 16px;
  }

  .partner-card,
  .partners-footer {
    padding: 22px;
    border-radius: 22px;
  }

  .partner-logo-area {
    height: 100px;
  }
}

/* ============ PROVA SOCIAL ============ */
.myplat-proof-section {
  width: 100%;
  padding: 72px 24px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.35), transparent 32%),
    linear-gradient(180deg, #020817 0%, #0f172a 45%, #f8fafc 45%, #f8fafc 100%);
}

.myplat-container {
  max-width: 1180px;
  margin: 0 auto;
}

.trusted-box {
  padding: 36px;
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.86);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  margin-bottom: 28px;
}

.trusted-box .section-label {
  display: block;
  text-align: center;
  color: #3b82f6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.trusted-box h2 {
  color: #fff;
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin-bottom: 34px;
}

.logos-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}

.logos-tagline {
  text-align: center;
  color: #93c5fd;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.client-logo-card {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 18px;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.client-logo-card small {
  display: block;
  color: #93c5fd;
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.client-logo-img {
  display: block;
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.playfit-logo-img {
  width: 108px;
  height: auto;
  margin-bottom: 6px;
  object-fit: contain;
}

.case-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  padding: 44px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.16);
  overflow: hidden;
  position: relative;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 38%);
  pointer-events: none;
}

.case-content,
.case-visual {
  position: relative;
  z-index: 1;
}

.case-content .section-label {
  display: block;
  text-align: left;
  color: #3b82f6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.case-content h3 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  color: #0f172a;
  margin-bottom: 22px;
}

.case-content h3 span {
  color: #2563eb;
}

.case-content p {
  color: #475569;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.testimonial {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 26px;
}

.playfit-mark {
  min-height: 82px;
  border-radius: 18px;
  background: linear-gradient(135deg, #dcfce7, #ffffff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #14532d;
  border: 1px solid #bbf7d0;
}

.playfit-mark small {
  color: #16a34a;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.testimonial blockquote {
  color: #1e293b;
  font-size: 16px;
  line-height: 1.6;
}

.testimonial strong {
  color: #1d4ed8;
}

.case-card .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.case-card .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.2s ease;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

.case-card .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.2s ease;
  color: #16a34a;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
}

.case-card .btn-primary:hover,
.case-card .btn-secondary:hover {
  transform: translateY(-2px);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.compare-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid #e2e8f0;
}

.compare-card h4 {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 16px;
}

.compare-card.before h4 {
  color: #dc2626;
  background: #fee2e2;
}

.compare-card.after h4 {
  color: #16a34a;
  background: #dcfce7;
}

.compare-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  color: #334155;
  font-size: 15px;
}

.compare-card li::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.compare-card.before li::before {
  content: "×";
  background: #ef4444;
}

.compare-card.after li::before {
  content: "✓";
  background: #22c55e;
}

.dashboard-mockup {
  padding: 22px;
  border-radius: 26px;
  background: #0f172a;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.28);
}

.mockup-top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #334155;
}

.dashboard-screen {
  border-radius: 18px;
  background: #f8fafc;
  padding: 20px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.metric-card {
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
}

.metric-card small {
  color: #64748b;
  display: block;
  margin-bottom: 8px;
}

.metric-card strong {
  color: #0f172a;
  font-size: 18px;
}

.chart-box {
  min-height: 190px;
  border-radius: 18px;
  background:
    linear-gradient(to top, rgba(37, 99, 235, 0.12) 1px, transparent 1px),
    linear-gradient(to right, rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    #fff;
  background-size: 100% 38px, 68px 100%;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.chart-line {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 44px;
  height: 88px;
  border-bottom: 5px solid #2563eb;
  border-right: 5px solid #22c55e;
  transform: skewY(-12deg);
  border-radius: 10px;
  opacity: 0.9;
}

.results-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.result-card {
  padding: 20px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.result-card strong {
  display: block;
  color: #1d4ed8;
  font-size: 26px;
  margin-bottom: 6px;
}

.result-card span {
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .case-card,
  .results-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .myplat-proof-section {
    padding: 42px 16px;
  }

  .trusted-box,
  .case-card {
    padding: 26px;
    border-radius: 22px;
  }

  .logos-row,
  .case-card,
  .comparison-grid,
  .metric-row,
  .results-row,
  .testimonial {
    grid-template-columns: 1fr;
  }

  .case-content .section-label {
    text-align: center;
  }

  .case-content h3,
  .case-content p {
    text-align: center;
  }

  .case-card .actions {
    justify-content: center;
  }
}
