/* =========================================================
   SANTANA TECH - HOME FINAL
   Arquivo independente. Não depende do style.css antigo.
   ========================================================= */

:root {
  --navy-950: #04111d;
  --navy-900: #071b2d;
  --navy-850: #0a253b;
  --navy-800: #0d304b;
  --blue: #2e7df1;
  --cyan: #20c7c9;
  --teal: #1bb79e;
  --purple: #7668f4;
  --green: #32d39a;
  --orange: #ffb86a;
  --ink: #102438;
  --muted: #63788d;
  --border: rgba(13, 48, 75, .12);
  --surface: #f4f8fb;
  --white: #ffffff;
  --shadow-sm: 0 12px 35px rgba(6, 30, 48, .07);
  --shadow-md: 0 22px 60px rgba(6, 30, 48, .12);
  --shadow-lg: 0 35px 90px rgba(2, 17, 30, .24);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 10px;
  background: #fff;
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
}

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(10, 45, 69, .08);
  backdrop-filter: blur(18px);
}

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

.brand {
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 158px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  text-decoration: none;
  color: #345064;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transition: right .22s ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  padding: 12px 17px;
  border-radius: 10px;
  background: var(--navy-900);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: #fff;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 999px;
}

.mobile-nav {
  position: fixed;
  inset: 78px 0 auto 0;
  max-height: calc(100vh - 78px);
  overflow-y: auto;
  padding: 20px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.mobile-nav a {
  display: block;
  padding: 14px 5px;
  border-bottom: 1px solid rgba(10, 44, 67, .08);
  text-decoration: none;
  color: #27465c;
  font-weight: 700;
}

.mobile-nav .mobile-nav-cta {
  margin-top: 12px;
  padding: 14px;
  border: 0;
  border-radius: 10px;
  background: var(--navy-900);
  color: #fff;
  text-align: center;
}

/* Global */

.section {
  padding: 96px 0;
}

.section-light {
  background: var(--surface);
}

.section-white {
  background: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #168b9b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #72e2df;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 46px;
}

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

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.content-column h2,
.contact-copy h2 {
  margin: 15px 0 18px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.09;
  letter-spacing: -.035em;
}

.section-heading p,
.content-column > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #0c344f, #0a2438);
  color: #fff;
  box-shadow: 0 16px 36px rgba(6, 40, 65, .18);
}

.button-secondary {
  border: 1px solid rgba(16, 67, 98, .14);
  background: rgba(255, 255, 255, .78);
  color: #173e57;
}

.button-light {
  background: #fff;
  color: var(--navy-900);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .14);
}

