:root {
  --teal: #00adc2;
  --teal-2: #007d8f;
  --teal-3: #05d1df;
  --dark: #003b49;
  --deep: #002f3a;
  --text: #07172b;
  --muted: #5b6b7f;
  --ice: #eefbfb;
  --white: #fff;
  --container: 1180px;
  --shadow: 0 28px 90px rgba(0, 125, 143, .18);
  --dark-shadow: 0 34px 100px rgba(0, 43, 54, .35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  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% - 44px));
  margin: auto
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 6000;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #00889b, #004a58 65%, #00303a);
  transition: .55s ease
}

.loader img {
  width: 230px;
  animation: loaderPulse 1.25s ease-in-out infinite
}

.loader.loaded {
  opacity: 0;
  visibility: hidden
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  height: 4px;
  width: 0;
  z-index: 3000;
  background: linear-gradient(90deg, #fff, var(--teal-3), #59e6ef);
  box-shadow: 0 0 20px rgba(5, 209, 223, .65)
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1600;
  height: 76px;
  padding: 0 clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  transition: .32s ease
}

.site-header.scrolled {
  height: 66px;
  background: rgba(0, 61, 74, .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 43, 54, .25)
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px
}

.brand-iv2 {
  width: 132px
}

.brand-flow {
  width: 130px
}

.brand span {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, .55)
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 24px);
  font-size: .88rem;
  font-weight: 850
}

.nav a {
  position: relative;
  opacity: .94;
  transition: .25s
}

.nav a:hover {
  opacity: 1;
  transform: translateY(-1px)
}

.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  height: 3px;
  width: 0;
  border-radius: 99px;
  background: var(--teal-3);
  transition: .25s
}

.nav a:hover:after,
.nav a.active:after {
  width: 100%
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, .16);
  place-items: center;
  cursor: pointer
}

.menu-toggle i {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: #fff;
  border-radius: 99px;
  transition: .25s
}

.menu-toggle.active i:nth-child(1) {
  transform: translateY(8px) rotate(45deg)
}

.menu-toggle.active i:nth-child(2) {
  opacity: 0
}

.menu-toggle.active i:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg)
}

.hero {
  min-height: 740px;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background: #007f91;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('img/hero-meeting.jpg') center/cover no-repeat;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.04)
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 110, 128, .72), rgba(0, 173, 194, .68) 55%, rgba(255, 255, 255, .85) 100%), radial-gradient(circle at 12% 12%, rgba(255, 255, 255, .18), transparent 26%)
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .10;
  background-image: radial-gradient(rgba(255, 255, 255, .95) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, #000, transparent 78%)
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 112px;
  animation: heroRise .95s cubic-bezier(.22, 1, .36, 1) both
}

.hero-logo {
  width: min(430px, 70vw);
  margin: 0 auto 24px;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, .16));
  animation: logoFloat 5.5s ease-in-out infinite
}

.hero h1 {
  font-size: clamp(1.25rem, 2.7vw, 2rem);
  font-weight: 800;
  letter-spacing: .01em;
  margin-bottom: 34px;
  text-shadow: 0 10px 30px rgba(0, 43, 54, .22)
}

.hero-wave {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -72px;
  height: 170px;
  background: #fff;
  border-radius: 50% 50% 0 0/65% 65% 0 0
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
  border: 0
}

.btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .35) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: .65s ease
}

.btn:hover:before {
  transform: translateX(120%)
}

.btn:hover {
  transform: translateY(-3px)
}

.btn-dark {
  background: #002f3a;
  color: #fff;
  box-shadow: 0 18px 45px rgba(0, 47, 58, .26)
}

.btn-teal {
  background: var(--teal);
  color: #002f3a;
  box-shadow: 0 18px 45px rgba(0, 173, 194, .20)
}

.btn-light {
  background: #fff;
  color: #006d7f
}

.section {
  position: relative;
  padding: clamp(82px, 9vw, 132px) 0
}

