:root {
  --green: #62d84e;
  --blue: #6f86bd;
  --blue2: #5e78b5;
  --navy: #002d3f;
  --deep: #001f32;
  --text: #082033;
  --muted: #5d6b84;
  --ice: #f5f8ff;
  --white: #fff;
  --radius: 30px;
  --container: 1120px;
  --shadow: 0 28px 90px rgba(25, 54, 109, .18)
}

* {
  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
}

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

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

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 35%, #7690c6, #163b68 60%, #001f32);
  transition: .55s ease
}

.loader img {
  width: 190px;
  filter: brightness(0) invert(1);
  animation: pulse 1.15s ease-in-out infinite
}

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

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  height: 4px;
  width: 0;
  z-index: 2200;
  background: linear-gradient(90deg, #fff, var(--green), #8ea4d5);
  box-shadow: 0 0 18px rgba(98, 216, 78, .7)
}

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

.site-header.scrolled {
  height: 64px;
  background: rgba(0, 45, 63, .78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(0, 25, 39, .25)
}

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

.iv2-logo {
  width: 138px;
  filter: brightness(0) invert(1)
}

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

.sn-logo {
  font-size: 1.24rem;
  letter-spacing: -.04em
}

.sn-logo span,
.service-logo span {
  color: var(--green)
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 25px);
  font-size: .9rem;
  font-weight: 800
}

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

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

.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 0;
  background: #fff;
  border-radius: 99px;
  transition: .25s
}

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

.nav-button {
  padding: 10px 19px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 99px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px)
}

.nav-button:after {
  display: none
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 15px;
  background: rgba(255, 255, 255, .14);
  place-items: center;
  gap: 5px;
  cursor: pointer
}

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

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

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

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

.hero {
  min-height: 670px;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #7a92c8, #b7c5df);
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(103, 127, 184, .72), rgba(250, 252, 255, .54)), url('img/icon-servicenow.png') center 18%/cover no-repeat;
  opacity: .62;
  filter: grayscale(.05);
  transform: scale(1.06)
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 14% 22%, rgba(255, 255, 255, .26), transparent 26%), radial-gradient(circle at 82% 20%, rgba(98, 216, 78, .14), transparent 24%)
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 105px
}

.service-logo {
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(3.7rem, 8vw, 6.6rem);
  letter-spacing: -.08em;
  font-weight: 900;
  line-height: .9;
  text-shadow: 0 22px 70px rgba(0, 0, 0, .14)
}

.hero p {
  font-size: clamp(1.22rem, 2.4vw, 2rem);
  margin: 26px 0 32px;
  color: rgba(255, 255, 255, .96);
  font-weight: 500
}

.partner-badge {
  position: absolute;
  right: 3%;
  bottom: 55px;
  width: 118px;
  border-radius: 9px;
  box-shadow: 0 18px 55px rgba(0, 26, 44, .25)
}

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

footer .container,
.footer-bottom {
  position: relative;
  z-index: 1
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s
}

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

.btn-dark {
  background: #003a50;
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 45, 63, .22)
}

.btn-blue {
  background: var(--blue2);
  color: #fff;
  box-shadow: 0 18px 50px rgba(94, 120, 181, .28)
}

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

.about {
  background: linear-gradient(180deg, #fff, #f8fbff)
}

.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(40px, 7vw, 105px);
  align-items: center
}

.section-title h2 {
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: .97;
  letter-spacing: -.06em;
  color: #7a8dba;
  font-weight: 900
}

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

.about-text {
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.85;
  color: #0b2539
}

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

.specialties {
  position: relative;
  padding: 90px 0 80px;
  background: #7890c2;
  color: #fff;
  overflow: hidden
}

.specialties:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 10%, rgba(255, 255, 255, .16), transparent 28%), radial-gradient(circle at 88% 60%, rgba(98, 216, 78, .1), transparent 32%)
}

.center {
  text-align: center;
  position: relative;
  z-index: 1
}

