﻿    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --amber: #FFAA00;
      --amber-light: #FFBE33;
      --bg-dark: #070708;
      --bg-light: #F5F4F0;
      --bg-card: #EDECEA;
      --text-dark: #1a1a1a;
      --text-mid: #555;
      --text-light: #888;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--bg-light);
      color: var(--text-dark);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* Noise texture */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 9999;
      pointer-events: none;
      opacity: 0.015;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 200px 200px;
    }

    /* Honeycomb bg */
    .hex-bg {
      position: fixed;
      inset: 0;
      opacity: 0.08;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66ZM28 100L0 84L0 50L28 34L56 50L56 84L28 100Z' fill='none' stroke='%23202020' stroke-width='0.8'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
    }

    /* ═══ NAVBAR ═══ */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0 max(48px, calc((100vw - 1360px) / 2 + 48px));
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(245, 244, 240, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      transition: all 0.4s ease;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-logo-img {
      height: 36px;
      width: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text-mid);
      font-size: 0.875rem;
      font-weight: 500;
      padding: 8px 16px;
      border-radius: 8px;
      transition: all 0.25s ease;
    }

    .nav-links a:hover {
      color: var(--text-dark);
      background: rgba(0, 0, 0, 0.04);
    }

    .nav-cta {
      background: var(--amber) !important;
      color: var(--bg-dark) !important;
      font-weight: 600 !important;
      padding: 10px 24px !important;
      border-radius: 10px !important;
    }

    .nav-cta:hover {
      background: var(--amber-light) !important;
    }

    /* ═══ HERO ═══ */
    .hero {
      padding: 160px 48px 100px;
      position: relative;
      z-index: 1;
      max-width: 1360px;
      margin: 0 auto;
    }

    .hero-breadcrumb {
      font-size: 0.8rem;
      color: var(--text-light);
      margin-bottom: 32px;
    }

    .hero-breadcrumb a {
      color: var(--text-light);
      text-decoration: none;
      transition: color 0.2s;
    }

    .hero-breadcrumb a:hover {
      color: var(--amber);
    }

    .hero-breadcrumb span {
      color: var(--text-dark);
      font-weight: 600;
    }

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

    .hero-eyebrow {
      font-family: 'Outfit', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 20px;
    }

    .hero-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      font-weight: 900;
      letter-spacing: -0.04em;
      line-height: 1.05;
      color: var(--text-dark);
      margin-bottom: 24px;
    }

    .hero-desc {
      font-size: 1.1rem;
      color: var(--text-mid);
      line-height: 1.7;
      max-width: 520px;
      margin-bottom: 36px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 34px;
      border-radius: 14px;
      font-size: 0.95rem;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      border: none;
      font-family: inherit;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn-amber {
      background: var(--amber);
      color: var(--bg-dark);
      box-shadow: 0 4px 25px rgba(255, 170, 0, 0.2);
    }

    .btn-amber:hover {
      background: var(--amber-light);
      box-shadow: 0 8px 40px rgba(255, 170, 0, 0.35);
      transform: translateY(-3px);
    }

    .btn-outline-dark {
      background: transparent;
      color: var(--text-dark);
      border: 2px solid rgba(0, 0, 0, 0.15);
    }

    .btn-outline-dark:hover {
      border-color: var(--text-dark);
      transform: translateY(-3px);
    }

    .btn-arrow {
      transition: transform 0.3s ease;
    }

    .btn:hover .btn-arrow {
      transform: translateX(5px);
    }

    .hero-ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* Hero image */
    .hero-image {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 4/3;
      background: #ddd;
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%) contrast(1.05);
    }

    .hero-image::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 24px;
      border: 1px solid rgba(0, 0, 0, 0.06);
      pointer-events: none;
    }

    /* ═══ WHAT WE DO ═══ */
    .section {
      padding: 100px 48px;
      position: relative;
      z-index: 1;
    }

    .section-inner {
      max-width: 1360px;
      margin: 0 auto;
    }

    .section-eyebrow {
      font-family: 'Outfit', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      color: var(--text-dark);
      line-height: 1.15;
      margin-bottom: 48px;
      max-width: 600px;
    }

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

    .step-card {
      background: var(--bg-card);
      border-radius: 20px;
      padding: 40px 32px;
      border: 1px solid rgba(0, 0, 0, 0.04);
      transition: all 0.3s ease;
    }

    .step-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    }

    .step-num {
      font-family: 'Outfit', sans-serif;
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--amber);
      letter-spacing: -0.04em;
      line-height: 1;
      margin-bottom: 20px;
    }

    .step-card h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }

    .step-card p {
      font-size: 0.9rem;
      color: var(--text-mid);
      line-height: 1.65;
    }

    /* ═══ BENEFITS ═══ */
    .benefits-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .benefit-card {
      display: flex;
      gap: 20px;
      padding: 32px;
      background: var(--bg-card);
      border-radius: 20px;
      border: 1px solid rgba(0, 0, 0, 0.04);
      transition: all 0.3s ease;
    }

    .benefit-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .benefit-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: var(--amber);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .benefit-icon svg {
      width: 22px;
      height: 22px;
      color: var(--bg-dark);
    }

    .benefit-card h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 8px;
    }

    .benefit-card p {
      font-size: 0.88rem;
      color: var(--text-mid);
      line-height: 1.6;
    }

    /* ═══ CTA BANNER ═══ */
    .cta-banner {
      background: var(--bg-dark);
      border-radius: 24px;
      padding: 72px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.05;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66ZM28 100L0 84L0 50L28 34L56 50L56 84L28 100Z' fill='none' stroke='%23FFAA00' stroke-width='0.5'/%3E%3C/svg%3E");
      pointer-events: none;
    }

    .cta-banner-text {
      position: relative;
      z-index: 1;
    }

    .cta-banner-text h2 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin-bottom: 12px;
    }

    .cta-banner-text p {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.6;
      max-width: 480px;
    }

    .cta-banner .btn {
      position: relative;
      z-index: 1;
      flex-shrink: 0;
    }

    /* ═══ FOOTER ═══ */
    .footer {
      padding: 80px 48px 40px;
      background: var(--bg-dark);
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
    }

    .footer::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66ZM28 100L0 84L0 50L28 34L56 50L56 84L28 100Z' fill='none' stroke='%23FFAA00' stroke-width='0.5'/%3E%3C/svg%3E");
      pointer-events: none;
    }

    .footer-inner {
      max-width: 1360px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1fr auto auto auto;
      gap: 60px;
      align-items: start;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-brand { display: flex; flex-direction: column; gap: 16px; }
    .footer-logo { height: 32px; width: auto; align-self: flex-start; }
    .footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 320px; }

    .footer-social-group { display: flex; flex-direction: column; gap: 16px; }
    .footer-social-label {
      font-family: 'Outfit', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
    }

    .footer-social-links { display: flex; flex-direction: column; gap: 10px; }

    .footer-social-link {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: rgba(255,255,255,0.6);
      font-size: 0.88rem;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .footer-social-link:hover { color: var(--amber); }

    .footer-social-link svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      opacity: 0.6;
      transition: opacity 0.3s ease;
    }

    .footer-social-link:hover svg { opacity: 1; }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 28px;
    }

    .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
    .footer-copy a { color: var(--amber); text-decoration: none; }

    .footer-back-top {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-back-top:hover { color: var(--amber); }
    .footer-back-top svg { width: 14px; height: 14px; }

    @media (max-width: 900px) {
      .footer { padding: 60px 24px 32px; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
    }

    @media (max-width: 500px) {
      .footer { padding: 48px 16px 24px; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
      .footer-tagline { font-size: 0.82rem; }
      .footer-social-link { font-size: 0.82rem; }
    }

    /* ═══ ANIMATIONS ═══ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    /* ═══ RESPONSIVE ═══ */
    @media (max-width: 900px) {
      .navbar { padding: 0 24px; }

      .hero {
        padding: 120px 24px 60px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .section { padding: 60px 24px; }

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

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

      .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 48px 32px;
      }
    }

    @media (max-width: 500px) {
      .hero-title { font-size: 2rem; }

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

      .btn { justify-content: center; }
    }

/* ═══ MOBILE MENU ═══ */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary, #fff);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .mobile-menu-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(32, 32, 32, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
  }

  .nav-links.open { display: flex; }
}


/* ═══ FAQ (GEO) ═══ */
.faq {
  padding: 0 48px 100px;
  position: relative;
  z-index: 1;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header { margin-bottom: 48px; }

.faq-eyebrow {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.faq-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(128, 128, 128, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item[open] { border-color: rgba(255, 170, 0, 0.25); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--amber);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-question::after { content: "−"; }

.faq-question:hover { color: var(--amber); }

.faq-answer { padding: 0 28px 24px; }

.faq-answer p {
  font-size: 0.95rem;
  opacity: 0.7;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .faq { padding: 0 24px 60px; }
  .faq-question { padding: 20px 24px; font-size: 0.95rem; }
  .faq-answer { padding: 0 24px 20px; }
}

/* ═══ HERO PANEL — FORM TOGGLE ═══ */
.hero-panel {
  border-radius: 24px;
  overflow: hidden;
}

.hero-panel.form-active .hero-image {
  display: none;
}

.hero-form-wrap {
  display: none;
  flex-direction: column;
  padding: 36px;
  background: var(--bg-card);
  border-radius: 24px;
}

.hero-panel.form-active .hero-form-wrap {
  display: flex;
  animation: subpageFormIn 0.35s ease both;
}

@keyframes subpageFormIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.hero-form-subtitle {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  margin-bottom: 22px;
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input::placeholder { color: var(--text-tertiary); }

.form-group input:focus {
  border-color: var(--amber);
  background: rgba(255, 170, 0, 0.04);
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--amber);
  margin-top: 2px;
  flex-shrink: 0;
}

.form-check span {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  line-height: 1.5;
}

.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--amber);
  color: #070708;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 170, 0, 0.2);
}

.form-submit:hover {
  background: var(--amber-light);
  box-shadow: 0 8px 35px rgba(255, 170, 0, 0.35);
  transform: translateY(-2px);
}

.form-back {
  margin-top: 12px;
  text-align: center;
}

.form-back a {
  font-size: 0.76rem;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.form-back a:hover { color: var(--amber); }

@media (max-width: 900px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-form-wrap { padding: 28px 24px; }
}

/* Consultoria — light theme overrides */
.hero-form-wrap { background: #fff; }
.hero-form-title { color: var(--text-dark); }
.hero-form-subtitle { color: var(--text-light); }
.form-group label { color: var(--text-mid); }
.form-group input {
  background: var(--bg-light);
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--text-dark);
}
.form-group input::placeholder { color: var(--text-light); }
.form-group input:focus {
  border-color: var(--amber);
  background: #fff;
}
.form-check span { color: var(--text-mid); }
.form-back a { color: var(--text-light); }
.form-back a:hover { color: var(--amber); }

/* ─── Related Services (H5 — Links cruzados) ─── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.related-card {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}

.related-card:hover {
  border-color: var(--amber, #FFAA00);
  background: rgba(255, 170, 0, 0.06);
  transform: translateY(-4px);
}

.related-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 170, 0, 0.12);
  border-radius: 10px;
  color: var(--amber, #FFAA00);
  flex-shrink: 0;
}

.related-icon svg {
  width: 20px;
  height: 20px;
}

.related-text h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: inherit;
}

.related-text p {
  font-size: 0.875rem;
  opacity: 0.65;
  margin: 0;
  line-height: 1.4;
}

.related-arrow {
  margin-top: auto;
  color: var(--amber, #FFAA00);
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}

.related-card:hover .related-arrow {
  opacity: 1;
  transform: translateX(4px);
}

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

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

/* ═══ LINKS INLINE NO CORPO ═══ */
/* Sem esta regra o navegador aplica o azul padrao, ilegivel no tema escuro.
   color: inherit mantem o link legivel em fundo claro e escuro. */
.section p a:not(.btn):not(.related-card),
.faq-answer a:not(.btn) {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--amber);
  font-weight: 600;
  transition: color 0.2s ease;
}

.section p a:not(.btn):not(.related-card):hover,
.faq-answer a:not(.btn):hover {
  color: var(--amber);
}

/* ═══ TABELA COMPARATIVA ═══ */
.compare-wrap {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  font-size: 0.95rem;
  min-width: 620px;
}

.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  vertical-align: top;
  line-height: 1.5;
}

.compare-table thead th {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  background: rgba(0,0,0,0.03);
  white-space: nowrap;
}

.compare-table tbody th {
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}

.compare-table td { color: var(--text-mid); }

/* Link dentro da tabela: sem isto cai no azul padrao do navegador. */
.compare-table a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--amber);
}

.compare-table a:hover { color: var(--amber); }
.compare-table tr:last-child th,
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .is-us { background: rgba(255,170,0,0.06); }

/* ═══ GRID DE FERRAMENTAS ═══ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 24px;
}

.tool-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.tool-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* 4 cards de servico relacionado precisam fluir sem sobrar item solto */
.related-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