.about {
  background: #fff;
  overflow: hidden
}

.about:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 173, 194, .06), transparent 34%, rgba(0, 173, 194, .05));
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 80%)
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(44px, 8vw, 118px);
  align-items: center
}

.section-title h2 {
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: .98;
  letter-spacing: -.055em;
  color: var(--teal);
  font-weight: 950
}

.title-line {
  width: 140px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--teal), var(--dark));
  margin-top: 24px
}

.about-text {
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.85;
  color: #003b49
}

.about-text p+p {
  margin-top: 22px
}

.practice {
  position: relative;
  background: linear-gradient(135deg, #05bfd5, #007e92);
  color: #fff;
  overflow: hidden
}

.color-strip {
  height: 28px;
  background: #fff;
  overflow: hidden
}

.color-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.practice:before {
  content: "";
  position: absolute;
  inset: 28px 0 0;
  background: radial-gradient(circle at 18% 22%, rgba(255, 255, 255, .22), transparent 28%), radial-gradient(circle at 78% 80%, rgba(0, 47, 58, .18), transparent 34%)
}

.practice-grid {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.1fr .75fr;
  gap: 40px;
  align-items: center
}

.practice-copy span {
  display: block;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 950;
  opacity: .86;
  margin-bottom: 12px
}

.practice-copy h2 {
  font-size: clamp(2.15rem, 3.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 38px
}

.steps {
  display: grid;
  gap: 23px
}

.steps article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  align-items: start
}

.steps strong {
  font-size: 2.35rem;
  font-weight: 950;
  line-height: 1;
  color: #fff;
  text-shadow: 0 14px 40px rgba(0, 0, 0, .18)
}

.steps h3 {
  font-size: 1.5rem;
  line-height: 1.05
}

.steps p {
  font-size: .98rem;
  color: rgba(255, 255, 255, .9);
  line-height: 1.4
}

.practice-person {
  align-self: end;
  display: flex;
  justify-content: center
}

.practice-person img {
  width: min(430px, 100%);
  filter: drop-shadow(0 30px 65px rgba(0, 47, 58, .24));
  animation: none !important;
  transform: none !important
}

.benefits {
  background: #fff;
  overflow: hidden
}

.benefits:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 173, 194, .06), transparent 40%, rgba(0, 173, 194, .05));
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%)
}

.center-content {
  text-align: center;
  position: relative
}

.kicker {
  display: block;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 14px
}

.benefits h2,
.cases h2 {
  font-size: clamp(2.25rem, 4.7vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -.055em;
  color: #007d8f
}

.lead {
  max-width: 780px;
  margin: 18px auto 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.7
}

.benefit-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 58px
}

.benefit-card {
  position: relative;
  min-height: 230px;
  padding: 34px 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(0, 47, 58, .1);
  border: 1px solid rgba(0, 173, 194, .1);
  display: grid;
  place-items: center;
  gap: 18px;
  overflow: hidden;
  transition: .35s cubic-bezier(.22, 1, .36, 1);
  isolation: isolate
}

.benefit-card:after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -40px;
  width: 125px;
  height: 115px;
  border-radius: 50% 0 0 0;
  background: rgba(0, 173, 194, .09);
  transition: .35s
}

.benefit-card:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: .35s
}

.benefit-card:hover:before {
  opacity: 1
}

.benefit-card:hover:after {
  transform: scale(1.15);
  background: rgba(0, 173, 194, .14)
}

.benefit-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 34px 100px rgba(0, 173, 194, .18);
  border-color: rgba(0, 173, 194, .28)
}

.benefit-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.2;
  color: #003b49
}

.benefit-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5
}

.benefit-icon {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  background: var(--teal);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center
}

.icon-flow {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='16' cy='18' r='6'/%3E%3Ccircle cx='48' cy='18' r='6'/%3E%3Ccircle cx='32' cy='46' r='6'/%3E%3Cpath d='M22 18h20M19 23l9 16M45 23l-9 16'/%3E%3C/g%3E%3C/svg%3E")
}