.kicker {
  display: block;
  color: inherit;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 14px;
  opacity: .85
}

.center h2 {
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.03;
  letter-spacing: -.055em
}

.center p {
  max-width: 850px;
  margin: 18px auto 0;
  line-height: 1.75;
  color: rgba(255, 255, 255, .9)
}

.specialty-showcase {
  position: relative;
  z-index: 1;
  margin-top: 54px;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 30px;
  align-items: center
}

.specialty-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 46px;
  align-items: center
}

.specialty-icon {
  height: 220px;
  border: 5px solid rgba(255, 255, 255, .9);
  border-radius: 18px;
  display: grid;
  place-items: center
}

.specialty-icon i {
  font-size: 7rem;
  color: #fff
}

.specialty-card h3 {
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(2rem, 3.3vw, 3.4rem);
  letter-spacing: -.05em;
  margin-bottom: 18px
}

.specialty-card small {
  font-size: .72em
}

.specialty-card p,
.specialty-card li {
  line-height: 1.72;
  color: rgba(255, 255, 255, .95)
}

.specialty-card strong {
  display: block;
  margin: 24px 0 10px
}

.specialty-card ul {
  list-style: none
}

.specialty-card li:before {
  content: "- ";
  font-weight: 900
}

.slider-btn,
.case-nav {
  border: 1px solid rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: .25s
}

.slider-btn:hover,
.case-nav:hover {
  background: #fff;
  color: var(--blue2);
  transform: scale(1.05)
}

.offers {
  background: linear-gradient(180deg, #fff, #f7faff);
  overflow: hidden
}

.offers:before,
.cases:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(110, 137, 190, .05) 25%, transparent 25%), linear-gradient(45deg, rgba(110, 137, 190, .04) 25%, transparent 25%);
  background-size: 80px 80px;
  opacity: .45
}

.offers .center h2 {
  color: #092538
}

.offers .center p {
  color: #152b40
}

.offer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 56px 0 52px
}

.offer-card {
  position: relative;
  padding: 38px 24px;
  min-height: 230px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 33, 55, .1);
  border: 1px solid rgba(99, 126, 181, .12);
  transition: .3s;
  overflow: hidden
}

.offer-card:after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -36px;
  width: 112px;
  height: 98px;
  background: rgba(105, 135, 196, .08);
  border-radius: 55% 0 0 0
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(0, 45, 63, .15)
}

.offer-card span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--blue2);
  color: #fff;
  font-weight: 900;
  margin-bottom: 34px
}

.offer-card h3 {
  font-family: Poppins, Inter, sans-serif;
  color: #7186bd;
  font-size: 1.28rem;
  line-height: 1.12;
  margin-bottom: 18px
}

.offer-card p {
  color: #5a6982;
  line-height: 1.7
}

.cases-banner {
  background: #f7faff
}

.cases-banner-trigger {
  display: block;
  width: 100%;
  height: 100vh;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  overflow: hidden;
  background: var(--navy)
}

.cases-banner-trigger img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px
}

.modal.open {
  display: flex
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 31, 50, .65);
  backdrop-filter: blur(4px)
}

.modal-dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: var(--radius);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px 40px;
  box-shadow: var(--shadow)
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--ice);
  color: var(--navy);
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .25s ease, color .25s ease
}

.modal-close:hover {
  background: var(--blue2);
  color: #fff
}

.modal-content h3 {
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 16px
}

.modal-intro {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px
}

.modal-case+.modal-case {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e7edf7
}

.modal-case h4 {
  font-family: Poppins, Inter, sans-serif;
  color: var(--blue2);
  font-size: 1.1rem;
  margin-bottom: 8px
}

.modal-case p {
  color: var(--muted);
  line-height: 1.7
}

body.modal-open {
  overflow: hidden
}

.cases {
  position: relative;
  background: #fff;
  padding-bottom: 70px
}

.cases-head {
  position: relative;
  z-index: 1;
  background: #002d3f;
  color: #fff;
  text-align: center;
  padding: 70px 0 94px
}

