:root {
  --green: #00c99a;
  --green-2: #00b58b;
  --green-3: #7df5d5;
  --dark: #020303;
  --ink: #0b1528;
  --muted: #5d6678;
  --ice: #f7fbfa;
  --white: #fff;
  --container: 1180px;
  --shadow: 0 28px 90px rgba(2, 21, 18, .16);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden
}

body.menu-open {
  overflow: hidden
}

a {
  text-decoration: none;
  color: inherit
}

img {
  display: block;
  max-width: 100%
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: auto
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  background: #050908;
  transition: .55s ease
}

.loader img {
  width: 260px;
  filter: brightness(0) invert(1);
  animation: loaderPulse 1.3s ease-in-out infinite
}

.loader.loaded {
  opacity: 0;
  visibility: hidden
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  height: 4px;
  width: 0;
  z-index: 2500;
  background: linear-gradient(90deg, #fff, var(--green), #9bffe7);
  box-shadow: 0 0 18px rgba(0, 201, 154, .7)
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1800;
  height: 78px;
  padding: 0 clamp(22px, 5vw, 70px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  transition: .3s ease
}

.site-header.scrolled {
  height: 66px;
  background: rgba(2, 7, 8, .72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .22)
}

.brand img {
  width: 150px;
  filter: brightness(0) invert(1)
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .98rem;
  font-weight: 700
}

.nav a {
  position: relative;
  padding: 10px 2px;
  margin: 0 2px;
  opacity: .95;
  transition: .25s
}

.nav a:not(:last-child)::after {
  content: "|";
  margin-left: 8px;
  opacity: .7
}

.nav a:hover {
  opacity: 1;
  color: #fff;
  transform: translateY(-1px)
}

.nav a.active {
  color: #fff
}

.nav a.active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 14px;
  bottom: 1px;
  height: 2px;
  background: var(--green);
  border-radius: 99px
}

.nav-cta {
  padding: 10px 18px !important;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  margin-left: 8px !important
}

.nav-cta::after,
.nav-cta::before {
  display: none !important
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 15px;
  background: rgba(255, 255, 255, .13);
  place-items: center;
  gap: 5px;
  cursor: pointer
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
  display: block;
  transition: .25s
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  color: #020303
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('img/hero-security.png') center/cover no-repeat;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.03)
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 201, 154, .72) 0%, rgba(0, 201, 154, .55) 42%, rgba(255, 255, 255, .86) 100%), radial-gradient(circle at 20% 15%, rgba(255, 255, 255, .18), transparent 25%)
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 34px));
  padding: 128px 0 130px
}

.onetrust-logo {
  width: min(760px, 78vw);
  margin: 0 auto 34px
}

.hero h1 {
  font-size: clamp(1.15rem, 2.3vw, 1.95rem);
  font-weight: 500;
  letter-spacing: -.03em;
  margin-bottom: 44px
}

.hero-wave {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -66px;
  height: 160px;
  background: #fff;
  border-radius: 50% 50% 0 0/65% 65% 0 0
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
  font-weight: 900;
  transition: transform .25s, box-shadow .25s, background .25s;
  color: #fff
}

.btn:hover {
  transform: translateY(-3px)
}

.btn-dark {
  background: #030303;
  color: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .20)
}

.btn-green {
  background: var(--green);
  color: #02130f;
  box-shadow: 0 18px 45px rgba(0, 201, 154, .30)
}

.section {
  position: relative;
  padding: clamp(78px, 8vw, 125px) 0
}

.about {
  background: #fff;
  overflow: hidden
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, .02), transparent 45%), radial-gradient(circle at 72% 38%, rgba(0, 201, 154, .08), transparent 28%)
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(42px, 8vw, 120px);
  align-items: center
}