.icon-docs {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 10h24l8 8v32H18z'/%3E%3Cpath d='M42 10v10h10M24 28h18M24 36h18M24 44h12'/%3E%3Cpath d='M12 18v38h30'/%3E%3C/g%3E%3C/svg%3E")
}

.icon-chart {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 52V14M12 52h42'/%3E%3Cpath d='M20 44V32M32 44V22M44 44V28M20 32l12-10 12 6 10-14'/%3E%3C/g%3E%3C/svg%3E")
}

.icon-click {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M28 10v26l8-6 6 16 8-3-6-16 10-1z'/%3E%3Cpath d='M16 18l-6-6M14 34H6M38 10l4-8'/%3E%3C/g%3E%3C/svg%3E")
}

.mobile-dots {
  display: none
}

.cases {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #effcfd 100%);
  padding-bottom: 104px;
  overflow: hidden
}

.cases-band {
  position: relative;
  background: linear-gradient(135deg, #07b7cc 0%, #00879c 55%, #006f84 100%);
  min-height: 320px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 78px 24px 132px;
  overflow: hidden
}

.cases-band:before {
  content: "";
  position: absolute;
  inset: -40% -10% auto;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, .18), transparent 64%);
  animation: bandGlow 9s ease-in-out infinite
}

.cases-band:after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -70px;
  height: 145px;
  background: #effcfd;
  border-radius: 50% 50% 0 0/65% 65% 0 0
}

.cases-band h2 {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 1080px;
  text-shadow: 0 14px 40px rgba(0, 55, 70, .22)
}

.video-wrap {
  position: relative;
  z-index: 2;
  margin-top: -86px;
  text-align: center
}

.video-card {
  position: relative;
  display: block;
  width: min(820px, 100%);
  margin: 0 auto 54px;
  border-radius: 30px;
  box-shadow: 0 34px 100px rgba(0, 47, 58, .24);
  overflow: hidden;
  background: #002f3a;
  transform: translateZ(0);
  border: 1px solid rgba(255, 255, 255, .18)
}

.video-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 47, 58, .40));
  z-index: 1;
  pointer-events: none
}

.video-card:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
  z-index: 3;
  pointer-events: none
}

.video-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  transition: transform .7s cubic-bezier(.22, 1, .36, 1), filter .7s
}

.video-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.1) contrast(1.04) brightness(.95)
}

.play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92px;
  height: 68px;
  border-radius: 18px;
  background: #ff1616;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 50px rgba(255, 22, 22, .33);
  transition: .25s;
  z-index: 4
}

.play:before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 24px;
  background: rgba(255, 22, 22, .18);
  animation: playPulse 2s ease-in-out infinite
}

.play:after {
  content: "";
  position: absolute;
  left: 38px;
  top: 21px;
  border-left: 22px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent
}

.video-card:hover .play {
  transform: translate(-50%, -50%) scale(1.07)
}

.video-wrap h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.55rem);
  color: #006d7f;
  margin: 0 auto 22px;
  max-width: 780px;
  line-height: 1.15;
  letter-spacing: -.035em
}

.numbers {
  padding: 42px 0;
  background: #fff
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center
}

.numbers strong {
  display: block;
  font-size: clamp(2.1rem, 4.2vw, 4.3rem);
  line-height: 1;
  color: var(--teal);
  font-weight: 950;
  letter-spacing: -.055em;
  transition: .3s
}

.numbers article:hover strong {
  transform: translateY(-4px) scale(1.03)
}

.numbers span {
  display: block;
  margin-top: 10px;
  color: #00596a;
  font-weight: 750;
  font-size: 1.05rem
}

footer {
  position: relative;
  margin-top: 0;
  background: linear-gradient(135deg, #00869a, #006b7d);
  color: #fff;
  padding: 74px 0 34px;
  overflow: hidden;
  border-radius: 44px 44px 0 0
}

footer:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 8% 100%, rgba(255, 255, 255, .12), transparent 38%), radial-gradient(circle at 88% 0, rgba(255, 255, 255, .1), transparent 35%)
}