.cases-head h2 {
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  letter-spacing: -.05em
}

.case-frame {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: -56px auto 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 36px 110px rgba(0, 33, 55, .24);
  background: #001f32
}

.case-frame img {
  width: 100%;
  height: 410px;
  object-fit: cover
}

.servicenow-gallery .specialty-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  margin-top: 0;
  z-index: 4
}

.servicenow-gallery {
  background: var(--navy)
}

.servicenow-gallery .case-frame img {
  object-fit: contain
}

#servicenow-course .case-frame img {
  object-fit: contain
}

.prev-academy {
  left: 16px
}

.next-academy {
  right: 16px
}

.servicenow-gallery .prev-sn {
  left: 16px
}

.servicenow-gallery .next-sn {
  right: 16px
}

.case-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .75));
  color: #fff;
  padding: 42px 20px 20px;
  font-weight: 800
}

.case-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4
}

.prev-case {
  left: 16px
}

.next-case {
  right: 16px
}

.know-link {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 32px auto 0;
  color: #7186bd;
  font-size: clamp(1.6rem, 3.4vw, 3.1rem);
  font-weight: 900;
  letter-spacing: .02em
}

.know-link:first-letter {}

.know-link span {
  font-weight: 400
}

.course-banner {
  overflow: hidden;
  background: #f7faff;
  padding: 40px 0
}

.course-banner img {
  width: 100%;
  max-height: 275px;
  object-fit: cover;
  box-shadow: 0 30px 90px rgba(0, 33, 55, .16)
}

footer {
  position: relative;
  background: #6d86bd;
  color: #fff;
  padding: 58px 0 38px;
  overflow: hidden
}

footer:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 90%, rgba(255, 255, 255, .12), transparent 34%), radial-gradient(circle at 90% 0, rgba(0, 45, 63, .13), transparent 38%)
}

footer .container {
  position: relative;
  z-index: 1
}

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

.footer-brand img {
  width: 160px;
  filter: brightness(0) invert(1);
  margin-bottom: 14px
}

footer p {
  font-size: .94rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .92)
}

footer h3 {
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.55rem;
  margin-bottom: 15px
}

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

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

.social-icons a:hover {
  background: rgba(255, 255, 255, .28);
  transform: translateY(-2px)
}

.love {
  display: block;
  margin-top: 28px;
  letter-spacing: .12em
}

.love i {
  color: #fff
}

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

.whatsapp-float i {
  font-size: 1.9rem
}

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

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s 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: .34s
}

@keyframes pulse {
  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:1060px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .specialty-card {
    grid-template-columns: 1fr
  }

  .specialty-icon {
    height: 160px
  }

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

  .partner-badge {
    position: static;
    margin: 28px auto 0
  }
}

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

  .nav {
    position: fixed;
    top: 78px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(0, 45, 63, .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 {
    grid-template-columns: 1fr
  }

  .specialty-showcase {
    grid-template-columns: 1fr
  }

  .slider-btn {
    display: none
  }

  .case-frame img {
    height: 330px
  }
}

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

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

  .iv2-logo {
    width: 112px
  }

  .brand>span,
  .sn-logo {
    display: none
  }

  .hero {
    min-height: 560px
  }

  .hero-content {
    padding: 100px 0 80px
  }

  .service-logo {
    font-size: 3.6rem
  }

  .hero p {
    font-size: 1.05rem
  }

  .section {
    padding: 68px 0
  }

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

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

  .specialty-card h3 {
    font-size: 2rem
  }

  .case-frame img {
    height: 255px
  }

  .course-banner img {
    height: 180px
  }

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


/* =========================
   Camada premium de animações
   ========================= */
:root {
  --ease-premium: cubic-bezier(.22, 1, .36, 1);
  --glow-green: 0 0 34px rgba(98, 216, 78, .38);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(98, 216, 78, .09), transparent 25rem),
    radial-gradient(circle at calc(var(--mx, 50%) + 18%) calc(var(--my, 20%) + 12%), rgba(255, 255, 255, .05), transparent 22rem);
  opacity: .9;
  transition: opacity .35s ease;
}