.section-title h2 {
  font-family: Poppins, sans-serif;
  font-size: clamp(2.5rem, 4.8vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: .03em;
  color: var(--green);
  font-weight: 900
}

.section-title span,
.accent-line {
  display: block;
  width: 140px;
  height: 4px;
  border-radius: 99px;
  background: #141414;
  margin-top: 25px
}

.about-text {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.85
}

.about-text p+p {
  margin-top: 25px
}

.about-text strong {
  font-weight: 900
}

.why {
  background: var(--green);
  color: #020303;
  margin-bottom: 4rem;
  padding: clamp(70px, 7vw, 104px) 0
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: clamp(36px, 7vw, 90px);
  align-items: center
}

.why-copy h2 {
  font-family: Poppins, sans-serif;
  font-size: clamp(2.1rem, 3.3vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 30px
}

.why-copy p {
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 650px;
  margin-bottom: 22px
}

.team-card {
  padding: 16px;
  background: rgba(255, 255, 255, .32);
  border-radius: 30px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .11);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .28)
}

.team-card img {
  border-radius: 18px;
  width: 100%;
  aspect-ratio: 1.56/1;
  object-fit: cover
}

.mini-btn {
  display: inline-flex;
  margin-top: 18px;
  padding: 13px 28px;
  border-radius: 999px;
  background: #fff;
  color: #030303;
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .04em;
  transition: .25s
}

.mini-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .13)
}

.center-content {
  text-align: center
}

.accent-line {
  background: var(--green);
  margin: 0 auto 18px
}

.main-title {
  font-family: Poppins, sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.8rem);
  letter-spacing: -.04em;
  line-height: 1.04
}

.lead {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 600
}

.benefits {
  background: #fafafa;
  overflow: hidden
}

.benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 5%, rgba(0, 201, 154, .08), transparent 28%), radial-gradient(circle at 85% 70%, rgba(0, 201, 154, .07), transparent 28%)
}

.benefit-slider {
  position: relative;
  margin-top: 56px
}

.benefit-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px
}

.benefit-card {
  padding: 36px 28px 32px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(5, 24, 22, .12);
  min-height: 230px;
  display: grid;
  place-items: center;
  text-align: center;
  transition: .3s
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(0, 201, 154, .16)
}

.benefit-card h3 {
  font-size: 1rem;
  line-height: 1.25;
  margin: 20px 0 8px
}

.benefit-card p {
  font-size: .9rem;
  color: #202020;
  line-height: 1.45
}

.benefit-icon {
  width: 82px;
  height: 82px;
  position: relative
}

.benefit-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 4px solid var(--green);
  border-radius: 22px
}

.benefit-icon.fingerprint::after {
  content: "◉";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 56px
}

.benefit-icon.lock::after {
  content: "▣";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 62px
}

.benefit-icon.password::after {
  content: "***";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 32px;
  font-weight: 900
}

.benefit-icon.user-shield::after {
  content: "♟";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 62px
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .35);
  background: #fff;
  color: #111;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .25s
}

.slider-arrow:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-50%) scale(1.06)
}

.slider-arrow.prev {
  left: -48px
}

.slider-arrow.next {
  right: -48px
}

.specialties {
  background: linear-gradient(180deg, #fff 0%, #effffb 100%);
  padding-top: 80px
}

.specialties-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 0
}

.special-image {
  position: relative;
  z-index: 1
}

.special-image img {
  height: 470px;
  width: 100%;
  object-fit: cover
}

.special-panel {
  position: relative;
  z-index: 2;
  margin-left: -70px;
  background: #030303;
  color: #fff;
  padding: 56px 64px;
  border-radius: 0;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .22)
}

.white-line {
  display: block;
  width: 130px;
  height: 4px;
  background: #fff;
  margin-bottom: 44px
}

.special-panel small {
  display: block;
  color: var(--green);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 900;
  margin-bottom: 28px
}

.special-panel h2 {
  font-family: Poppins, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-bottom: 24px
}

.special-panel p {
  line-height: 1.72;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .88)
}

.numbers {
  padding: 42px 0;
  background: #fff
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center
}

