:root {
  /* Deep Blue + Gold (autoridade) */
  --deep-blue-900: #13284a;
  --deep-blue-950: #0c1f3d;
  --gold-500: #f4c542;
  --gold-700: #9b6b00;
  --gold-600: #d19a10;
  --success-500: #58d68d;

  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-soft: #f9fbfe;
  --ink: #22324d;
  --muted: #6d7c95;
  --line: #e4ebf4;
  --hero: var(--deep-blue-900);
  --hero-deep: var(--deep-blue-950);
  --brand: #44b9ff;
  --brand-strong: #2899f5;
  --brand-soft: rgba(68, 185, 255, 0.14);
  --white-soft: rgba(255, 255, 255, 0.78);
  --shadow: 0 18px 50px rgba(20, 42, 79, 0.08);
  --shadow-soft: 0 12px 28px rgba(20, 42, 79, 0.06);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: min(1160px, calc(100% - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  overflow-x: clip;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.hidden {
  display: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  z-index: 40;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: var(--hero);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 248, 252, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(209, 220, 235, 0.8);
}

body.is-scrolled .site-header {
  box-shadow: 0 10px 24px rgba(20, 42, 79, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  height: 28px;
  padding: 0 0.55rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--hero) 0%, #27446f 100%);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-title {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--hero);
}

#desktop-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

#desktop-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

#desktop-nav a:hover,
#desktop-nav a:focus-visible {
  color: var(--hero);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--hero);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.mobile-menu {
  display: block;
  padding: 0 0 1rem;
}

.mobile-menu-inner {
  width: var(--container);
  margin-inline: auto;
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.mobile-link {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--muted);
  font-weight: 700;
}

.mobile-link:hover,
.mobile-link:focus-visible {
  color: var(--hero);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.92rem 1.28rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.72rem 1rem;
  font-size: 0.88rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--hero) 0%, #27446f 100%);
  box-shadow: 0 12px 24px rgba(19, 40, 74, 0.18);
}

.btn-outline {
  color: var(--hero);
  border-color: rgba(19, 40, 74, 0.14);
  background: var(--surface);
}

.btn-outline--light {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.btn-accent {
  color: #fff;
  background: linear-gradient(135deg, #1eb7ff 0%, #53d0ff 100%);
  box-shadow: 0 14px 28px rgba(68, 185, 255, 0.25);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.btn-white {
  color: var(--hero);
  background: #fff;
  box-shadow: 0 12px 24px rgba(8, 18, 37, 0.18);
}

.btn-book {
  color: #fff;
  background: linear-gradient(135deg, #0f9f6e 0%, #27c282 100%);
  box-shadow: 0 14px 28px rgba(15, 159, 110, 0.24);
}

.btn-book:hover,
.btn-book:focus-visible {
  box-shadow: 0 18px 32px rgba(15, 159, 110, 0.32);
}

.btn-team {
  color: #fff;
  background: linear-gradient(135deg, #0a6b49 0%, #14855d 100%);
  box-shadow: 0 14px 28px rgba(10, 107, 73, 0.26);
}

.btn-team:hover,
.btn-team:focus-visible {
  box-shadow: 0 18px 32px rgba(10, 107, 73, 0.34);
}

.hero-section,
.section {
  padding: 2rem 0 5.5rem;
}

.hero-card,
.presence-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--hero) 0%, var(--hero-deep) 100%);
  box-shadow: 0 30px 60px rgba(14, 27, 53, 0.12);
}

.hero-card {
  min-height: 520px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 5.5rem 1.5rem 2.2rem;
  text-align: center;
  color: #fff;
}

.hero-network {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 84%, rgba(83, 201, 255, 0.88) 0 2px, transparent 4px),
    radial-gradient(circle at 31% 76%, rgba(83, 201, 255, 0.6) 0 2px, transparent 4px),
    radial-gradient(circle at 48% 86%, rgba(83, 201, 255, 0.7) 0 2px, transparent 4px),
    radial-gradient(circle at 62% 68%, rgba(83, 201, 255, 0.58) 0 2px, transparent 4px),
    radial-gradient(circle at 82% 80%, rgba(83, 201, 255, 0.56) 0 2px, transparent 4px),
    linear-gradient(155deg, transparent 37%, rgba(104, 204, 255, 0.18) 37.3%, rgba(104, 204, 255, 0.18) 37.8%, transparent 38.2%),
    linear-gradient(126deg, transparent 51%, rgba(104, 204, 255, 0.12) 51.3%, rgba(104, 204, 255, 0.12) 51.7%, transparent 52.1%),
    linear-gradient(101deg, transparent 71%, rgba(104, 204, 255, 0.14) 71.3%, rgba(104, 204, 255, 0.14) 71.7%, transparent 72.1%),
    radial-gradient(circle at center, rgba(81, 193, 255, 0.09), transparent 62%);
  opacity: 0.92;
}

.hero-card::after,
.presence-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -120px;
  height: 220px;
  background: radial-gradient(circle at center, rgba(83, 201, 255, 0.18), transparent 68%);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker-light {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
}

.hero-title,
.section-title {
  margin: 1rem 0 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.hero-title span {
  display: inline-block;
  color: var(--brand);
}

.hero-title .hero-plus-ia {
  color: var(--success-500);
}

.hero-title .hero-keyword {
  text-decoration-line: underline;
  text-decoration-thickness: 0.14em;
  text-underline-offset: 0.12em;
  text-decoration-color: currentColor;
  text-decoration-skip-ink: auto;
}

.silver-text {
  color: #b8c2cf;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hero-copy,
.section-subtitle,
.book-copy {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy,
.hero-proof p,
.hero-expand,
.section-subtitle,
.book-copy,
.feature-card p,
.project-card p,
.project-list li,
.section-note,
.footer-brand p,
.footer-copy {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.hero-copy {
  max-width: 670px;
  margin: 1.2rem auto 0;
  color: rgba(255, 255, 255, 0.72);
}

.hero-copy--lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-copy-highlight {
  color: #58d68d;
  font-weight: 800;
}

.hero-proof {
  max-width: 690px;
  margin: 1.15rem auto 0;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(83, 201, 255, 0.2);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(83, 201, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-proof-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof p {
  margin: 0.7rem 0 0;
  color: #fff;
  line-height: 1.6;
  font-size: 1.04rem;
}

.hero-proof strong {
  color: var(--gold-500);
  font-weight: 800;
  text-shadow: 0 0 18px rgba(244, 197, 66, 0.18);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 1.6rem auto 0;
  max-width: 840px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-benefit {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-benefit__icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(83, 201, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  flex: 0 0 auto;
}

.hero-benefit__title {
  display: block;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero-benefit__copy {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  text-align: justify;
}

.proposta-dialog {
  width: min(720px, calc(100% - 2rem));
  border: 1px solid rgba(68, 185, 255, 0.26);
  border-radius: 24px;
  padding: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 252, 255, 0.96) 100%);
  box-shadow: 0 45px 110px rgba(12, 31, 61, 0.38);
  overflow: hidden;
}

.proposta-dialog::backdrop {
  background: rgba(12, 31, 61, 0.62);
  backdrop-filter: blur(6px);
}

.proposta-dialog[open] {
  animation: proposta-in 0.22s ease-out;
}

@keyframes proposta-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.proposta-dialog__inner {
  padding: 1.2rem 1.25rem 1.25rem;
}

.proposta-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0.1rem 0.95rem;
  border-bottom: 1px solid rgba(19, 40, 74, 0.08);
}

.proposta-dialog__title {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.proposta-dialog__close {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(19, 40, 74, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--hero);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(20, 42, 79, 0.08);
}

.proposta-dialog__close:hover,
.proposta-dialog__close:focus-visible {
  border-color: rgba(68, 185, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(68, 185, 255, 0.18), 0 12px 22px rgba(20, 42, 79, 0.08);
}

.proposta-dialog__body {
  padding-top: 1rem;
  color: var(--ink);
  line-height: 1.65;
}

.proposta-dialog__list {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  color: rgba(34, 50, 77, 0.88);
}

.proposta-dialog__list li {
  position: relative;
  padding: 0.85rem 0.9rem 0.85rem 2.4rem;
  border-radius: 18px;
  border: 1px solid rgba(20, 42, 79, 0.08);
  background: rgba(19, 40, 74, 0.03);
}

.proposta-dialog__list li::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 1rem;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: rgba(88, 214, 141, 0.2);
  border: 1px solid rgba(88, 214, 141, 0.35);
}

.proposta-dialog__list li::after {
  content: "✓";
  position: absolute;
  left: 1.33rem;
  top: 0.95rem;
  font-weight: 900;
  font-size: 0.8rem;
  color: rgba(34, 50, 77, 0.85);
}

.proposta-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.proposta-dialog__actions .btn {
  min-height: 52px;
}

.hero-expand {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.2rem;
  border: 1px solid transparent;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.05);
  line-height: 1.7;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.35s ease, opacity 0.22s ease, transform 0.22s ease, margin-top 0.22s ease,
    padding 0.22s ease, border-color 0.22s ease;
}

.hero-expand.is-open {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border-color: rgba(255, 255, 255, 0.1);
  max-height: 900px;
  opacity: 1;
  transform: translateY(0);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 620px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat strong,
.presence-stat strong,
.project-value {
  display: block;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}

.hero-stat strong {
  color: var(--brand);
  font-size: 1.35rem;
}

.hero-stat span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.section-light {
  background: #fff;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.centered {
  text-align: center;
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  color: var(--hero);
}

.section-title.left {
  text-align: left;
}

.section-title-light {
  color: #fff;
}

.section-subtitle {
  max-width: 720px;
  margin: 1rem auto 0;
  font-size: 1rem;
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.72);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.feature-card,
.project-card {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-weight: 800;
}

.feature-card h3,
.project-card h3,
.footer-brand strong {
  margin: 0.9rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.feature-card p,
.project-card p,
.project-list li,
.footer-brand p,
.footer-copy {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.section-note {
  margin: 1.6rem 0 0;
  max-width: 720px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 0.93rem;
}

.pricing-shell {
  margin-top: 2rem;
  padding: 1.15rem;
  border: 1px solid rgba(20, 42, 79, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #f3f8ff 0%, #eef5ff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.roi-shell {
  margin-top: 2rem;
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.roi-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: var(--shadow-soft);
  min-width: 0;
}

.roi-card--bad {
  border-color: rgba(240, 90, 90, 0.26);
  background: linear-gradient(180deg, #fff7f7 0%, #fffdfd 100%);
}

.roi-card--good {
  border-color: rgba(15, 159, 110, 0.22);
  background: linear-gradient(180deg, #f3fffa 0%, #fbfffe 100%);
}

.roi-card--calc {
  border-color: rgba(68, 185, 255, 0.22);
  background: linear-gradient(180deg, #f2fbff 0%, #fbfdff 100%);
  position: relative;
  overflow: visible;
}

.roi-card--calc::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 220px;
  background: radial-gradient(circle at center, rgba(68, 185, 255, 0.22), transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.roi-card--calc::after {
  content: "";
  position: absolute;
  inset: auto -30% -55%;
  height: 260px;
  background: radial-gradient(circle at center, rgba(244, 197, 66, 0.16), transparent 64%);
  pointer-events: none;
  z-index: 0;
}

.roi-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
  color: var(--hero);
}

.roi-list {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: rgba(34, 50, 77, 0.88);
  line-height: 1.6;
  text-align: justify;
}

.roi-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.9rem;
  position: relative;
  z-index: 1;
}

.roi-field {
  display: grid;
  gap: 0.35rem;
  font-weight: 900;
  color: rgba(34, 50, 77, 0.88);
}

.roi-field span {
  font-size: 0.9rem;
  color: rgba(34, 50, 77, 0.78);
}

.roi-field input,
.roi-field select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(20, 42, 79, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--hero);
  font-weight: 800;
  min-height: 52px;
  box-shadow: 0 10px 22px rgba(20, 42, 79, 0.06);
}

.roi-field input:focus-visible,
.roi-field select:focus-visible {
  outline: none;
  border-color: rgba(68, 185, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(68, 185, 255, 0.22), 0 10px 22px rgba(20, 42, 79, 0.06);
}

.roi-result {
  padding: 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(20, 42, 79, 0.1);
  background: rgba(255, 255, 255, 0.78);
}

.roi-result__label {
  display: block;
  color: rgba(34, 50, 77, 0.74);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.roi-result__value {
  display: block;
  margin-top: 0.25rem;
  font-family: "Sora", sans-serif;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  color: var(--hero);
}

.roi-result__hint {
  display: block;
  margin-top: 0.4rem;
  color: rgba(34, 50, 77, 0.7);
  line-height: 1.45;
  font-size: 0.88rem;
}

.roi-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.roi-kpi {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 0.9rem;
  row-gap: 0.2rem;
  align-items: center;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(20, 42, 79, 0.08);
  background: rgba(255, 255, 255, 0.75);
  color: rgba(34, 50, 77, 0.78);
  font-weight: 800;
  min-width: 0;
  overflow-wrap: anywhere;
}

.roi-kpi__label {
  font-size: clamp(0.88rem, 0.25vw + 0.84rem, 0.98rem);
  color: rgba(34, 50, 77, 0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.roi-kpi__value {
  color: var(--hero);
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
  font-size: clamp(0.95rem, 0.45vw + 0.9rem, 1.15rem);
  white-space: nowrap;
}

.roi-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.roi-disclaimer {
  margin: 0.25rem 0 0;
  color: rgba(34, 50, 77, 0.7);
  line-height: 1.5;
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.roi-disclaimer a {
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.2rem 0.1rem 0;
}

.pricing-heading-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  background: rgba(244, 197, 66, 0.16);
  color: var(--gold-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-heading-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  text-align: justify;
  text-justify: inter-word;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: var(--shadow-soft);
}

.pricing-card-featured {
  border-color: rgba(244, 197, 66, 0.35);
  background: linear-gradient(180deg, #fffdfa 0%, #fff9ed 100%);
  box-shadow: 0 16px 36px rgba(20, 42, 79, 0.08);
}

.pricing-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-badge-gold {
  background: rgba(244, 197, 66, 0.16);
  color: var(--gold-700);
}

.pricing-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.34rem 0.68rem;
  border-radius: 999px;
  background: rgba(20, 42, 79, 0.06);
  color: var(--hero);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-chip-gold {
  background: rgba(244, 197, 66, 0.18);
  color: var(--gold-700);
}

.pricing-chip-muted {
  background: rgba(20, 42, 79, 0.04);
  color: rgba(34, 50, 77, 0.72);
}

.pricing-card-recommended {
  border-color: rgba(15, 159, 110, 0.26);
  box-shadow: 0 14px 32px rgba(15, 159, 110, 0.06);
}

.pricing-anchor {
  margin-top: 1rem;
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(19, 40, 74, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.pricing-anchor__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(244, 197, 66, 0.18);
  color: #9b6b00;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-anchor__copy {
  display: block;
  margin-top: 0.55rem;
  color: rgba(34, 50, 77, 0.82);
  line-height: 1.55;
  font-size: 0.9rem;
}

.pricing-card h3 {
  margin: 0.9rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.04rem;
  letter-spacing: -0.03em;
  color: var(--hero);
}

.pricing-description,
.pricing-meta {
  color: var(--muted);
  line-height: 1.68;
}

.pricing-description {
  margin: 0.7rem 0 0;
  font-size: 0.95rem;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.pricing-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-strong);
}

.pricing-card-featured .pricing-list li::before {
  background: #d19a10;
}

.pricing-value {
  display: block;
  margin-top: 1rem;
  font-family: "Sora", sans-serif;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  color: var(--hero);
}

.pricing-card-featured .pricing-value {
  color: #9b6b00;
}

.pricing-meta {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.88rem;
}

.pricing-cta {
  margin-top: auto;
  width: 100%;
  min-height: 52px;
  font-size: 1rem;
  padding: 1.05rem 1.25rem;
}

.pricing-trust {
  margin: 0.8rem 0 0;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(20, 42, 79, 0.08);
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.85rem;
  text-align: justify;
  text-justify: inter-word;
}

.book-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

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

.book-cover {
  width: min(240px, 100%);
  filter: drop-shadow(0 22px 42px rgba(20, 42, 79, 0.18));
}

.book-content {
  max-width: 650px;
}

.book-copy {
  margin-top: 1rem;
}

.book-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.book-meta-item {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.book-meta-item span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.book-meta-item strong,
.book-meta-item a {
  display: block;
  margin-top: 0.4rem;
  color: var(--hero);
  font-size: 0.98rem;
  font-weight: 800;
}

.book-note {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.project-list {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.project-value {
  margin-top: 1.15rem;
  color: var(--brand-strong);
  font-size: 1.15rem;
}

.presence-section {
  padding-top: 2rem;
}

.presence-card {
  padding: 4rem 1.5rem;
  text-align: center;
}

.presence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 960px;
  margin: 2.2rem auto 0;
}

.presence-stat {
  position: relative;
  overflow: hidden;
  min-height: 154px;
  padding: 1rem 0.95rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 36px rgba(6, 14, 29, 0.14);
  text-align: left;
}

.presence-stat::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(127, 212, 255, 0.95) 0%, rgba(255, 255, 255, 0.06) 72%);
}

.presence-stat::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -36px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 212, 255, 0.12), transparent 72%);
  pointer-events: none;
}

.presence-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  align-self: flex-start;
  width: 44px;
  height: 44px;
  margin-top: 0;
  margin-bottom: 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(127, 212, 255, 0.16);
  background:
    radial-gradient(circle at top left, rgba(127, 212, 255, 0.18), transparent 62%),
    rgba(255, 255, 255, 0.06);
  color: #95e1ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(10, 24, 48, 0.18);
}

.presence-icon svg {
  display: block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.presence-stat strong {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.15;
}

.presence-copy {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.45;
  font-size: 0.86rem;
  text-align: left;
}

.presence-stat:nth-child(2) .presence-icon {
  border-color: rgba(114, 237, 195, 0.18);
  background:
    radial-gradient(circle at top left, rgba(114, 237, 195, 0.16), transparent 62%),
    rgba(255, 255, 255, 0.06);
  color: #8ff0d1;
}

.presence-stat:nth-child(3) .presence-icon {
  border-color: rgba(146, 190, 255, 0.18);
  background:
    radial-gradient(circle at top left, rgba(146, 190, 255, 0.16), transparent 62%),
    rgba(255, 255, 255, 0.06);
  color: #a8c8ff;
}

.presence-stat:nth-child(4) .presence-icon {
  border-color: rgba(244, 197, 66, 0.18);
  background:
    radial-gradient(circle at top left, rgba(244, 197, 66, 0.16), transparent 62%),
    rgba(255, 255, 255, 0.06);
  color: #f4c542;
}

.presence-action {
  margin-top: 1.8rem;
}

.site-footer {
  padding: 1.35rem 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.footer-brand strong {
  margin-top: 0;
  font-size: 0.92rem;
  color: var(--hero);
}

.footer-brand p {
  margin-top: 0.3rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--hero);
}

.footer-copy {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.18s;
}

@media (min-width: 980px) {
  #desktop-nav {
    display: inline-flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 979px) {
  .header-actions > .btn {
    display: none;
  }
}

@media (max-width: 840px) {
  .hero-stats,
  .hero-benefits,
  .features-grid,
  .pricing-shell,
  .pricing-grid,
  .roi-grid,
  .book-layout,
  .book-meta,
  .project-grid,
  .presence-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: auto;
  }

  .roi-card--calc::before,
  .roi-card--calc::after {
    display: none;
  }

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

  .hero-content,
  .presence-card {
    padding: 4rem 1.2rem 2rem;
  }

  .hero-title {
    font-size: 2.45rem;
  }

  .book-layout {
    gap: 1.8rem;
  }

  .footer-inner {
    display: grid;
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .hero-section,
  .section {
    padding: 1.25rem 0 4rem;
  }

  .header-inner {
    min-height: 66px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .hero-actions,
  .book-actions {
    flex-direction: column;
  }

  .btn,
  .btn-sm {
    width: 100%;
  }

  .hero-stat,
  .presence-stat {
    text-align: center;
  }

  .presence-copy {
    text-align: center;
  }

  .roi-kpis {
    grid-template-columns: 1fr;
  }

  .proposta-dialog__actions {
    flex-direction: column;
  }
}

/* 1. Remova ou aumente o max-width da descrição para ocupar o espaço total */
.tech-cta__description {
  color: var(--cta-text-muted);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 100%; /* Mudado de 580px para 100% */
  margin-bottom: 0;
  text-align: justify;
}

/* 2. Garante que o container de texto use todo o espaço da coluna */
.tech-cta__text-container {
  width: 100%;
  flex: 1; /* Faz o texto "empurrar" o que estiver ao lado */
}

/* 3. Ajuste o título para não quebrar de forma estranha */
.tech-cta__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--cta-text-main);
  line-height: 1.1;
  margin-bottom: 20px;
  width: 100%; /* Ocupa a largura total da coluna */
}

/* 4. Melhore o alinhamento da coluna do botão */
.tech-cta__action-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 200px; /* Garante que o botão tenha seu próprio espaço garantido */
}

/* 5. Ajuste de Responsividade para evitar que o botão 'atropele' o texto em telas médias */
@media (min-width: 992px) {
  .tech-cta__action-box {
    align-items: flex-end; /* Botão colado na direita em desktop */
  }
}

@media (max-width: 991px) {
  .tech-cta__title {
    text-align: center;
  }
  .tech-cta__description {
    text-align: center;
  }
}
/* --- Variáveis de Design --- */
:root {
  --cta-bg: #0a0f1e;
  --cta-glass: rgba(255, 255, 255, 0.03);
  --cta-border: rgba(255, 255, 255, 0.1);
  --cta-accent-1: #4f46e5; /* Indigo Tech */
  --cta-accent-2: #10b981; /* Esmeralda Saúde */
  --cta-text-main: #ffffff;
  --cta-text-muted: #94a3b8;
}

/* --- Container Principal --- */
.tech-cta {
  padding: 100px 0;
  position: relative;
  z-index: 20;
  margin-bottom: -100px; /* Efeito de sobreposição no footer */
}

.tech-cta__card {
  position: relative;
  background: var(--cta-bg);
  border: 1px solid var(--cta-border);
  border-radius: 40px;
  padding: 60px;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
}

/* --- Efeitos de Iluminação --- */
.tech-cta__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.4;
  pointer-events: none;
}

.tech-cta__glow--1 {
  width: 300px;
  height: 300px;
  background: var(--cta-accent-1);
  top: -100px;
  left: -50px;
}

.tech-cta__glow--2 {
  width: 250px;
  height: 250px;
  background: var(--cta-accent-2);
  bottom: -50px;
  right: -50px;
}

/* --- Elementos de Conteúdo --- */
.tech-cta__content {
  position: relative;
  z-index: 2;
}

.tech-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--cta-glass);
  border: 1px solid var(--cta-border);
  padding: 8px 20px;
  border-radius: 100px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.tech-cta__pulse {
  width: 8px;
  height: 8px;
  background: var(--cta-accent-2);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cta-accent-2);
  animation: pulse-ring 2s infinite;
}

.tech-cta__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--cta-text-main);
  line-height: 1.1;
  margin-bottom: 20px;
}

.tech-cta__title--gradient {
  background: linear-gradient(90deg, #fff, var(--cta-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* --- Estatísticas --- */
.tech-cta__stats {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.tech-cta__stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.tech-cta__stat-label {
  font-size: 12px;
  color: var(--cta-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tech-cta__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--cta-border);
}

/* --- Botão Magnético --- */
.tech-cta__button {
  position: relative;
  display: inline-block;
  padding: 20px 45px;
  background: #fff;
  color: #000 !important;
  text-decoration: none !important;
  border-radius: 16px;
  font-weight: 800;
  font-size: 15px;
  margin-top: 18px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tech-cta__button:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.4);
  background: var(--cta-accent-1);
  color: #fff !important;
}

.tech-cta__hint {
  display: block;
  margin-top: 15px;
  color: var(--cta-text-muted);
  font-size: 12px;
  font-style: italic;
}
/* Container de Diferenciais */
.tech-cta__features {
  display: flex;
  flex-wrap: wrap; /* Para não quebrar no mobile */
  gap: 15px;
  margin-top: 35px;
}

/* Item de Diferencial Estilo Pill */
.tech-cta__feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  
  /* Alteração aqui: */
  width: auto; /* Permite que fiquem lado a lado */
  flex: 1 1 calc(33.333% - 15px); /* Opcional: faz ocupar 3 colunas iguais */
  
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tech-cta__feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cta-accent-2); /* Aquele verde/esmeralda */
  transform: translateY(-2px);
}

.tech-cta__feature-icon {
  font-size: 16px;
}

.tech-cta__feature-text {
  color: var(--cta-text-main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Ajuste mobile para centralizar quando o texto ocupar tudo */
@media (max-width: 991px) {
  .tech-cta__features {
    justify-content: center;
  }
}
/* --- Animações --- */
@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* --- Responsividade --- */
@media (max-width: 991px) {
  .tech-cta { padding: 60px 0; margin-bottom: -120px; }
  .tech-cta__card { padding: 40px 20px; }
  .tech-cta__stats { justify-content: center; }
  .tech-cta__title { font-size: 2.2rem; }
}

:root {
    --tech-blue: #007aff;
    --grid-border: #222;
    --text-muted: #888;
    --bg-dark: #050505;
}

.site-footer {
    background-color: var(--bg-dark);
    color: #fff;
    padding: 60px 0 20px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid var(--grid-border);
    position: relative;
    overflow: hidden;
    margin-top: 150px;
    text-align: justify;
    /* Reduz o tamanho de todas as letras dentro do footer em 15% */
    font-size: 0.75rem; 
}
/* Linha de Scanner Animada */
.footer-scanner-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--tech-blue), transparent);
    animation: scan 4s linear infinite;
    opacity: 0.5;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.footer-main-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 0;
    border: 1px solid var(--grid-border);
}

.footer-section {
    padding: 40px;
    border-right: 1px solid var(--grid-border);
}

.footer-section:last-child { border-right: none; }

/* Tipografia Estilo Tech */
.tech-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--tech-blue);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.footer-logo span { font-weight: 200; color: var(--text-muted); }

.section-title-footer {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.footer-nav a {
    display: block;
    color: #eee;
    text-decoration: none;
    font-size: 0.8rem;
    margin-bottom: 15px;
    transition: 0.3s;
}

.nav-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--tech-blue);
    margin-right: 10px;
}

.footer-nav a:hover {
    color: var(--tech-blue);
    transform: translateX(5px);
}

/* Badge THOT IA */
.thot-badge {
    margin-top: 30px;
    font-size: 0.7rem;
    color: var(--text-muted);
    border: 1px solid var(--grid-border);
    padding: 8px 12px;
    display: inline-block;
}

.thot-badge span { color: #fff; font-weight: bold; }

/* Terminal Bottom */
.footer-terminal {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid var(--grid-border);
    border-top: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
}

.terminal-right a {
    color: var(--text-muted);
    margin-left: 20px;
    text-decoration: none;
}

.cursor {
    animation: blink 1s infinite;
    color: var(--tech-blue);
}
/* O ponto que pulsa */
.status-indicator .dot {
    height: 6px;
    width: 6px;
    background-color: var(--tech-blue);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    position: relative;
    box-shadow: 0 0 8px var(--tech-blue);
    animation: pulse-glow 2s infinite;
}
.footer-scanner-line {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--tech-blue) 50%, 
        transparent 100%
    );
    animation: scan-line 4s linear infinite;
    z-index: 10;
}

@keyframes scan-line {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
@keyframes blink { 50% { opacity: 0; } }

/* Responsivo */
/* --- Ajustes Gerais para Celular (Mobile First / Queries) --- */

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 15px 10px; /* Redução de padding para ganhar tela */
    }

    /* O grid de 4 colunas vira 1 coluna única */
    .footer-main-wrapper {
        display: block; /* Desativa o grid para evitar quebras estranhas */
        border: none;   /* Remove a borda externa no mobile para não parecer um 'caixote' */
    }

    .footer-section {
        padding: 30px 0; /* Padding vertical apenas, sem bordas laterais */
        border-right: none;
        border-bottom: 1px solid var(--grid-border); /* Borda apenas embaixo para separar seções */
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    /* Ajuste de Tipografia */
    .footer-logo {
        font-size: 1.4rem; /* Um pouco menor para não quebrar linha */
        margin-bottom: 15px;
    }

    

    /* Facilitar o clique (Touch Target) */
    .footer-nav a {
        padding: 8px 0; /* Aumenta a área de toque */
        font-size: 1rem; /* Texto levemente maior para leitura no celular */
    }

    /* Terminal Bottom: Deixa de ser lado a lado e empilha */
    .footer-terminal {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
        text-align: center;
        border: none;
        border-top: 1px solid var(--grid-border);
    }

    .terminal-right {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .terminal-right a {
        margin-left: 0;
    }

    /* Ajuste do Badge THOT */
    .thot-badge {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

/* Ajuste específico para telas muito pequenas (iPhone SE, etc) */
@media (max-width: 350px) {
    .footer-logo {
        font-size: 1.2rem;
    }
    
    .terminal-right {
        flex-direction: column;
        gap: 10px;
    }
}
.social-grid {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--grid-border);
    color: var(--text-muted); /* Cor base que você já definiu */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
}

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

/* Efeito Hover Estilo Tech */
.social-icon:hover {
    color: var(--tech-blue); /* A cor azul que você já usa no rodapé */
    border-color: var(--tech-blue);
    background: rgba(0, 122, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.2);
}

/* Footer refresh (compatível com a estética da página) */
.site-footer {
  background: linear-gradient(180deg, var(--hero) 0%, var(--hero-deep) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 80px;
  padding: 56px 0 22px;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
  text-align: left;
}

.footer-main-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 60px rgba(12, 31, 61, 0.25);
}

.footer-section {
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section:last-child {
  border-right: none;
}

.tech-tag,
.section-title-footer,
.nav-number,
.footer-terminal {
  font-family: "Sora", sans-serif;
}

.tech-tag {
  color: rgba(255, 255, 255, 0.72);
}

.footer-logo span {
  color: rgba(255, 255, 255, 0.64);
}

.section-title-footer {
  color: rgba(255, 255, 255, 0.68);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--brand);
  transform: none;
}

.thot-badge {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
}

.footer-terminal {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
}

.terminal-right a {
  color: rgba(255, 255, 255, 0.7);
}

.terminal-right a:hover,
.terminal-right a:focus-visible {
  color: #fff;
}

.social-icon {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
}

.social-icon:hover {
  color: #fff;
  border-color: rgba(68, 185, 255, 0.7);
  background: rgba(68, 185, 255, 0.12);
  box-shadow: 0 8px 18px rgba(68, 185, 255, 0.18);
}