.site-header {
  animation: headerDrop .82s var(--ease-premium) both;
}

.site-header::before {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 0;
  height: 1px;
  /* background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), rgba(98, 216, 78, .62), transparent); */
  transform: scaleX(.35);
  opacity: .72;
  transform-origin: center;
  transition: .45s var(--ease-premium);
}

.site-header.scrolled::before {
  transform: scaleX(1);
  opacity: .95
}

.brand img,
.sn-logo {
  transition: transform .35s var(--ease-premium), filter .35s ease
}

.brand:hover img,
.brand:hover .sn-logo {
  transform: translateY(-2px)
}

.nav a.active {
  opacity: 1;
  color: #fff
}

.nav a.active::after {
  width: 100%;
  background: var(--green);
  box-shadow: var(--glow-green)
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
  opacity: .34;
  z-index: 1;
}

.hero::before {
  left: -18vw;
  top: 9%;
  background: radial-gradient(circle, rgba(98, 216, 78, .42), transparent 66%);
  animation: orbFloatA 11s ease-in-out infinite
}

.hero::after {
  right: -18vw;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, .28), transparent 64%);
  animation: orbFloatB 13s ease-in-out infinite
}

.hero-bg {
  animation: heroBreath 12s ease-in-out infinite alternate;
  will-change: transform
}

.hero-pattern {
  animation: patternDrift 26s linear infinite
}

.service-logo {
  position: relative;
  display: inline-block;
  animation: logoReveal 1.05s var(--ease-premium) both .12s;
  text-shadow: 0 28px 80px rgba(0, 30, 50, .18);
}

.service-logo::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 6px;
  height: 10px;
  background: linear-gradient(90deg, transparent, rgba(98, 216, 78, .75), transparent);
  filter: blur(14px);
  opacity: .75;
  transform: scaleX(.2);
  animation: underlineGlow 1.2s var(--ease-premium) both .65s;
}

.hero-content p {
  animation: fadeUp .9s var(--ease-premium) both .35s
}

.hero-content .btn {
  animation: fadeUp .9s var(--ease-premium) both .52s
}

.partner-badge {
  animation: badgeFloat 5.6s ease-in-out infinite, badgeIn .9s var(--ease-premium) both .7s;
  transform-origin: center;
}

.hero-wave {
  animation: waveFloat 7.5s ease-in-out infinite;
  box-shadow: 0 -28px 70px rgba(255, 255, 255, .22)
}

.btn {
  position: relative;
  overflow: hidden;
  will-change: transform
}

.btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .42), transparent);
  transform: translateX(-120%) skewX(-18deg);
  transition: .6s var(--ease-premium)
}

.btn:hover::before {
  transform: translateX(120%) skewX(-18deg)
}

.btn-dark:hover,
.btn-blue:hover {
  box-shadow: 0 24px 62px rgba(0, 45, 63, .26), var(--glow-green)
}

.section-title h2,
.center h2,
.cases-head h2,
.know-link {
  background: linear-gradient(90deg, currentColor 0%, currentColor 58%, rgba(98, 216, 78, .9) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: titleShine 7s ease-in-out infinite
}

.specialty-showcase,
.case-frame,
.course-banner img,
.footer-grid {
  will-change: transform
}

.specialty-card,
.case-frame,
.course-banner img {
  transition: transform .45s var(--ease-premium), box-shadow .45s var(--ease-premium), filter .45s ease
}

.specialty-showcase:hover .specialty-card {
  transform: translateY(-6px)
}

.specialty-icon {
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .15), 0 28px 80px rgba(0, 45, 63, .12)
}

.specialty-icon::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 90deg, transparent, rgba(255, 255, 255, .34), transparent 34%);
  animation: spin 8s linear infinite
}