.number-item strong {
  display: block;
  color: var(--green);
  font-family: Poppins, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1
}

.number-item span {
  font-size: 1rem;
  font-weight: 700
}

footer {
  background: #030303;
  color: #fff;
  padding: 54px 0 46px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 42px;
  align-items: start
}

.footer-logo {
  width: 160px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px
}

footer p {
  color: rgba(255, 255, 255, .86);
  line-height: 1.65;
  font-size: .96rem
}

.heart-icon {
  width: 15px;
  height: 15px;
  vertical-align: -2px;
  fill: var(--green);
}

footer h3 {
  font-family: Poppins, sans-serif;
  font-size: 1.7rem;
  margin-bottom: 14px
}

.socials {
  display: flex;
  gap: 13px;
  margin-top: 22px
}

.socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #030303;
  background: #fff;
  font-weight: 900;
  font-size: .83rem;
  transition: .25s
}

.socials a:hover {
  background: var(--green);
  transform: translateY(-2px)
}

.love {
  display: block;
  margin-top: 34px;
  letter-spacing: .12em
}

.whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1500;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  animation: pulseWpp 2s infinite
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1)
}

.reveal.active {
  opacity: 1;
  transform: translateY(0)
}

.delay-1 {
  transition-delay: .12s
}

.delay-2 {
  transition-delay: .22s
}

.delay-3 {
  transition-delay: .32s
}

@keyframes loaderPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .85
  }

  50% {
    transform: scale(1.05);
    opacity: 1
  }
}

@keyframes pulseWpp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .45)
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
  }
}

@media(max-width:1180px) {
  .slider-arrow.prev {
    left: 4px
  }

  .slider-arrow.next {
    right: 4px
  }

  .benefit-slider {
    padding: 0 48px
  }

  .nav {
    font-size: .88rem
  }

  .nav a:not(:last-child)::after {
    margin-left: 5px
  }
}

@media(max-width:980px) {
  .menu-toggle {
    display: grid
  }

  .nav {
    position: fixed;
    top: 78px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 6px;
    padding: 18px;
    background: rgba(3, 9, 8, .96);
    border-radius: 22px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .26);
    backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: .25s
  }

  .nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
  }

  .nav a {
    padding: 14px;
    margin: 0;
    border-radius: 12px
  }

  .nav a::after,
  .nav a::before {
    display: none !important
  }

  .nav a:hover {
    background: rgba(255, 255, 255, .08)
  }

  .about-grid,
  .why-grid,
  .specialties-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .special-panel {
    margin-left: 0;
    margin-top: -30px
  }

  .benefit-track {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero {
    min-height: 680px
  }

  .onetrust-logo {
    width: min(620px, 82vw)
  }
}

@media(max-width:640px) {
  .container {
    width: min(100% - 32px, var(--container))
  }

  .site-header {
    height: 66px;
    padding: 0 18px
  }

  .brand img {
    width: 132px
  }

  .hero {
    min-height: 620px
  }

  .hero-content {
    padding: 118px 0 105px
  }

  .onetrust-logo {
    width: 86vw
  }

  .hero h1 {
    font-size: 1.08rem;
    line-height: 1.5;
    margin-bottom: 32px
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 0 18px
  }

  .section {
    padding: 68px 0
  }

  .about-grid {
    gap: 34px
  }

  .section-title h2 {
    font-size: 2.55rem
  }

  .why-copy h2,
  .main-title {
    font-size: 2.15rem
  }

  .why-copy p {
    font-size: 1rem
  }

  .benefit-slider {
    padding: 0 0
  }

  .slider-arrow {
    top: auto;
    bottom: -54px
  }

  .slider-arrow.prev {
    left: calc(50% - 48px)
  }

  .slider-arrow.next {
    right: calc(50% - 48px)
  }

  .benefits {
    padding-bottom: 120px
  }

  .special-image img {
    height: 320px
  }

  .special-panel {
    padding: 42px 28px
  }

  .white-line {
    margin-bottom: 28px
  }

  .number-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px
  }

  .footer-grid {
    gap: 32px
  }

  .whatsapp {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px
  }
}

