:root {
  --blue: #185FA5;
  --blue-dark: #0f3d6e;
  --blue-light: #E6F1FB;
  --blue-gradient: linear-gradient(135deg, #185FA5 0%, #0f3d6e 100%);
  --text: #0d1117;
  --muted: #6b7280;
  --border: rgba(0,0,0,0.08);
  --bg: #ffffff;
  --bg-subtle: #f8fafc;
  --hero-dark: #0d1b2a;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-blue: 0 4px 24px rgba(24,95,165,0.18);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.ti {
  display: inline-flex;
  width: 1.1em;
  justify-content: center;
  align-items: center;
  font-style: normal;
  line-height: 1;
}

.ti::before { content: "•"; }
.ti-menu-2::before { content: "☰"; }
.ti-check::before { content: "✓"; }
.ti-bolt::before { content: "⚡"; }
.ti-brand-speedtest::before { content: "⏱"; }
.ti-adjustments::before { content: "⚙"; }
.ti-server::before { content: "🖥"; }
.ti-send::before { content: "✉"; }
.ti-search::before { content: "🔎"; }
.ti-filter::before { content: "⛃"; }
.ti-school::before { content: "🎓"; }
.ti-clock::before { content: "🕒"; }
.ti-map-pin::before { content: "📍"; }
.ti-brand-whatsapp::before { content: "💬"; }
.ti-shield-check::before { content: "🛡"; }
.ti-headset::before { content: "🎧"; }
.ti-database::before { content: "🗄"; }
.ti-code::before { content: "</>"; font-weight: 700; font-size: 0.72em; letter-spacing: -0.02em; }
.ti-calendar::before { content: "📅"; }
.ti-mail::before { content: "✉"; }

.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 64px 0; }
.section.subtle { background: var(--bg-subtle); }

.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 12px;
}

h1 { font-size: clamp(34px, 7vw, 52px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 16px; }
h2 { font-size: clamp(26px, 5vw, 32px); font-weight: 700; line-height: 1.2; margin: 0 0 16px; }
h3 { font-size: 15px; font-weight: 600; margin: 0 0 8px; }
p { margin: 0 0 16px; color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; position: relative; }
.logo img { height: 86px; width: auto; }

.nav-toggle { display: none; }
.hamburger {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.nav-menu a { font-size: 14px; color: var(--muted); }
.nav-menu a:hover { color: var(--text); }
.nav-toggle:checked + label + nav { display: flex; }
.nav-menu .btn { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 8px;
  font-weight: 600;
  padding: 12px 24px;
}

.btn-primary {
  background: var(--blue-gradient);
  color: #fff;
  box-shadow: var(--shadow-blue);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: #fff;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  padding: 11px 22px;
}

.btn-secondary.light {
  background: transparent;
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}

.hero-dark {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--hero-dark);
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero-dark.hero-watermark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./fundo_1a.webp") center center / min(1200px, 92vw) no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.hero-dark.hero-watermark > .container {
  position: relative;
  z-index: 1;
}

.hero-dark p { color: rgba(255,255,255,0.72); }
.hero-grid, .split-2 { display: grid; gap: 24px; align-items: center; }

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #e8f2fb;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-image { justify-self: center; max-width: 500px; }
.cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }

.stats-bar {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; }
.stat strong { display: block; font-size: 36px; font-weight: 800; line-height: 1.1; color: var(--blue); }
.stat span { font-size: 13px; color: var(--muted); }

.grid-2, .grid-3, .grid-4 { display: grid; grid-template-columns: 1fr; gap: 16px; }

.section.compact { padding: 40px 0; }

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(24,95,165,0.2);
}

.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-box i { font-size: 20px; color: var(--blue); }
.icon-box.lg { width: 48px; height: 48px; }
.icon-box svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-box.lg svg { width: 26px; height: 26px; }

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card p {
  max-width: 34ch;
}

.service-card .check-list {
  margin: 8px 0 16px;
}

.service-cta {
  margin-top: auto;
  align-self: flex-start;
}

.backup-grid {
  display: grid;
  gap: 18px;
}

.backup-terminal {
  background: #0d1117;
  color: #16a34a;
  border-radius: var(--radius-lg);
  padding: 20px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.8;
  white-space: pre-wrap;
  border: 1px solid rgba(22,163,74,0.18);
  box-shadow: var(--shadow-md);
}

.backup-terminal .muted-line {
  color: rgba(22,163,74,0.72);
}

.backup-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 12px;
}

.gdpr-callout {
  background: var(--blue-light);
  border-left: 3px solid var(--blue);
  padding: 16px 20px;
  border-radius: var(--radius);
  color: #18324c;
}

.scale-proof {
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: grid;
  gap: 24px;
}

.scale-proof-metrics {
  display: grid;
  gap: 16px;
}