/* Hero */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 86px 0 92px;
  background:
    linear-gradient(135deg, #f9fcff 0%, #edf6fb 52%, #f8fbfd 100%);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .34;
  background-image:
    linear-gradient(rgba(15, 91, 123, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 91, 123, .06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(15px);
}

.hero-glow-a {
  width: 540px;
  height: 540px;
  right: -160px;
  top: -100px;
  background: radial-gradient(circle, rgba(32, 199, 201, .18), transparent 67%);
}

.hero-glow-b {
  width: 480px;
  height: 480px;
  left: 28%;
  bottom: -260px;
  background: radial-gradient(circle, rgba(46, 125, 241, .13), transparent 68%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, .92fr);
  align-items: center;
  gap: 76px;
}

.hero-content h1 {
  max-width: 720px;
  margin: 18px 0 24px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(48px, 5.4vw, 72px);
  line-height: 1.01;
  letter-spacing: -.052em;
  color: #0a2032;
}

.hero-content h1 span {
  color: transparent;
  background: linear-gradient(100deg, #0a91a4, #2c79e7 52%, #655fe2);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 670px;
  margin: 0;
  color: #597085;
  font-size: 17px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.hero-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(19, 87, 118, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #385d72;
  font-size: 11px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(118, 197, 214, .18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(32, 199, 201, .17), transparent 31%),
    linear-gradient(150deg, #061827, #0b3049 58%, #0a2539);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.hero-visual::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 104, 244, .2), transparent 68%);
}

.visual-topbar,
.panel-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.visual-topbar small,
.panel-header small {
  display: block;
  color: #72ddd8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.visual-topbar strong,
.panel-header strong {
  display: block;
  margin-top: 5px;
  font-size: 17px;
}

.online-status,
.panel-header > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(89, 225, 201, .22);
  border-radius: 999px;
  background: rgba(65, 213, 182, .08);
  color: #baf3e6;
  font-size: 9px;
  font-weight: 800;
}

.online-status i,
.panel-header > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ce1af;
  box-shadow: 0 0 0 5px rgba(76, 225, 175, .1);
}

.visual-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  align-items: center;
  margin: 34px 0 26px;
}

.ai-core {
  position: relative;
  width: 175px;
  height: 175px;
  display: grid;
  place-content: center;
}

.ai-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(111, 225, 225, .22);
}

.ai-ring-one {
  animation: spin 18s linear infinite;
  border-top-color: #40d1c7;
  border-right-color: #3886ea;
}

.ai-ring-two {
  inset: 18px;
  animation: spinReverse 13s linear infinite;
  border-bottom-color: #826cff;
}

.ai-center {
  position: relative;
  z-index: 2;
  width: 108px;
  height: 108px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 255, 255, .15), transparent 35%),
    linear-gradient(135deg, #0b6681, #1c4d86);
  box-shadow: 0 0 55px rgba(35, 191, 198, .21);
}

.ai-center span {
  font: 800 30px/1 Manrope, sans-serif;
}

.ai-center small {
  margin-top: 6px;
  color: #abd4df;
  font-size: 9px;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }

.visual-flow {
  display: grid;
  gap: 9px;
}

.visual-flow article {
  display: grid;
  grid-template-columns: 34px 1fr 10px;
  align-items: center;
  gap: 11px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 13px;
  background: rgba(255, 255, 255, .045);
}

.visual-flow article > i {
  width: 31px;
  height: 31px;
  display: grid;
  place-content: center;
  border-radius: 9px;
  background: rgba(74, 182, 203, .11);
  color: #67d6d3;
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
}

.visual-flow span {
  display: block;
  color: #6f9aaa;
  font-size: 8px;
  letter-spacing: .11em;
  font-weight: 800;
}

.visual-flow strong {
  display: block;
  margin-top: 3px;
  font-size: 12px;
}

.visual-flow b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-ok { background: #42daab; }
.status-running {
  background: #ffbd6b;
  box-shadow: 0 0 0 5px rgba(255, 189, 107, .08);
}
.status-wait { background: #627f91; }

.visual-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.visual-bottom article {
  padding: 13px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .065);
}

.visual-bottom span {
  color: #6f99ab;
  font-size: 8px;
  letter-spacing: .1em;
  font-weight: 800;
}

.visual-bottom strong {
  display: block;
  margin: 5px 0 9px;
  font-size: 10px;
}

.mini-progress {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.mini-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), #5688ef);
}

.visual-disclaimer {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 16px;
  color: #698fa0;
  font-size: 8px;
}

/* Trust */

.trust-bar {
  padding: 25px 0;
  background: var(--navy-900);
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  min-height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 25px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  border: 0;
}

.trust-grid strong {
  font-family: Manrope, sans-serif;
  font-size: 18px;
}

.trust-grid span {
  margin-top: 3px;
  color: #84a5b6;
  font-size: 10px;
}

/* Specialty cards */

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.specialty-card {
  min-height: 365px;
  display: flex;
  flex-direction: column;
  padding: 29px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.specialty-card:hover {
  transform: translateY(-6px);
  border-color: rgba(32, 159, 177, .3);
  box-shadow: var(--shadow-md);
}

.specialty-card.featured-card {
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(32, 199, 201, .18), transparent 35%),
    linear-gradient(145deg, #071d30, #0b3b58);
  box-shadow: var(--shadow-md);
}

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

.card-kicker {
  color: #208fa0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.featured-card .card-kicker {
  color: #72ddd8;
}

.card-arrow {
  color: #7292a3;
  font-size: 18px;
}

.card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-content: center;
  margin-top: 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(32, 199, 201, .13), rgba(46, 125, 241, .12));
  color: #16899c;
  font: 800 12px Manrope, sans-serif;
}