@media(prefers-reduced-motion:reduce) {

  *,
  *:before,
  *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important
  }
}

/* ===== Ajustes premium: animações leves + rodapé no padrão dos outros sites ===== */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .12;
  background-image: radial-gradient(rgba(255, 255, 255, .95) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
  pointer-events: none;
}

.hero-bg {
  animation: heroZoom 16s ease-in-out infinite alternate;
  will-change: transform
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(0, 201, 154, .73) 0%, rgba(0, 201, 154, .50) 42%, rgba(255, 255, 255, .90) 100%), radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .22), transparent 24%), radial-gradient(circle at 82% 20%, rgba(125, 245, 213, .22), transparent 24%)
}

.hero-content {
  animation: heroContentIn .95s cubic-bezier(.22, 1, .36, 1) both
}

.onetrust-logo {
  animation: softFloat 5.5s ease-in-out infinite;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, .12))
}

.btn {
  position: relative;
  overflow: hidden
}

.btn::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
  transform: skewX(-18deg);
  transition: .65s
}

.btn:hover::after {
  left: 120%
}

.why {
  overflow: hidden
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 15%, rgba(255, 255, 255, .25), transparent 30%), radial-gradient(circle at 86% 68%, rgba(255, 255, 255, .16), transparent 34%);
  pointer-events: none
}

.why-grid {
  position: relative;
  z-index: 1
}

.team-card {
  transform-style: preserve-3d
}

.team-card img {
  transition: transform .55s ease
}

.team-card:hover img {
  transform: scale(1.035)
}

.benefits {
  background: linear-gradient(180deg, #fff 0%, #f8fffd 100%)
}

.benefit-card {
  position: relative;
  overflow: hidden
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: auto -45px -45px auto;
  width: 120px;
  height: 120px;
  border-radius: 55% 0 0 0;
  background: rgba(0, 201, 154, .08);
  transition: .3s
}

.benefit-card:hover::after {
  transform: scale(1.18)
}

.specialties {
  padding-bottom: 110px
}

.special-panel {
  border-radius: 0 0 0 0;
  overflow: hidden
}

.special-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(0, 201, 154, .18);
  filter: blur(5px)
}

.special-panel>* {
  position: relative;
  z-index: 1
}

.special-image img {
  transition: transform .7s ease
}

.specialties-grid:hover .special-image img {
  transform: scale(1.035)
}

.numbers {
  padding: 58px 0;
  background: #fff;
}

.number-item {
  transition: transform .25s ease
}

.number-item:hover {
  transform: translateY(-5px)
}

footer {
  position: relative;
  background: linear-gradient(135deg, #030303 0%, #021711 58%, #003326 100%);
  color: #fff;
  padding: 62px 0 34px;
  overflow: hidden;
  border-radius: 0
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 15%, rgba(0, 201, 154, .18), transparent 34%), radial-gradient(circle at 92% 0, rgba(125, 245, 213, .10), transparent 36%);
  pointer-events: none
}

footer .container {
  position: relative;
  z-index: 1
}

.footer-cta {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 50px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 28px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px)
}

.footer-cta-brand {
  background: #fff;
  border-radius: 18px;
  padding: 16px
}

.footer-cta-brand img {
  width: 150px;
  margin: auto
}

.footer-cta span {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 8px
}

.footer-cta h2 {
  font-family: Poppins, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -.05em
}

.footer-grid {
  padding-top: 2px
}

.footer-logo {
  width: 165px
}

.socials a {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .12);
  color: #fff
}

.socials a:hover {
  background: var(--green);
  color: #02130f
}

.footer-bottom {
  text-align: center;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .86rem;
  color: rgba(255, 255, 255, .68)
}

.whatsapp {
  font-family: Arial, sans-serif;
  background: #25d366
}