.specialty-icon i {
  position: relative;
  z-index: 1;
  animation: softFloat 4.5s ease-in-out infinite
}

.offer-card {
  will-change: transform
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(98, 216, 78, .16), transparent 42%);
  opacity: 0;
  transition: .35s ease
}

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

.offer-card:hover span {
  background: var(--green);
  color: #002d3f;
  box-shadow: var(--glow-green)
}

.offer-card span,
.offer-card h3,
.offer-card p {
  position: relative;
  z-index: 1
}

.case-frame {
  border-radius: 30px
}

.case-frame:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 44px 125px rgba(0, 33, 55, .28)
}

.case-frame img {
  transition: opacity .18s ease, transform .75s var(--ease-premium), filter .35s ease
}

.case-frame:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03)
}

.case-caption {
  backdrop-filter: blur(3px)
}

.case-caption::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: var(--glow-green);
  vertical-align: middle
}

.course-banner {
  position: relative
}

.course-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98, 216, 78, .65), transparent)
}

.course-banner img:hover {
  transform: translateY(-5px) scale(1.01);
  filter: saturate(1.06)
}

footer {
  border-radius: 42px 42px 0 0;
  margin-top: -39px;
  padding-top: 86px
}

footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), rgba(98, 216, 78, .8), transparent)
}

.social-icons a:hover {
  box-shadow: var(--glow-green)
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(37, 211, 102, .5);
  animation: wppRing 2.4s ease-out infinite
}

.reveal {
  filter: blur(6px)
}

.reveal.active {
  filter: blur(0)
}

.reveal[data-reveal="left"] {
  transform: translateX(-46px)
}

.reveal[data-reveal="right"] {
  transform: translateX(46px)
}

.reveal[data-reveal="zoom"] {
  transform: scale(.94)
}

.reveal.active[data-reveal="left"],
.reveal.active[data-reveal="right"],
.reveal.active[data-reveal="zoom"] {
  transform: none
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(98, 216, 78, .72);
  box-shadow: 0 0 18px rgba(98, 216, 78, .9);
  pointer-events: none;
  opacity: .68;
  animation: sparkleFloat var(--dur, 8s) ease-in-out infinite;
  z-index: 1
}

.cursor-glow {
  position: fixed;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(98, 216, 78, .16), transparent 66%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity .25s ease
}

body:hover .cursor-glow {
  opacity: 1
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-22px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes heroBreath {
  from {
    transform: scale(1.055) translate3d(0, 0, 0)
  }

  to {
    transform: scale(1.105) translate3d(1.4%, 1%, 0)
  }
}

@keyframes patternDrift {
  to {
    transform: translate3d(44px, 22px, 0)
  }
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.95);
    letter-spacing: -.11em
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes underlineGlow {
  to {
    transform: scaleX(1)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes badgeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.9)
  }

  to {
    opacity: 1
  }
}

@keyframes badgeFloat {

  0%,
  100% {
    translate: 0 0
  }

  50% {
    translate: 0 -10px
  }
}

@keyframes waveFloat {

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

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

@keyframes orbFloatA {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(7vw, 4vh) scale(1.08)
  }
}

@keyframes orbFloatB {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(-6vw, -4vh) scale(1.05)
  }
}

@keyframes titleShine {

  0%,
  100% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }
}

@keyframes softFloat {

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

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

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

@keyframes wppRing {
  0% {
    transform: scale(.82);
    opacity: .75
  }

  100% {
    transform: scale(1.35);
    opacity: 0
  }
}

@keyframes sparkleFloat {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: .24
  }

  45% {
    transform: translate3d(var(--x, 28px), var(--y, -34px), 0);
    opacity: .86
  }
}

@media(max-width:900px) {
  footer {
    border-radius: 30px 30px 0 0;
    margin-top: -18px;
    padding-top: 70px
  }

  .cursor-glow {
    display: none
  }

  .hero::before,
  .hero::after {
    opacity: .2
  }
}

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

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

  .cursor-glow,
  .sparkle {
    display: none !important
  }
}