.featured-card .card-icon {
  background: rgba(255, 255, 255, .07);
  color: #75e2dc;
}

.specialty-card h3 {
  margin: 20px 0 11px;
  font: 800 22px/1.2 Manrope, sans-serif;
}

.specialty-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.featured-card p {
  color: #b8ced9;
}

.specialty-card ul {
  list-style: none;
  margin: 17px 0 0;
  padding: 0;
}

.specialty-card li {
  position: relative;
  padding: 6px 0 6px 20px;
  color: #c4d7df;
  font-size: 11px;
}

.specialty-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ed6b5;
  font-weight: 900;
}

.card-link {
  margin-top: auto;
  padding-top: 24px;
  color: #178ba0;
  font-size: 11px;
}

.featured-card .card-link {
  color: #74dfdc;
}

/* Reputation */

.reputation-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(32, 199, 201, .14), transparent 28%),
    linear-gradient(135deg, #061827, #0a344e);
  color: #fff;
}

.two-column {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 76px;
}

.content-column > p {
  max-width: 620px;
}

.reputation-section .content-column > p {
  color: #a8c1cf;
}

.feature-list {
  display: grid;
  gap: 15px;
  margin-top: 31px;
}

.feature-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
}

.feature-list i {
  width: 39px;
  height: 39px;
  display: grid;
  place-content: center;
  border-radius: 11px;
  background: rgba(62, 203, 195, .1);
  color: #66dcd7;
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
}

.feature-list span {
  color: #a8c1cf;
  font-size: 13px;
  line-height: 1.6;
}

.feature-list strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
}

.inline-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 31px;
}

.text-link-light {
  color: #76dcd7;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.reputation-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 25px 75px rgba(0, 0, 0, .16);
}

.reputation-score-row {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 22px;
  align-items: center;
  margin: 29px 0 23px;
}