.whatsapp::before {
  content: "☎"
}

.whatsapp {
  font-size: 0
}

.whatsapp::before {
  font-size: 1.8rem;
  transform: rotate(-18deg)
}

@keyframes heroZoom {
  from {
    transform: scale(1.02)
  }

  to {
    transform: scale(1.075)
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes softFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@media(max-width:980px) {
  .footer-cta {
    grid-template-columns: 1fr;
    text-align: center
  }

  .footer-cta-brand,
  .footer-cta .btn {
    margin: auto
  }

  .specialties {
    padding-bottom: 78px
  }
}

@media(max-width:640px) {
  .footer-cta {
    border-radius: 24px;
    margin-bottom: 38px
  }

  .footer-grid {
    text-align: left
  }

  .hero-bg {
    animation: none
  }

  .onetrust-logo {
    animation: none
  }

  .special-panel {
    margin-top: 0
  }

  .specialties {
    padding-bottom: 68px
  }

  .whatsapp::before {
    font-size: 1.6rem
  }
}

@media(prefers-reduced-motion:reduce) {

  .hero-bg,
  .onetrust-logo {
    animation: none !important
  }
}

/* Ajustes finais - cards e especialidades mais premium */
.benefits {
  background: linear-gradient(180deg, #fff 0%, #f7fffc 58%, #eefcf7 100%)
}

.benefit-track {
  gap: 34px;
  align-items: stretch
}

.benefit-card {
  border-radius: 24px;
  min-height: 222px;
  padding: 34px 24px 30px;
  border: 1px solid rgba(0, 201, 154, .08);
  box-shadow: 0 22px 60px rgba(5, 24, 22, .09);
  background: linear-gradient(180deg, #fff 0%, #fbfffd 100%);
  isolation: isolate
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 20px;
  border: 1px solid rgba(0, 201, 154, .07);
  opacity: 0;
  transform: scale(.96);
  transition: .35s ease;
  z-index: -1
}

.benefit-card:hover::before {
  opacity: 1;
  transform: scale(1)
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 95px rgba(0, 201, 154, .18)
}

.benefit-svg {
  width: 94px;
  height: 94px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: drop-shadow(0 14px 18px rgba(0, 201, 154, .12));
  transition: transform .35s ease, filter .35s ease
}

.benefit-card:hover .benefit-svg {
  transform: translateY(-5px) scale(1.04);
  filter: drop-shadow(0 20px 24px rgba(0, 201, 154, .2))
}

.benefit-card h3 {
  font-family: Poppins, sans-serif;
  font-size: 1.02rem;
  line-height: 1.18;
  margin: 0;
  color: #07130f;
  max-width: 170px
}

.benefit-icon {
  display: none !important
}

.specialties {
  background: linear-gradient(180deg, #fff 0%, #f4fff9 100%);
  padding-top: 105px;
  padding-bottom: 130px;
  overflow: hidden
}

.specialties::before {
  content: "";
  position: absolute;
  left: -130px;
  bottom: 20px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(0, 201, 154, .08);
  filter: blur(10px);
  animation: floatOrb 7s ease-in-out infinite
}

.specialties::after {
  content: "";
  position: absolute;
  right: -110px;
  top: 80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(0, 201, 154, .11);
  filter: blur(14px);
  animation: floatOrb 8s ease-in-out infinite reverse
}

.specialties-grid {
  position: relative;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  align-items: center
}

.special-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(3, 17, 14, .2);
  transform: translateX(28px);
  background: #00120f
}

.special-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 201, 154, .08), transparent 45%, rgba(0, 0, 0, .24));
  pointer-events: none
}

.special-image img {
  height: 505px;
  border-radius: 28px;
  filter: saturate(1.08) contrast(1.03);
  transition: transform 1s cubic-bezier(.22, 1, .36, 1), filter .45s ease
}

.specialties-grid:hover .special-image img {
  transform: scale(1.06);
  filter: saturate(1.18) contrast(1.07)
}

.special-panel {
  margin-left: -26px;
  border-radius: 30px;
  background: linear-gradient(145deg, #030806 0%, #020202 58%, #001d15 100%);
  padding: 62px 70px;
  min-height: 395px;
  box-shadow: 0 42px 120px rgba(0, 0, 0, .30), 0 0 0 1px rgba(0, 201, 154, .12) inset;
  animation: panelBreath 6s ease-in-out infinite
}

.special-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .25), rgba(0, 201, 154, .45), transparent 62%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none
}

