.elementor-534 .elementor-element.elementor-element-eeaeff2{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-534 .elementor-element.elementor-element-eeaeff2.e-con{--flex-grow:0;--flex-shrink:0;}body.elementor-page-534{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-534 .elementor-element.elementor-element-eeaeff2{--width:100.373%;}}/* Start custom CSS */:root {
  --navy: #00113A;
  --navy-dark: #000D2E;
  --navy-light: #0A1E52;
  --blue: #4889F4;
  --blue-light: #6EA0F7;
  --blue-dark: #2D6AE0;
  --red: #EB493B;
  --red-dark: #D03020;
  --yellow: #FBBE0D;
  --yellow-dark: #E0A800;
  --white: #FFFFFF;
  --off-white: #F8FAFF;
  --gray-50: #F5F7FB;
  --gray-100: #E8ECF4;
  --gray-200: #CDD3E2;
  --gray-400: #8A94AD;
  --gray-600: #4E5A74;
  --text: #1A2340;
  --text-muted: #5A6480;
  --font: 'Inter', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 17, 58, .08);
  --shadow-md: 0 4px 16px rgba(0, 17, 58, .12);
  --shadow-lg: 0 10px 40px rgba(0, 17, 58, .18);
  --shadow-xl: 0 20px 60px rgba(0, 17, 58, .24);
  --shadow-blue: 0 8px 32px rgba(72, 137, 244, .35);
  --shadow-red: 0 8px 32px rgba(235, 73, 59, .4);
  --shadow-yel: 0 8px 32px rgba(251, 190, 13, .4);
  --trs: 250ms ease;
  --trs-spring: 300ms cubic-bezier(.34, 1.56, .64, 1);
  --section-py: 60px;
}

/* 2. RESET & ICON FALLBACK */
.material-icons {
  font-family: 'Material Icons' !important;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
  position: relative;
}