/* =========================
   Ajustes finos: animações discretas + fundo real no topo
   ========================= */
body::before,
.cursor-glow,
.sparkle,
.hero::before,
.hero::after {
  display: none !important;
}

.hero {
  min-height: 690px;
  background: #d9e3f6;
}

.hero-bg {
  background:
    linear-gradient(180deg, rgba(104, 128, 185, .70) 0%, rgba(183, 198, 226, .62) 54%, rgba(255, 255, 255, .74) 100%),
    url('img/hero-office.jpg') center/cover no-repeat !important;
  opacity: 1 !important;
  filter: saturate(.92) contrast(.96) brightness(1.04) !important;
  transform: scale(1.015) !important;
  animation: none !important;
}

.hero-pattern {
  opacity: .22;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .22), transparent 28%),
    radial-gradient(circle at 82% 25%, rgba(98, 216, 78, .10), transparent 22%) !important;
  animation: none !important;
}

.site-header {
  animation: none !important;
}

.service-logo {
  animation: fadeUpSoft .75s ease both !important;
}

.service-logo::after {
  display: none !important;
}

.hero-content p,
.hero-content .btn,
.partner-badge {
  animation: fadeUpSoft .75s ease both !important;
}

.partner-badge {
  animation-delay: .16s !important;
}

.hero-wave {
  animation: none !important;
}

.specialty-icon::after {
  display: none !important;
}

.specialty-icon i {
  animation: none !important;
}

.section-title h2,
.center h2,
.cases-head h2,
.know-link {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  animation: none !important;
}

.reveal {
  filter: none !important;
  transition: opacity .65s ease, transform .65s ease !important;
}

.case-frame:hover,
.specialty-showcase:hover .specialty-card,
.course-banner img:hover {
  transform: translateY(-4px) !important;
}

.case-frame:hover img {
  transform: scale(1.018) !important;
}

.offer-card:hover {
  transform: translateY(-5px) !important;
}

.btn::before {
  opacity: .6;
}

.whatsapp-float::after {
  animation-duration: 3.2s !important;
  opacity: .45;
}

@keyframes fadeUpSoft {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@media(max-width:640px) {
  .hero {
    min-height: 580px;
  }

  .hero-bg {
    background-position: center top !important;
  }
}

.brand .servicenow-logo {
  width: 130px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .12));
}

.brand .iv2-logo {
  width: 132px;
  height: auto;
}

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

.hero {
  min-height: 735px;
  background: #dce6f6;
  color: #fff;
}

.hero-bg {
  background:
    linear-gradient(180deg, rgba(54, 76, 132, .58) 0%, rgba(125, 147, 194, .42) 46%, rgba(255, 255, 255, .78) 100%),
    url('img/hero-buildings.jpg') center/cover no-repeat !important;
  opacity: 1 !important;
  filter: saturate(.95) contrast(.98) brightness(1.04) !important;
  transform: scale(1.012) !important;
  animation: none !important;
}

.hero-pattern {
  opacity: .08 !important;
  background-image: radial-gradient(rgba(255, 255, 255, .85) 1px, transparent 1px) !important;
  background-size: 18px 18px !important;
  animation: none !important;
}

.hero-content {
  padding-top: 142px;
}

.hero-service-logo {
  width: min(680px, 76vw);
  margin: 0 auto 34px;
  filter: drop-shadow(0 26px 70px rgba(0, 35, 55, .18));
  animation: fadeUpSoft .75s ease both !important;
}

.hero-content p {
  max-width: 1180px;
  margin-inline: auto;
  font-size: clamp(1.55rem, 2.8vw, 2.55rem);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: .015em;
  text-shadow: 0 12px 34px rgba(0, 30, 50, .22);
}

.partner-badge {
  width: 170px;
  right: clamp(52px, 9vw, 125px);
  bottom: 100px;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 45, 63, .20);
  animation: fadeUpSoft .75s ease both .18s !important;
}