.special-panel::after {
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 201, 154, .34), rgba(0, 201, 154, .02) 70%);
  filter: blur(2px);
  animation: floatOrb 6s ease-in-out infinite
}

.white-line {
  width: 140px;
  height: 5px;
  background: linear-gradient(90deg, #fff, var(--green));
  border-radius: 999px;
  margin-bottom: 40px
}

.special-panel small {
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
  letter-spacing: -.03em
}

.special-panel h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: -.04em
}

.special-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: -12px 0 30px;
  color: rgba(255, 255, 255, .82);
  font-weight: 700
}

.special-list li {
  display: flex;
  gap: 10px;
  align-items: center
}

.special-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(0, 201, 154, .13);
  flex: 0 0 auto
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translate3d(0, 0, 0)
  }

  50% {
    transform: translate3d(0, -18px, 0)
  }
}

@keyframes panelBreath {

  0%,
  100% {
    box-shadow: 0 42px 120px rgba(0, 0, 0, .30), 0 0 0 1px rgba(0, 201, 154, .12) inset
  }

  50% {
    box-shadow: 0 48px 135px rgba(0, 201, 154, .12), 0 0 0 1px rgba(0, 201, 154, .22) inset
  }
}

@media(max-width:980px) {
  .benefit-track {
    gap: 20px
  }

  .specialties-grid {
    gap: 24px
  }

  .special-image {
    transform: none;
    max-width: 680px;
    margin: auto
  }

  .special-panel {
    margin-left: 0;
    margin-top: -70px;
    border-radius: 26px;
    padding: 48px 38px;
    min-height: auto
  }
}

@media(max-width:640px) {
  .benefit-card {
    min-height: 220px;
    border-radius: 22px
  }

  .benefit-svg {
    width: 88px;
    height: 88px
  }

  .benefit-card h3 {
    font-size: 1.08rem;
    max-width: 220px
  }

  .specialties {
    padding-top: 70px;
    padding-bottom: 76px
  }

  .special-image {
    display: none
  }

  .special-panel {
    margin-top: 0;
    padding: 38px 24px;
    border-radius: 24px
  }

  .special-list {
    font-size: .92rem
  }
}

/* Ajuste: logos Grupo iv2 + OneTrust lado a lado no header */
.brand-duo {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: fit-content;
}

.brand-duo .brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-duo .brand-iv2 {
  height: 30px;
  filter: brightness(0) invert(1);
}

.brand-duo .brand-divider {
  display: block;
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, .45);
}

.brand-duo .brand-onetrust {
  height: 26px;
  max-width: 155px;
  filter: brightness(0) invert(1);
}

@media(max-width:980px) {
  .brand-duo {
    gap: 12px
  }

  .brand-duo .brand-iv2 {
    height: 27px
  }

  .brand-duo .brand-onetrust {
    height: 23px;
    max-width: 135px
  }

  .brand-duo .brand-divider {
    height: 23px
  }
}

@media(max-width:640px) {
  .brand-duo {
    gap: 10px
  }

  .brand-duo .brand-iv2 {
    height: 24px
  }

  .brand-duo .brand-onetrust {
    height: 21px;
    max-width: 118px
  }

  .brand-duo .brand-divider {
    height: 20px
  }
}

@media(max-width:420px) {
  .brand-duo .brand-onetrust {
    display: none
  }

  .brand-duo .brand-divider {
    display: none
  }
}