body {
  font-family: var(--font) !important;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img,
video,
.container,
section,
div,
main,
header,
footer {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
textarea,
li,
span:not(.material-icons),
div,
label {
  font-family: var(--font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font) !important;
}

.divider-red {
  display: block;
  width: 100px;
  height: 2.5px;
  background: var(--red);
  margin: 1.5rem auto !important;
  border: none;
  border-radius: var(--radius-full);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* 3. LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.br-desktop {
  display: none;
}

@media (min-width: 768px) {
  .br-desktop {
    display: block;
  }
}

/* 4. LABELS & TITLES */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(72, 137, 244, .12);
  padding: .2rem .7rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(72, 137, 244, .25);
  margin-bottom: 1rem;
}

.section-label--light {
  color: var(--blue-light);
  background: rgba(72, 137, 244, .15);
  border-color: rgba(72, 137, 244, .3);
}

.section-title {
  font-size: clamp(1.85rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 2rem;
}

.section-title--dark {
  color: var(--navy);
}

.section-title--white {
  color: var(--white);
}

.text-accent-blue {
  color: var(--blue);
}

.text-accent-yellow {
  color: var(--yellow);
}

/* 5. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .01em;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--trs-spring);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: normal;
  text-align: center;
  padding: .75rem 2rem;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .15);
  opacity: 0;
  transition: opacity 150ms ease;
  border-radius: inherit;
}

.btn:hover::before {
  opacity: 1;
}

.btn:active {
  transform: scale(.97);
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn--primary:hover {
  background: var(--red-dark);
  box-shadow: 0 12px 40px rgba(235, 73, 59, .5);
  transform: translateY(-2px);
}

.btn--yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: var(--shadow-yel);
}

.btn--yellow:hover {
  background: var(--yellow-dark);
  box-shadow: 0 12px 40px rgba(251, 190, 13, .5);
  transform: translateY(-2px);
}

.btn--large {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

.btn--full {
  width: 100%;
}

.btn__icon {
  font-size: 20px;
}

.btn__loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

.btn--loading .btn__text {
  opacity: 0;
}

.btn--loading .btn__loader {
  display: block;
}

/* 6. NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 17, 58, 0);
  transition: background .4s ease, box-shadow .4s ease;
}

.navbar.scrolled {
  background: rgba(0, 13, 46, .96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, .3);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 2rem;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar__link {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
  transition: color 150ms ease;
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--trs);
}

.navbar__link:hover {
  color: var(--white);
}

.navbar__link:hover::after {
  transform: scaleX(1);
}

.navbar__cta-btn {
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--yellow);
  padding: .4rem 1.25rem;
  border-radius: var(--radius-full);
  transition: all var(--trs-spring);
  box-shadow: var(--shadow-yel);
}

.navbar__cta-btn:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

.navbar__hamburger {
  display: none;
  color: white;
  padding: .5rem;
}

.navbar__hamburger .material-icons {
  font-size: 28px;
}

/* 7. HERO */
.hero {
  position: relative;
  min-height: 100dvh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, #0C1E6B 100%);
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(72, 137, 244, .2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(235, 73, 59, .1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__bg-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
  animation: floatParticle 8s ease-in-out infinite;
}

.particle--1 {
  width: 300px;
  height: 300px;
  background: var(--blue);
  top: 10%;
  right: 5%;
}

.particle--2 {
  width: 150px;
  height: 150px;
  background: var(--yellow);
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.particle--3 {
  width: 80px;
  height: 80px;
  background: var(--red);
  top: 60%;
  right: 20%;
  animation-delay: 4s;
}

.particle--4 {
  width: 200px;
  height: 200px;
  background: var(--blue);
  top: 40%;
  left: 15%;
  animation-delay: 1s;
  opacity: .07;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 5rem;
}

.hero__seo-h2 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 1rem;
  opacity: .85;
}

.hero__h1 {
  font-family: var(--font) !important;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: heroFadeUp .8s ease both;
}

.hero__highlight {
  display: block;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 2rem;
  animation: heroFadeUp .8s .15s ease both;
}

.hero__sub strong {
  color: var(--white);
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: heroFadeUp .8s .3s ease both;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: .75rem;
  animation: heroFadeUp .8s .45s ease both;
}

.hero__avatars {
  display: flex;
  align-items: center;
}

.hero__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.15);
  margin-left: -20px;
  background: rgba(255, 255, 255, 0.1);
  /* Subtle background for clarity */
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all var(--trs);
  position: relative;
}

.hero__avatar:first-child {
  margin-left: 0;
}

.hero__avatar:hover {
  transform: translateY(-4px);
  z-index: 10;
  border-color: var(--blue);
}

.hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  /* Breathing room for the logo */
}

.hero__avatar--plus {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0 !important;
}

.hero__avatar--plus:hover {
  border-color: var(--yellow);
}

.hero__social-text {
  font-size: .875rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.4;
}

.hero__social-text strong {
  color: var(--yellow);
}

/* Dashboard mock */
.hero__visual {
  animation: heroFadeRight .9s .2s ease both;
}

.hero__dashboard-mock {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  padding: 1.25rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .4);
}

.dashboard-mock__header {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.dashboard-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard-dot--red {
  background: #FF5F57;
}

.dashboard-dot--yellow {
  background: #FEBC2E;
}

.dashboard-dot--green {
  background: #28C840;
}

.dashboard-mock__title {
  font-size: .7rem;
  color: rgba(255, 255, 255, .5);
  margin-left: .5rem;
  letter-spacing: .05em;
}

.dashboard-mock__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.metric-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: background var(--trs);
}

.metric-card:hover {
  background: rgba(255, 255, 255, .09);
}

.metric-card__label {
  font-size: .65rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .15rem;
}

.metric-card__value {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.metric-card__value--up {
  color: #4ADE80;
}

.metric-card__value--down {
  color: var(--yellow);
}

.metric-card__trend {
  font-size: .6rem;
  color: rgba(255, 255, 255, .5);
}

.dashboard-mock__chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 70px;
  padding-top: .75rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.chart-bar {
  flex: 1;
  background: rgba(72, 137, 244, .4);
  border-radius: 4px 4px 0 0;
  animation: barGrow 1s ease both;
}

.chart-bar--highlight {
  background: var(--blue);
}

/* 8. AGITAÇÃO */
.agitacao {
  background: var(--off-white);
  padding-block: var(--section-py);
  text-align: center;
}

.agitacao__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all var(--trs);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(30px);
}

.pain-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transform: scaleX(0);
  transition: transform var(--trs);
}

.pain-card:hover::before {
  transform: scaleX(1);
}

.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.pain-card__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(235, 73, 59, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background var(--trs);
}

.pain-card:hover .pain-card__icon-wrap {
  background: rgba(235, 73, 59, .18);
}

.pain-card__icon {
  font-size: 28px;
  color: var(--red);
}

.pain-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .5rem;
}

.pain-card__desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.agitacao__transition {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 680px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all .5s ease;
}

.agitacao__transition.visible {
  opacity: 1;
  transform: translateY(0);
}