.scale-proof-metrics strong {
  display: block;
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.scale-proof-metrics span {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.scale-proof-copy p {
  color: rgba(255,255,255,0.92);
  margin: 0 0 10px;
}

.scale-proof-copy p:last-child {
  margin-bottom: 0;
  font-weight: 600;
}

.portal-grid {
  margin-top: 20px;
}

.portal-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.portal-card img {
  width: 100%;
  display: block;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.portal-card h3 {
  margin: 0;
}

.portal-card p {
  margin: 0;
  color: var(--muted);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
}

.plan-badge.primary {
  background: var(--blue-gradient);
  color: #fff;
}

.plan-badge.success {
  background: #f0fdf4;
  color: #16a34a;
}

.plan-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.plan-title h3 {
  font-size: 22px;
  margin: 0;
}

.plan-summary {
  color: var(--muted);
  margin-bottom: 16px;
}

.plan-list {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.plan-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.plan-item i {
  color: var(--blue);
  margin-top: 3px;
}

.plan-price {
  margin-top: auto;
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
}

.plan-price small {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 4px;
}

.plan-cta {
  margin-top: 16px;
  align-self: flex-start;
}

.plan-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

.email-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.email-proof-card {
  height: 100%;
}

.monitoring-shot {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.monitoring-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.monitoring-pill {
  background: #f0fdf4;
  color: #16a34a;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}

.monitoring-caption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  font-style: italic;
}

.check-list { display: grid; gap: 10px; }
.check-item { display: flex; gap: 8px; align-items: flex-start; }
.check-item i { color: var(--blue); margin-top: 4px; }

.muted-italic { font-size: 12px; color: var(--muted); font-style: italic; margin-top: 4px; }
.price { font-size: 20px; font-weight: 700; color: var(--text); margin: 14px 0; }

.spec-table-wrap, .table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
th, td { padding: 12px; border: 1px solid var(--border); text-align: left; vertical-align: top; }
th { background: #f4f8fc; }

.plans-table { min-width: 760px; }
.plans-table th,
.plans-table td {
  text-align: center;
}
.plans-table th:first-child,
.plans-table td:first-child {
  text-align: left;
  white-space: nowrap;
}

.compare thead th { background: var(--blue-gradient); color: #fff; }
.compare td:first-child { font-weight: 600; }
.compare td:nth-child(2) { background: var(--blue-light); }
.yes { color: #16a34a; font-weight: 600; }
.no { color: #dc2626; font-weight: 600; }

.specs-list { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.spec-row { display: flex; justify-content: space-between; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--border); }
.spec-row:last-child { border-bottom: 0; }
.spec-row strong { font-weight: 600; }

.callout {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  padding: 16px;
  color: #18324c;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
}

.banner {
  background: var(--blue-gradient);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
}
.banner h2 { color: #fff; }
.banner p { color: rgba(255,255,255,0.75); }
.banner .btn { background: #fff; color: var(--blue-dark); }

form { display: grid; gap: 12px; }
label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #475467; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px;
  font: inherit;
}
textarea { min-height: 140px; resize: vertical; }

.info-item { display: flex; gap: 8px; margin-bottom: 12px; }
.info-item i { color: var(--blue); margin-top: 4px; }

.tree-intro {
  display: grid;
  gap: 16px;
  align-items: center;
}

.tree-intro-image img {
  width: min(100%, 520px);
  margin: 0 auto;
}

.site-footer { background: var(--text); color: #d5dbe3; margin-top: 56px; }
.footer-wrap { padding: 26px 0; display: grid; gap: 16px; }
.footer-logo { height: 64px; width: auto; }
.site-footer p { color: rgba(255,255,255,0.82) !important; font-size: 14px; line-height: 1.45; }
.site-footer small { color: rgba(255,255,255,0.72); }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-links a { color: #c8d0da; font-size: 14px; }
.footer-links a:hover { color: #fff; }

.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 10px; display: inline-block; }

@media (min-width: 768px) {
  .hamburger { display: none; }
  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    border: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
  .nav-menu .btn { width: auto; }

  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
  .split-2 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .tree-intro { grid-template-columns: 1fr 1.2fr; }
  .banner { margin: 0 32px; }
  .footer-wrap { grid-template-columns: 1fr auto; align-items: center; }
  .plan-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .email-proof-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .scale-proof {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
  }
  .scale-proof-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .nav-wrap { min-height: 64px; }
  .logo img { height: 60px; }
  .section.compact { padding: 28px 0; }
  .plans-table {
    min-width: 700px;
  }
  .plans-table th,
  .plans-table td {
    padding: 10px 8px;
    font-size: 13px;
  }
  .scale-proof { padding: 24px; }
  .scale-proof-metrics strong { font-size: 38px; }
  .footer-logo { height: 56px; }
}

.hero-diagonal {
  position: relative;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero-diagonal::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(230,241,251,0) 0%, rgba(230,241,251,0.8) 100%);
  pointer-events: none;
}