/* Ajuste final: acabamento arredondado do rodapé e ícones oficiais */
.numbers {
  position: relative;
  z-index: 1;
  padding-bottom: 82px;
}

footer {

  padding-top: 96px !important;
  border-radius: 46px 46px 0 0 !important;
}

footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 201, 154, .75), transparent);
  pointer-events: none;
}

.socials {
  align-items: center;
}

.socials a {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: rgba(255, 255, 255, .12) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
  line-height: 0;
}

.socials a img {
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0) invert(1);
  transition: .25s ease;
}

.socials a:hover {
  background: var(--green) !important;
  color: #02130f !important;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 34px rgba(0, 201, 154, .28);
}

.socials a:hover img {
  filter: none;
}

.whatsapp {
  width: 62px !important;
  height: 62px !important;
  border-radius: 50% !important;
  background: #25d366 !important;
  color: #fff !important;
  display: grid !important;
  place-items: center !important;
  font-size: 0 !important;
  line-height: 0;
  border: 6px solid rgba(255, 255, 255, .16);
  box-shadow: 0 12px 28px rgba(37, 211, 102, .42), 0 0 0 0 rgba(37, 211, 102, .42);
  overflow: hidden;
}

.whatsapp::before,
.whatsapp::after {
  display: none !important;
  content: none !important;
}

.whatsapp img {
  width: 30px;
  height: 30px;
  display: block;
  filter: brightness(0) invert(1);
}

.whatsapp:hover {
  transform: translateY(-3px) scale(1.06);
}

@media(max-width:640px) {
  .numbers {
    padding-bottom: 62px;
  }

  footer {
    margin-top: -34px;
    padding-top: 76px !important;
    border-radius: 34px 34px 0 0 !important;
  }

  .socials a {
    width: 36px !important;
    height: 36px !important;
  }

  .whatsapp {
    width: 56px !important;
    height: 56px !important;
    border-width: 5px;
  }

  .whatsapp img {
    width: 27px;
    height: 27px;
  }
}

/* Refinamento final - benefícios com ícones corporativos OneTrust */
.benefit-track {
  gap: 32px;
}

.benefit-card {
  min-height: 235px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 86%, rgba(0, 201, 154, .11) 0 34%, transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(250, 255, 253, .96) 100%);
  border: 1px solid rgba(0, 201, 154, .10);
  box-shadow: 0 26px 72px rgba(1, 31, 24, .10);
  overflow: hidden;
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: auto -55px -55px auto;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 201, 154, .12), rgba(0, 201, 154, .02));
  transition: .35s ease;
  z-index: 0;
}

.benefit-card::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 18px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(0, 201, 154, .65), transparent);
  opacity: 0;
  transform: translateY(-8px);
  transition: .35s ease;
  z-index: 2;
}

.benefit-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover::after {
  transform: scale(1.18) translate(-6px, -6px);
}

.benefit-svg {
  position: relative;
  z-index: 2;
  width: 108px;
  height: 108px;
  margin-bottom: 18px;
  padding: 8px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 201, 154, .18));
}

.benefit-card h3 {
  position: relative;
  z-index: 2;
  max-width: 210px;
  font-size: 1.02rem;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.benefit-card:hover .benefit-svg {
  transform: translateY(-6px) scale(1.045);
}

@media(max-width:640px) {
  .benefit-card {
    min-height: 245px;
  }

  .benefit-svg {
    width: 112px;
    height: 112px;
  }
}

/* Ajuste final: benefícios automáticos no mobile, sem botões de passagem */
.slider-arrow {
  display: none !important;
}

@media (max-width: 640px) {
  .benefits {
    padding-bottom: 78px !important;
  }

  .benefit-slider {
    margin-top: 42px;
    padding: 0 !important;
  }

}

/* Carrossel contínuo dos benefícios - cards passando com conteúdo completo */
.benefit-slider {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}

.benefit-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  gap: 28px !important;
  width: max-content;
  animation: benefitMarquee 38s linear infinite;
}