.agitacao__transition-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.agitacao__transition-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-600);
  font-style: italic;
  text-align: center;
  flex-shrink: 0;
  max-width: 480px;
}

.agitacao__transition-text strong {
  color: var(--navy);
  font-style: normal;
}

/* 9. SOLUÇÃO */
.solucao {
  background: var(--navy);
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}

.solucao__bg-shape {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(72, 137, 244, .15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.solucao__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solucao__copy {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 1.5rem;
}

.solucao__copy strong {
  color: var(--white);
}

.solucao__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2rem;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(72, 137, 244, .15);
  border: 1px solid rgba(72, 137, 244, .3);
  border-radius: var(--radius-full);
  padding: .4rem 1rem;
  transition: background var(--trs);
}

.badge-chip:hover {
  background: rgba(72, 137, 244, .25);
}

.badge-chip__icon {
  font-size: 16px;
  color: var(--blue-light);
}

.authority-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-xl);
  padding: 2rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl);
}

.authority-card__top {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.authority-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}

.authority-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.authority-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: rgba(255, 255, 255, .8);
}

.authority-item .material-icons {
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
}

/* Reveal */
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 10. ENGENHARIA */
.engenharia {
  background: var(--white);
  padding-block: var(--section-py);
  text-align: center;
}

.engenharia__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all var(--trs);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(30px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 17, 58, .03), rgba(72, 137, 244, .05));
  opacity: 0;
  transition: opacity var(--trs);
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(72, 137, 244, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background var(--trs);
}

.service-card:hover .service-card__icon-wrap {
  background: var(--blue);
}

.service-card__icon {
  font-size: 28px;
  color: var(--blue);
  transition: color var(--trs);
}

.service-card:hover .service-card__icon {
  color: white;
}

.service-card__number {
  font-size: .7rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: .1em;
  margin-bottom: .4rem;
  opacity: .7;
}

.service-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .75rem;
  line-height: 1.3;
}

.service-card__desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-card__desc strong {
  color: var(--navy);
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.service-card__features li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .8rem;
  color: var(--text-muted);
}

.service-card__features .material-icons {
  font-size: 16px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}

/* 11. PROVA SOCIAL */
.prova-social {
  background: var(--navy);
}

.prova-social__top {
  padding-block: var(--section-py);
  text-align: center;
}

.prova-social__copy {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .7);
  max-width: 600px;
  margin: 0 auto 4rem;
}

.stats-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto 4rem;
}

.stat-item {
  flex: 1;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-item__number {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-item__label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}

.stat-separator {
  width: 1px;
  background: rgba(255, 255, 255, .1);
  align-self: stretch;
}

/* Testimonials */
.prova-social__testimonials {
  background: var(--off-white);
  padding-block: var(--section-py);
}

.testimonials-slider {
  display: flex !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding-bottom: 2rem;
  margin-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--trs);
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: center;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--blue);
  opacity: .15;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  font-size: 1.1rem;
  color: var(--yellow);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card__text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: .7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.testimonial-card__role {
  font-size: .75rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: .75rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: all var(--trs);
  padding: 0;
}

.slider-dot--active,
.slider-dot:hover {
  background: var(--blue);
  transform: scale(1.3);
}

/* 12. FORMULÁRIO */
.formulario {
  background: var(--gray-50);
  padding-block: var(--section-py);
}

.formulario__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.formulario__copy {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.formulario__copy strong {
  color: var(--navy);
}

.formulario__benefits {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 2rem;
}

.formulario__benefits li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text-muted);
}

.formulario__benefits .material-icons {
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}

.formulario__form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
}

.form-input-wrap {
  position: relative;
}

.form-input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--gray-400);
  pointer-events: none;
  transition: color var(--trs);
}

.form-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--trs);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(72, 137, 244, .15);
}

.form-input-wrap:focus-within .form-input-icon {
  color: var(--blue);
}

.form-input.error {
  border-color: var(--red);
  background: rgba(235, 73, 59, .04);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%238A94AD'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-error {
  font-size: .75rem;
  color: var(--red);
  font-weight: 500;
  min-height: 16px;
}

.form-privacy {
  font-size: .75rem;
  color: var(--gray-400);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.form-success__icon {
  font-size: 64px;
  color: #22C55E;
  animation: bounceIn .5s var(--trs-spring) both;
}

.form-success__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}

.form-success__text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 13. FOOTER */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  align-items: start;
  padding-block: 3rem;
}