.btn-dark {
  background: #002d3f;
  color: #fff;
  box-shadow: 0 22px 46px rgba(0, 45, 63, .22);
}

.hero-wave {
  animation: none !important;
}

.course-banner {
  padding: 74px 24px 84px;
  background:
    linear-gradient(180deg, #fff 0%, #f4f7fb 100%);
  overflow: hidden;
}

.course-banner img {
  width: min(1220px, 100%);
  max-height: 430px;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: 0 30px 90px rgba(12, 28, 64, .14);
  border: 1px solid rgba(0, 45, 63, .08);
  transform: none !important;
}

.course-banner img:hover {
  transform: translateY(-3px) !important;
  filter: saturate(1.02) contrast(1.01);
}

/* reduz qualquer efeito mais forte que tenha ficado da versão animada */
.hero::before,
.hero::after,
.cursor-glow,
.sparkle {
  display: none !important;
}

.service-logo,
.service-logo::after {
  display: none !important;
}

@media(max-width:900px) {
  .brand .servicenow-logo {
    width: 112px
  }

  .brand .iv2-logo {
    width: 118px
  }

  .hero {
    min-height: 660px
  }

  .partner-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 28px auto 0;
    width: 145px
  }

  .hero-content {
    padding-top: 118px
  }
}

@media(max-width:640px) {

  .brand .servicenow-logo,
  .brand span {
    display: none
  }

  .hero {
    min-height: 590px
  }

  .hero-service-logo {
    width: 82vw;
    margin-bottom: 24px
  }

  .hero-content p {
    font-size: 1.18rem
  }

  .course-banner {
    padding: 52px 14px 62px
  }

  .course-banner img {
    max-height: 300px;
    border-radius: 0
  }
}

/* =====================================================
   Ajustes finais: topo sem sobreposição + curso full + S2P/S3P
   ===================================================== */
.hero {
  min-height: 735px !important;
  display: grid !important;
  place-items: center !important;
}

.hero-bg {
  background:
    linear-gradient(180deg, rgba(45, 62, 110, .52) 0%, rgba(119, 141, 190, .40) 48%, rgba(255, 255, 255, .78) 100%),
    url('img/hero-buildings.jpg') center/cover no-repeat !important;
  opacity: 1 !important;
  filter: saturate(.96) contrast(.98) brightness(1.04) !important;
  transform: scale(1.012) !important;
}

.hero-content {
  width: min(1180px, calc(100% - 56px)) !important;
  padding: 140px 0 118px !important;
  text-align: center !important;
}

.hero-service-logo {
  display: block !important;
  width: min(650px, 70vw) !important;
  margin: 0 auto 34px !important;
}

.hero-main-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}

.hero-copy {
  min-width: 0;
  text-align: center;
}

.hero-copy p,
.hero-content p {
  max-width: 760px !important;
  margin: 0 auto 28px !important;
  font-size: clamp(1.45rem, 2.55vw, 2.35rem) !important;
  line-height: 1.34 !important;
  font-weight: 500 !important;
}

.partner-badge {
  position: static !important;
  width: 175px !important;
  justify-self: center;
  align-self: center;
  margin: 0 !important;
  border-radius: 11px !important;
  box-shadow: 0 22px 62px rgba(0, 45, 63, .22) !important;
}

.specialty-showcase {
  grid-template-columns: 52px minmax(0, 1fr) 52px !important;
  max-width: 1120px;
  margin-inline: auto;
}

.specialty-track {
  position: relative;
  min-height: 300px;
}

.specialty-track .specialty-card {
  display: grid !important;
  grid-template-columns: 240px minmax(0, 1fr) !important;
  gap: 46px !important;
  align-items: center !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  inset: 0;
  transform: translateX(18px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
}

.specialty-track .specialty-card.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  position: relative;
  transform: translateX(0);
}

.specialty-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
}

.specialty-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .42);
  transition: .25s ease;
}

.specialty-dots span.active {
  width: 26px;
  background: #fff;
}