.benefit-slider:hover .benefit-track {
  animation-play-state: paused;
}

.benefit-card {
  display: flex !important;
  flex-direction: column;
  flex: 0 0 320px !important;
  width: 320px;
  min-height: 0;
  text-align: left !important;
  place-items: initial !important;
}

.benefit-card .benefit-svg {
  margin-bottom: 22px;
}

.benefit-card h3 {
  margin: 0 0 12px !important;
  max-width: none !important;
}

.benefit-card p {
  display: block !important;
  margin: 0;
  font-size: .94rem;
  line-height: 1.6;
  color: #4a5a56;
}

@keyframes benefitMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% / 2));
  }
}

@media (max-width: 980px) {
  .benefit-card {
    flex: 0 0 280px !important;
    width: 280px;
  }

  .benefit-track {
    animation-duration: 32s;
  }
}

@media (max-width: 640px) {
  .benefit-slider {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }

  .benefit-card {
    flex: 0 0 84vw !important;
    width: 84vw;
    min-height: 0 !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .benefit-svg {
    width: 86px;
    height: 86px;
  }

  .benefit-track {
    animation-duration: 26s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefit-track {
    animation: none;
  }
}

/* Soluções OneTrust - portfólio em abas */
.solutions {
  background: linear-gradient(180deg, #fff 0%, #f7fffc 60%, #eefcf7 100%);
  overflow: hidden;
}

.solutions-wrap {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  text-align: left;
  align-items: start;
}

.solutions-tabs {
  display: grid;
  gap: 10px;
  position: sticky;
  top: 100px;
}

.solution-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(0, 201, 154, .12);
  background: #fff;
  box-shadow: 0 14px 34px rgba(5, 24, 22, .05);
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink);
  cursor: pointer;
  transition: .25s ease;
  text-align: left;
}

.solution-tab img {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
}

.solution-tab:hover {
  border-color: rgba(0, 201, 154, .35);
  transform: translateX(4px);
}

.solution-tab.active {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #04201a;
  border-color: transparent;
  box-shadow: 0 18px 44px rgba(0, 201, 154, .28);
}

.solutions-panels {
  position: relative;
}

.solution-panel {
  display: none;
  background: #fff;
  border: 1px solid rgba(0, 201, 154, .10);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 28px 80px rgba(5, 24, 22, .08);
}

.solution-panel.active {
  display: block;
  animation: solutionFadeIn .45s ease;
}

@keyframes solutionFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.solution-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.solution-head img {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
}

.solution-head h3 {
  font-family: Poppins, sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  letter-spacing: -.03em;
  color: #07130f;
}

.solution-intro {
  color: var(--muted);
  line-height: 1.75;
  font-weight: 600;
  margin-bottom: 30px;
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.solution-feature {
  background: linear-gradient(180deg, #fff 0%, #f7fffc 100%);
  border: 1px solid rgba(0, 201, 154, .10);
  border-radius: 18px;
  padding: 20px;
}

.solution-feature h4 {
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  letter-spacing: -.01em;
  margin-bottom: 8px;
  color: var(--green-2);
}

.solution-feature p {
  font-size: .9rem;
  line-height: 1.6;
  color: #4a5a56;
}

@media (max-width: 980px) {
  .solutions-wrap {
    grid-template-columns: 1fr;
  }

  .solutions-tabs {
    position: static;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .solution-tab {
    white-space: nowrap;
  }

  .solution-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .solution-tab span {
    display: none;
  }

  .solution-tab {
    padding: 12px;
    border-radius: 14px;
  }

  .solution-tab img {
    width: 30px;
    height: 30px;
  }

  .solution-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .solution-features {
    grid-template-columns: 1fr;
  }
}

/* Correção: especialidades em coluna única no mobile/tablet */
@media (max-width: 980px) {
  .specialties-grid {
    grid-template-columns: 1fr;
  }
}