footer .container,
.footer-bottom {
  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, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(12px)
}

.footer-cta img {
  width: 175px
}

.footer-cta span {
  display: block;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 950;
  opacity: .78;
  margin-bottom: 8px
}

.footer-cta h2 {
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -.045em
}

.footer-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 34px;
  justify-content: space-between
}

.footer-brand img {
  width: 155px;
  margin-bottom: 14px
}

footer h3 {
  font-size: 1.45rem;
  margin-bottom: 14px
}

footer p {
  font-size: .93rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .88)
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 18px
}

.social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  display: grid;
  place-items: center;
  transition: .25s;
  position: relative
}

.social:after,
.whatsapp-float:after {
  content: "";
  width: 20px;
  height: 20px;
  background: #fff;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center
}

.instagram:after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm5 5a5 5 0 1 0 0 10 5 5 0 0 0 0-10zm6.5-.8a1.2 1.2 0 1 0 0 2.4 1.2 1.2 0 0 0 0-2.4zM12 9a3 3 0 1 1 0 6 3 3 0 0 1 0-6z'/%3E%3C/svg%3E")
}

.youtube:after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M23 7.4a4 4 0 0 0-.7-1.8 2.6 2.6 0 0 0-1.8-.8C18 4.5 12 4.5 12 4.5s-6 0-8.5.3a2.6 2.6 0 0 0-1.8.8A4 4 0 0 0 1 7.4 42 42 0 0 0 .7 12a42 42 0 0 0 .3 4.6 4 4 0 0 0 .7 1.8 3 3 0 0 0 2 .8c2.4.3 8.3.3 8.3.3s6 0 8.5-.3a2.6 2.6 0 0 0 1.8-.8 4 4 0 0 0 .7-1.8 42 42 0 0 0 .3-4.6 42 42 0 0 0-.3-4.6zM9.8 15.2V8.8l6.1 3.2z'/%3E%3C/svg%3E")
}

.linkedin:after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4.98 3.5a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5zM3 9h4v12H3zM9 9h3.8v1.7h.1a4.2 4.2 0 0 1 3.8-2.1c4 0 4.8 2.6 4.8 6V21h-4v-5.7c0-1.4 0-3.1-1.9-3.1s-2.2 1.5-2.2 3V21H9z'/%3E%3C/svg%3E")
}

.social:hover {
  background: rgba(255, 255, 255, .25);
  transform: translateY(-3px)
}

.love {
  font-weight: 950;
  letter-spacing: .12em;
  margin-top: 18px
}

.footer-bottom {
  text-align: center;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: .86rem;
  color: rgba(255, 255, 255, .76)
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  z-index: 1300;
  display: grid;
  place-items: center;
  background: #25d366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  animation: pulseWpp 2s infinite;
  transition: .25s
}

.whatsapp-float:after {
  width: 30px;
  height: 30px;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='black' d='M16 3a13 13 0 0 0-11 19.9L3.7 29l6.3-1.7A13 13 0 1 0 16 3zm0 2.4a10.6 10.6 0 0 1 9 16.2 10.6 10.6 0 0 1-13.7 3.7l-.4-.2-3.7 1 1-3.6-.3-.5A10.6 10.6 0 0 1 16 5.4zm-4.3 5.5c-.2 0-.5 0-.7.3-.2.2-.9.8-.9 2s.9 2.4 1 2.6c.1.2 1.8 2.9 4.5 3.9 2.2.9 2.7.7 3.2.7.5 0 1.6-.6 1.8-1.2.2-.6.2-1.1.1-1.2l-1.9-.9c-.3-.1-.5-.2-.7.2l-.8 1c-.1.2-.4.2-.7.1a8.7 8.7 0 0 1-2.6-1.6 9.7 9.7 0 0 1-1.8-2.2c-.2-.3 0-.5.1-.7l.5-.6c.2-.2.2-.4.3-.6.1-.2 0-.4 0-.6l-.8-1.9c-.2-.5-.4-.5-.6-.5z'/%3E%3C/svg%3E")
}