.course-banner {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #fff !important;
  overflow: hidden !important;
}

.course-banner img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: clamp(310px, 38vw, 540px) !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.course-banner img:hover {
  transform: none !important;
  filter: none !important;
}

@media(max-width: 900px) {
  .hero-content {
    padding-top: 118px !important;
  }

  .hero-main-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .partner-badge {
    width: 145px !important;
  }

  .specialty-track {
    min-height: 560px;
  }

  .specialty-track .specialty-card {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    text-align: center;
  }

  .specialty-track .specialty-icon {
    width: min(320px, 100%);
    margin: 0 auto;
  }
}

@media(max-width: 640px) {
  .hero {
    min-height: 620px !important;
  }

  .hero-content {
    width: min(100% - 32px, 1180px) !important;
    padding: 108px 0 88px !important;
  }

  .hero-service-logo {
    width: 84vw !important;
  }

  .hero-copy p,
  .hero-content p {
    font-size: 1.18rem !important;
  }

  .specialty-showcase {
    grid-template-columns: 42px minmax(0, 1fr) 42px !important;
    gap: 10px !important;
  }

  .specialty-track {
    min-height: 610px;
  }

  .specialty-track .specialty-card h3 {
    font-size: 2rem !important;
  }

  .course-banner img {
    height: 240px !important;
  }
}


/* =====================================================
   Correção mobile - Especialidades S2P/S3P
   Evita texto espremido em telas menores
   ===================================================== */
@media (max-width: 900px) {
  .specialties {
    padding: 72px 0 70px !important;
  }

  .specialties .container {
    width: min(100% - 32px, var(--container)) !important;
  }

  .specialty-showcase {
    display: block !important;
    max-width: 100% !important;
    margin-top: 42px !important;
  }

  .specialty-showcase .slider-btn {
    display: none !important;
  }

  .specialty-track {
    width: 100% !important;
    min-height: auto !important;
  }

  .specialty-track .specialty-card {
    width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    align-items: center !important;
    text-align: left !important;
  }

  .specialty-track .specialty-card>div:last-child {
    width: 100% !important;
    max-width: 100% !important;
  }

  .specialty-track .specialty-icon {
    width: min(260px, 100%) !important;
    height: 150px !important;
    margin: 0 auto 4px !important;
  }

  .specialty-track .specialty-icon i {
    font-size: 4.7rem !important;
  }

  .specialty-track .specialty-card h3 {
    text-align: center !important;
    font-size: clamp(2rem, 8vw, 2.7rem) !important;
    line-height: 1.08 !important;
    margin-bottom: 14px !important;
  }

  .specialty-track .specialty-card h3 small {
    display: block !important;
    margin-top: 6px !important;
    font-size: .58em !important;
    line-height: 1.25 !important;
  }

  .specialty-track .specialty-card p,
  .specialty-track .specialty-card li {
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    font-size: .98rem !important;
    line-height: 1.72 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    white-space: normal !important;
  }

  .specialty-track .specialty-card strong {
    text-align: left !important;
    margin-top: 18px !important;
  }

  .specialty-track .specialty-card ul {
    width: 100% !important;
    max-width: 100% !important;
  }

  .specialty-dots {
    margin-top: 28px !important;
  }
}

@media (max-width: 520px) {
  .specialties .center h2 {
    font-size: clamp(2rem, 9vw, 2.65rem) !important;
  }

  .specialties .center p {
    font-size: .98rem !important;
    line-height: 1.65 !important;
  }

  .specialty-track .specialty-icon {
    width: 132px !important;
    height: 132px !important;
    border-width: 4px !important;
    border-radius: 18px !important;
  }

  .specialty-track .specialty-icon i {
    font-size: 4rem !important;
  }

  .specialty-track .specialty-card h3 {
    font-size: 2.15rem !important;
  }

  .specialty-track .specialty-card p,
  .specialty-track .specialty-card li {
    font-size: .95rem !important;
  }
}