.footer__tagline {
  font-size: .875rem;
  color: rgba(255, 255, 255, .4);
  margin-top: .75rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer__links-title {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .4);
  margin-bottom: .4rem;
}

.footer__link {
  font-size: .875rem;
  color: rgba(255, 255, 255, .6);
  transition: color 150ms ease;
}

.footer__link:hover {
  color: var(--blue-light);
}

.footer__cta-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__cta-text {
  font-size: .875rem;
  color: rgba(255, 255, 255, .6);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  padding-block: 1.25rem;
  font-size: .75rem;
  color: rgba(255, 255, 255, .35);
}

/* 15. ANIMATIONS */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatParticle {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
    transform-origin: bottom;
  }

  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.15);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

/* 16. RESPONSIVE */
@media (max-width: 1024px) {
  :root {
    --section-py: 60px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: 4rem;
  }

  .hero__cta-group,
  .hero__social-proof {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .agitacao__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solucao__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .solucao__visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .formulario__inner {
    grid-template-columns: 1fr;
  }

  .formulario__form-wrap {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .testimonials-slider {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 40px;
  }

  .container {
    padding-inline: 1.25rem;
  }

  /* Fix horizontal scroll */
  body,
  html {
    overflow-x: hidden !important;
    position: relative;
  }

  /* Navbar */
  .navbar__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    box-shadow: var(--shadow-xl);
    text-align: center;
  }

  .navbar__nav.open {
    display: flex;
  }

  .navbar__hamburger {
    display: flex;
  }

  /* Hero Mobile */
  .hero {
    text-align: center;
    min-height: auto;
    padding-block: 100px 50px;
    overflow: hidden;
  }

  .hero__bg-particles {
    display: none !important;
  }

  .hero::before,
  .hero::after {
    display: none !important;
  }

  .hero__h1 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    padding-inline: 0.5rem;
  }

  .hero__sub {
    font-size: 0.95rem;
    margin-inline: auto;
    max-width: 100%;
    padding-inline: 0.5rem;
  }

  .hero__cta-group {
    justify-content: center;
    width: 100%;
  }

  .hero__social-proof {
    flex-direction: column;
    gap: 1rem;
  }

  .hero__visual {
    display: none;
  }

  /* Hide heavy dashboard on smaller mobiles to avoid layout issues */
  .hero__badge-float {
    display: none;
  }

  /* Alignments */
  .section-title {
    text-align: center;
    font-size: 1.85rem;
    margin-bottom: 1.5rem;
  }

  .solucao,
  .agitacao,
  .engenharia,
  .prova-social,
  .formulario {
    text-align: center;
  }

  .solucao__inner,
  .agitacao__grid,
  .engenharia__grid,
  .formulario__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Cards Mobile */
  .pain-card,
  .service-card,
  .testimonial-card {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pain-card__icon-wrap,
  .service-card__icon-wrap {
    margin-inline: auto;
  }

  .service-card__features {
    align-items: center;
    text-align: center;
  }

  .service-card__features li {
    justify-content: center;
    text-align: center;
  }

  .solucao__badges {
    justify-content: center;
  }

  .solucao {
    overflow: hidden;
  }

  .solucao__bg-shape {
    display: none !important;
  }

  .solucao__visual {
    display: none;
  }

  .stats-grid {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    max-width: 100%;
  }

  .testimonials-slider {
    max-width: 100%;
  }

  .agitacao__transition {
    max-width: 100%;
    flex-direction: column;
    gap: 1rem;
  }

  .agitacao__transition-line {
    display: none;
  }

  .agitacao__transition-text {
    max-width: 100%;
    flex-shrink: 1;
    font-size: 1rem;
  }

  .stat-separator {
    width: 40%;
    height: 1px;
    margin-inline: auto;
  }

  .footer__inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__links {
    align-items: center;
  }

  .footer__cta-block {
    align-items: center;
  }

  /* Buttons */
  .btn {
    width: 100%;
    max-width: 100%;
    font-size: 0.9rem;
    padding: 0.875rem 1.25rem;
  }
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

@media print {

  .navbar,
  .whatsapp-float {
    display: none;
  }
}

/* ----------------------------------------------------------------
   WhatsApp Floating Button
---------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  padding: 0;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  background-color: #20b858;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #FFF;
  pointer-events: none;
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 75px;
  background: #FFFFFF;
  color: #333333;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px) translateY(2px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
}

.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #FFFFFF;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) translateY(2px);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-float__tooltip {
    display: none;
  }
}

@media print {
  .whatsapp-float {
    display: none !important;
  }
}/* End custom CSS */