.score-circle {
  width: 120px;
  height: 120px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #0a2b42 57%, transparent 59%),
    conic-gradient(#31cfbd 0 82%, rgba(255, 255, 255, .1) 82% 100%);
}

.score-circle strong {
  font: 800 34px/1 Manrope, sans-serif;
}

.score-circle span {
  margin-top: 5px;
  color: #8aabb9;
  font-size: 9px;
}

.positive-label {
  color: #5fe0b4;
  font-size: 10px;
  font-weight: 800;
}

.reputation-score-row h3 {
  margin: 8px 0;
  font-size: 17px;
}

.reputation-score-row p {
  margin: 0;
  color: #86a7b7;
  font-size: 10px;
  line-height: 1.6;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric-row article {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 13px;
  background: rgba(255, 255, 255, .035);
}

.metric-row span {
  color: #6f96a8;
  font-size: 8px;
  letter-spacing: .1em;
  font-weight: 800;
}

.metric-row strong {
  display: block;
  margin: 7px 0 3px;
  font-size: 17px;
}

.metric-row small {
  color: #7799a8;
  font-size: 8px;
}

.insight-box {
  margin-top: 11px;
  padding: 18px;
  border: 1px solid rgba(79, 182, 208, .13);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(38, 130, 173, .12), rgba(40, 191, 184, .08));
}

.insight-box > span {
  color: #6cd8d5;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}

.insight-box p {
  margin: 9px 0 13px;
  color: #cae0e8;
  font-size: 11px;
  line-height: 1.65;
}

.insight-box div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.insight-box b {
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: #90b6c5;
  font-size: 8px;
}

/* Systems */

.dark-copy h2 {
  color: var(--ink);
}

.system-visual {
  display: flex;
  justify-content: center;
}

.system-window {
  width: 100%;
  max-width: 560px;
  overflow: hidden;
  border: 1px solid rgba(15, 57, 84, .13);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.window-bar {
  height: 47px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  background: #f2f6f8;
  border-bottom: 1px solid rgba(12, 48, 73, .08);
}

.window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b6c8d0;
}

.window-bar small {
  margin-left: 8px;
  color: #8299a7;
  font-size: 9px;
}

.system-layout {
  min-height: 385px;
  display: grid;
  grid-template-columns: 72px 1fr;
}

.system-layout aside {
  padding: 25px 17px;
  background: var(--navy-900);
}

.system-layout aside b {
  display: block;
  height: 8px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
}

.system-layout aside b:first-child {
  background: #38c6be;
}

.system-dashboard {
  padding: 26px;
  background: #f7fafc;
}

.system-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.system-title span {
  width: 140px;
  height: 13px;
  border-radius: 999px;
  background: #c5d7df;
}

.system-title small {
  width: 60px;
  height: 13px;
  border-radius: 999px;
  background: #dce7ec;
}

.system-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.system-kpis i {
  height: 67px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(10, 43, 67, .07);
}

.system-chart {
  height: 145px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 15px;
  padding: 20px;
  border-radius: 13px;
  background: #fff;
}

.system-chart span {
  flex: 1;
  min-height: 20%;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(#42c9c1, #4786e8);
}

.system-chart span:nth-child(1) { height: 42%; }
.system-chart span:nth-child(2) { height: 65%; }
.system-chart span:nth-child(3) { height: 52%; }
.system-chart span:nth-child(4) { height: 80%; }
.system-chart span:nth-child(5) { height: 61%; }
.system-chart span:nth-child(6) { height: 90%; }

.system-table {
  margin-top: 15px;
  padding: 15px;
  border-radius: 13px;
  background: #fff;
}

.system-table i {
  display: block;
  height: 7px;
  margin: 10px 0;
  border-radius: 999px;
  background: #e2ebef;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 18px;
  margin: 28px 0 31px;
}

.check-grid span {
  position: relative;
  padding-left: 24px;
  color: #456277;
  font-size: 12px;
}

.check-grid span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #19aa91;
  font-weight: 900;
}

/* AI */

.ai-section {
  background: var(--surface);
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ai-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.ai-card.large {
  grid-row: span 2;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(118, 104, 244, .2), transparent 35%),
    linear-gradient(145deg, #071d30, #103b59);
  box-shadow: var(--shadow-md);
}

.ai-card > span {
  margin-top: 24px;
  color: #1b8b9e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.ai-card.large > span {
  color: #72ddd8;
}

.ai-card h3 {
  margin: 9px 0 11px;
  font: 800 20px/1.25 Manrope, sans-serif;
}

.ai-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.ai-card.large p {
  color: #b7ced9;
}

.ai-card a {
  margin-top: auto;
  padding-top: 24px;
  color: #72ddd8;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
}

/* Page links */

.links-section {
  background: #fff;
}

.page-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.page-links-grid a {
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  gap: 14px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.page-links-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(27, 158, 176, .27);
  box-shadow: var(--shadow-sm);
}

.page-links-grid > a > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-content: center;
  border-radius: 11px;
  background: #eaf7f8;
  color: #148b9a;
  font-size: 10px;
  font-weight: 800;
}

.page-links-grid strong {
  display: block;
  font-size: 13px;
}

.page-links-grid small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.page-links-grid i {
  color: #168a9c;
  font-style: normal;
  font-weight: 800;
}

/* Process */

.process-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(32, 199, 201, .08), transparent 30%),
    var(--surface);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid article {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
}

.process-grid i {
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  border-radius: 12px;
  background: #eaf7f8;
  color: #148b9a;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
}

.process-grid span {
  display: block;
  margin-top: 27px;
  color: #168b9c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.process-grid h3 {
  margin: 8px 0 10px;
  font-size: 17px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

/* Contact */

.contact-section {
  padding: 95px 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(32, 199, 201, .17), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(118, 104, 244, .12), transparent 30%),
    linear-gradient(140deg, #061827, #0a3550);
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 75px;
  align-items: center;
}

.contact-copy p {
  max-width: 570px;
  color: #a8c2cf;
  line-height: 1.8;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin: 27px 0 31px;
}

.contact-points span {
  color: #c4d8e1;
  font-size: 12px;
}

.contact-points i {
  margin-right: 9px;
  color: #59dbb7;
  font-style: normal;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label > span {
  color: #3d5b70;
  font-size: 10px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(13, 48, 75, .13);
  border-radius: 11px;
  outline: none;
  background: #f9fbfc;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input,
.contact-form select {
  height: 47px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 125px;
  resize: vertical;
  padding: 13px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #2a9eb0;
  box-shadow: 0 0 0 4px rgba(42, 158, 176, .1);
}

.contact-form button {
  min-height: 51px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(135deg, #0a344f, #0a2236);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

/* Footer */

.site-footer {
  padding: 55px 0 22px;
  background: #f4f7f9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.15fr 1fr;
  gap: 42px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-brand img {
  width: 150px;
}

.footer-brand p {
  max-width: 330px;
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
  margin: 0;
  color: #738898;
  text-decoration: none;
  font-size: 11px;
  line-height: 1.65;
}

.footer-grid strong {
  margin-bottom: 7px;
  font-size: 12px;
}

.footer-grid a:hover {
  color: #168b9c;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(11, 47, 71, .09);
}

.footer-bottom p {
  margin: 0;
  color: #8b9ca8;
  font-size: 10px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 54px;
  height: 54px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 16px 35px rgba(25, 121, 66, .28);
}

.whatsapp-float img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

/* Responsive */

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-layout,
  .two-column,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 52px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content .eyebrow,
  .hero-buttons,
  .hero-tags {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-visual {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .specialty-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reputation-section .content-column {
    text-align: center;
  }

  .reputation-section .content-column .eyebrow,
  .inline-actions {
    justify-content: center;
  }

  .reputation-section .content-column > p {
    margin-inline: auto;
  }

  .feature-list {
    max-width: 650px;
    margin-inline: auto;
    margin-top: 31px;
    text-align: left;
  }

  .system-visual {
    order: 2;
  }

  .ai-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-card.large {
    grid-row: auto;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

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

  .brand img {
    width: 138px;
  }

  .header-cta {
    display: none;
  }

  .mobile-nav {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding: 67px 0 72px;
  }

  .hero-content h1 {
    font-size: clamp(40px, 12vw, 55px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-buttons {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    padding: 19px;
  }

  .visual-main {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .visual-flow {
    width: 100%;
  }

  .visual-bottom,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .trust-grid > div {
    padding: 14px;
    border-right: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .trust-grid > div:first-child {
    padding-left: 14px;
  }

  .specialty-grid,
  .ai-grid,
  .page-links-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .specialty-card {
    min-height: 340px;
  }

  .two-column,
  .contact-layout {
    gap: 45px;
  }

  .reputation-score-row {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

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

  .system-layout {
    grid-template-columns: 52px 1fr;
  }

  .system-dashboard {
    padding: 17px;
  }

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

  .system-kpis i {
    height: 44px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 15px;
    bottom: 15px;
  }
}

@media (max-width: 430px) {
  .visual-topbar,
  .panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-links-grid a {
    grid-template-columns: 38px 1fr;
  }

  .page-links-grid a > i {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* =========================================================
   CTAs COM DESTAQUE VISUAL
   Pulso, leve movimento e brilho para chamar atenção.
   ========================================================= */
@keyframes attentionPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(32, 199, 201, .34);
  }
  45% {
    transform: translateY(-3px) scale(1.035);
    box-shadow: 0 0 0 10px rgba(32, 199, 201, 0);
  }
  65% {
    transform: translateY(1px) scale(.995);
  }
}

@keyframes attentionGlow {
  0% { left: -85%; }
  42%, 100% { left: 135%; }
}

.pulse-attention {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  animation: attentionPulse 1.9s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.pulse-attention::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -30%;
  left: -85%;
  width: 40%;
  height: 160%;
  transform: rotate(18deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.45),
    transparent
  );
  animation: attentionGlow 2.7s ease-in-out infinite;
  pointer-events: none;
}

.pulse-attention:hover,
.pulse-attention:focus-visible {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.045);
}

@media (prefers-reduced-motion: reduce) {
  .pulse-attention,
  .pulse-attention::after {
    animation: none !important;
  }
}


.nav-dashboard {
  padding: 10px 13px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0a8fa2, #2e73e6);
  color: #fff !important;
  box-shadow: 0 10px 26px rgba(20, 133, 167, .2);
}
.nav-dashboard::after {
  height: 160%;
}
.mobile-dashboard {
  margin: 10px 0;
  padding: 13px !important;
  border: 0 !important;
  border-radius: 10px;
  background: linear-gradient(135deg, #0a8fa2, #2e73e6);
  color: #fff !important;
  text-align: center;
}


/* =========================================================
   CABEÇALHO COMPACTO + BOTÃO DE AGENDA
   ========================================================= */
.site-header .header-inner {
  min-height: 60px !important;
}
.site-header .brand img {
  width: 132px !important;
}
.site-header .desktop-nav {
  gap: 17px !important;
}
.site-header .desktop-nav a {
  font-size: 11px !important;
}
.site-header .header-actions {
  gap: 8px !important;
}
.site-header .header-cta,
.site-header .nav-dashboard {
  min-height: 38px !important;
  padding: 0 12px !important;
  border-radius: 9px !important;
  font-size: 9px !important;
}
.agenda-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
}
.agenda-whatsapp-icon {
  width: 17px !important;
  height: 17px !important;
  object-fit: contain !important;
  flex: 0 0 17px !important;
}
.mobile-nav {
  inset: 60px 0 auto 0 !important;
  max-height: calc(100vh - 60px) !important;
}
@media (max-width: 760px) {
  .site-header .header-inner {
    min-height: 56px !important;
  }
  .site-header .brand img {
    width: 122px !important;
  }
  .mobile-nav {
    top: 56px !important;
    max-height: calc(100vh - 56px) !important;
  }
}

/* =========================================================
   AJUSTES DE NAVEGAÇÃO, DASHBOARD, FORMULÁRIO E WHATSAPP
   ========================================================= */
.site-header .nav-dashboard,
.mobile-dashboard {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  text-transform: none !important;
  line-height: 1.1 !important;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}

.contact-form .form-submit {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 14px 30px rgba(4, 17, 29, .18);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.contact-form .form-submit:hover,
.contact-form .form-submit:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 36px rgba(4, 17, 29, .23);
}

.form-submit-whatsapp {
  background: linear-gradient(135deg, #20bd67, #128c4f) !important;
}

.form-submit-email {
  background: linear-gradient(135deg, #2e7df1, #185fc5) !important;
}

/* Mantém o círculo original e aumenta somente o símbolo interno. */
.whatsapp-float img {
  width: 30px !important;
  height: 30px !important;
  object-fit: contain;
}

@media (max-width: 560px) {
  .form-actions {
    grid-template-columns: 1fr;
  }
}