.whatsapp-float:hover {
  transform: scale(1.08)
}

.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
}

@keyframes loaderPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .85
  }

  50% {
    transform: scale(1.05);
    opacity: 1
  }
}

@keyframes softFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.98)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes bandGlow {

  0%,
  100% {
    transform: translateX(-8%) rotate(0);
    opacity: .65
  }

  50% {
    transform: translateX(8%) rotate(1deg);
    opacity: 1
  }
}

@keyframes playPulse {

  0%,
  100% {
    transform: scale(.92);
    opacity: .75
  }

  50% {
    transform: scale(1.12);
    opacity: .25
  }
}

@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)
  }
}

/* Ajuste: imagem do profissional sem animação para evitar desalinhamento */
.practice-person,
.practice-person img {
  opacity: 1 !important;
  transform: none !important;
}

.practice-person img {
  animation: none !important;
}

@media(max-width:1060px) {
  .practice-grid {
    grid-template-columns: 1fr
  }

  .practice-person img {
    max-height: 430px;
    object-fit: contain
  }

  .benefit-track {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-cta {
    grid-template-columns: 1fr;
    text-align: center
  }

  .footer-cta img,
  .footer-cta .btn {
    margin: auto
  }

  .hero {
    min-height: 700px
  }
}

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

  .brand-flow,
  .brand span {
    display: none
  }

  .nav {
    position: fixed;
    top: 78px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(0, 47, 58, .96);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .25);
    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;
    border-radius: 14px
  }

  .nav a:hover {
    background: rgba(255, 255, 255, .1)
  }

  .nav a:after {
    display: none
  }

  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

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

@media(max-width:640px) {
  .container {
    width: min(100% - 32px, var(--container))
  }

  .site-header {
    height: 66px;
    padding-inline: 18px
  }

  .brand-iv2 {
    width: 118px
  }

  .hero {
    min-height: 620px
  }

  .hero-content {
    padding: 108px 0 94px
  }

  .hero-logo {
    width: 78vw
  }

  .hero h1 {
    font-size: 1.12rem
  }

  .section {
    padding: 70px 0
  }

  .about-text {
    font-size: 1rem
  }

  .practice-grid {
    min-height: auto;
    padding: 70px 0 0
  }

  .steps article {
    grid-template-columns: 54px 1fr;
    gap: 14px
  }

  .steps strong {
    font-size: 1.7rem
  }

  .steps h3 {
    font-size: 1.15rem
  }

  .practice-person img {
    max-height: 340px
  }

  .benefit-track {
    display: block;
    position: relative;
    min-height: 260px;
    margin-top: 40px
  }

  .benefit-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(22px) scale(.98);
    pointer-events: none;
    transition: .45s ease;
    min-height: 250px
  }

  .benefit-card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto
  }

  .mobile-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 276px
  }

  .mobile-dots i {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: rgba(0, 173, 194, .25);
    transition: .25s
  }

  .mobile-dots i.active {
    width: 28px;
    background: var(--teal)
  }

  .cases-band {
    min-height: 260px;
    padding: 58px 18px 112px
  }

  .video-wrap {
    margin-top: -72px
  }

  .video-card {
    border-radius: 24px;
    margin-bottom: 38px
  }

  .video-card img {
    height: 250px
  }

  .video-card:after {
    border-radius: 24px
  }

  .play {
    width: 76px;
    height: 56px;
    border-radius: 15px
  }

  .play:after {
    left: 31px;
    top: 17px;
    border-left-width: 18px;
    border-top-width: 11px;
    border-bottom-width: 11px
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid {
    text-align: left
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px
  }

  footer {
    border-radius: 34px 34px 0 0
  }

  .footer-cta {
    border-radius: 24px
  }
}

@media(prefers-reduced-motion:reduce) {

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