@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #111827;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h5 {
  font-family: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
button:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

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

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

.animation-delay-200 {
  animation-delay: 200ms;
}

.animation-delay-400 {
  animation-delay: 400ms;
}

.btn {
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.625rem;
  transition: all 300ms ease-in-out;
  cursor: pointer;
}
.btn--primary {
  flex: 1;
  color: #ffffff;
  background-color: #2563eb;
}
.btn--primary:hover:not(:disabled) {
  transform: scale(1.05);
  background-color: #103d9d;
}
.btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--secondary {
  color: #374151;
  background-color: transparent;
  border: 1px solid #d1d5db;
}
.btn--secondary:hover {
  background-color: #f9fafb;
}
.btn__loading {
  display: none;
}
.btn.loading .btn__text {
  display: none;
}
.btn.loading .btn__loading {
  display: inline !important;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: #111827;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}
.header__logo {
  flex-shrink: 0;
  transition: opacity 300ms ease-in-out;
}
.header__logo img {
  width: 165px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
@media (min-width: 768px) {
  .header__logo img {
    width: 195px;
    height: 60px;
  }
}
.header__logo:hover img {
  opacity: 0.8;
}
.header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .header__nav {
    display: flex;
  }
}
.header__nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  transition: color 300ms ease-in-out;
}
.header__nav-link:hover {
  color: #dbeafe;
}
.header__lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
}
.header__lang-switcher--mobile {
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 0.75rem 0;
}
.header__lang-icon {
  width: 32px;
  transition: all 300ms ease-in-out;
  opacity: 0.5;
  cursor: pointer;
}
.header__lang-icon--active {
  opacity: 1;
}
.header__lang-link {
  display: flex;
  align-items: center;
}
.header__lang-link:hover .header__lang-icon {
  opacity: 0.8;
  transform: scale(1.1);
}
.header__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2563eb;
  background-color: #ffffff;
  border-radius: 0.625rem;
  transition: all 300ms ease-in-out;
}
.header__cta i {
  width: 16px;
  height: 16px;
}
.header__cta:hover {
  transform: scale(1.05);
  background-color: #eff6ff;
}
.header__mobile-toggle {
  display: flex;
  padding: 0.5rem;
  color: #ffffff;
  border-radius: 0.625rem;
  transition: background-color 300ms ease-in-out;
}
@media (min-width: 768px) {
  .header__mobile-toggle {
    display: none;
  }
}
.header__mobile-toggle i {
  width: 20px;
  height: 20px;
}
.header__mobile-toggle .icon-close {
  display: none;
}
.header__mobile-toggle.active .icon-menu {
  display: none;
}
.header__mobile-toggle.active .icon-close {
  display: block;
}
.header__mobile-toggle:hover {
  background-color: #103d9d;
}
.header__mobile-menu {
  display: none;
  padding: 1rem;
  background-color: #103d9d;
  animation: fadeIn 0.3s ease-out;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 74px;
  left: 0;
  width: 100%;
}
.header__mobile-menu.active {
  display: block;
}
@media (min-width: 768px) {
  .header__mobile-menu {
    display: none !important;
  }
}
.header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.header__mobile-link {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  border-radius: 0.625rem;
  transition: all 300ms ease-in-out;
}
.header__mobile-link:hover {
  background-color: #2563eb;
  color: #dbeafe;
}
.header__mobile-cta-wrapper {
  padding-top: 0.5rem;
  border-top: 1px solid #2563eb;
}
.header__mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2563eb;
  background-color: #ffffff;
  border-radius: 0.625rem;
  transition: background-color 300ms ease-in-out;
}
.header__mobile-cta i {
  width: 16px;
  height: 16px;
}
.header__mobile-cta:hover {
  background-color: #eff6ff;
}

.footer {
  padding: 2rem 0;
  color: #ffffff;
  background-color: #111827;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .footer__content {
    flex-direction: row;
  }
}
.footer__logo img {
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: opacity 300ms ease-in-out;
  width: 165px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
@media (min-width: 768px) {
  .footer__logo img {
    width: 195px;
    height: 60px;
  }
}
.footer__logo:hover img {
  opacity: 0.8;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #1f2937;
  border-radius: 0.625rem;
  transition: all 300ms ease-in-out;
}
.footer__social-link i {
  width: 20px;
  height: 20px;
}
.footer__social-link:hover {
  transform: scale(1.1);
  background-color: #2563eb;
}
.footer__bottom {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  border-top: 1px solid #1f2937;
}
@media (min-width: 768px) {
  .footer__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.footer__copyright, .footer__rights {
  font-size: 0.875rem;
  color: #9ca3af;
}
.footer__copyright .cnpj, .footer__rights .cnpj {
  font-size: 13px;
}
@media (min-width: 768px) {
  .footer__copyright {
    text-align: center;
  }
  .footer__rights {
    text-align: left;
  }
}
.footer .privacy-link,
.footer .cookie-link {
  margin-left: 0.5rem;
  color: #9ca3af;
  text-decoration: underline;
  cursor: pointer;
  transition: color 300ms ease-in-out;
}
.footer .privacy-link:hover,
.footer .cookie-link:hover {
  color: #5f8ef5;
}

.send-whatsapp {
  background: #25d366;
  box-sizing: border-box;
  display: inline-flex;
  padding: 0.75rem 1rem;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  cursor: pointer;
  border-radius: 9999px;
  position: fixed;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  right: 1rem;
  left: auto;
  bottom: 1rem;
  z-index: 99999;
  transition: all 300ms ease-in-out;
}
.send-whatsapp:hover {
  transform: scale(1.05);
  background-color: #1ab754;
}
.send-whatsapp span {
  margin-left: 0.5rem;
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
}
@media (max-width: 768px) {
  .send-whatsapp {
    bottom: 6rem;
  }
}
@media (max-width: 640px) {
  .send-whatsapp span {
    display: none;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  width: 100%;
  height: 100%;
}
.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-out;
  cursor: pointer;
}
.modal__content {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 42rem;
  max-height: 80vh;
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  animation: fadeInUp 0.3s ease-out;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.modal__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}
.modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #6b7280;
  border-radius: 0.5rem;
  transition: all 300ms ease-in-out;
  cursor: pointer;
}
.modal__close i {
  width: 20px;
  height: 20px;
}
.modal__close:hover {
  color: #111827;
  background-color: #f3f4f6;
}
.modal__body {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
}
.modal__footer {
  display: flex;
  justify-content: flex-end;
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
}
.modal__close-btn {
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
}

.privacy-section h4 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #111827;
}
.privacy-section p {
  color: #4b5563;
  line-height: 1.625;
}
.privacy-section ul {
  margin-top: 0.5rem;
  padding-left: 1rem;
  list-style-type: disc;
}
.privacy-section ul li {
  margin-bottom: 0.25rem;
  color: #4b5563;
  line-height: 1.625;
}

.privacy-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.privacy-list div {
  color: #4b5563;
}
.privacy-list div strong {
  color: #111827;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bg--gray {
  background-color: #f9fafb !important;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 470px;
  height: calc(100vh - 374px);
  overflow: hidden;
}
.hero__background {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #1e3a8a, #1e40af, #1e3a8a);
}
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  padding: 0 1rem;
  text-align: center;
  color: #ffffff;
}
.hero__title {
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 120%;
  animation: fadeInUp 0.6s ease-out;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 3.75rem;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 4.5rem;
  }
}
.hero__description {
  max-width: 48rem;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  opacity: 0.9;
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
}
@media (min-width: 768px) {
  .hero__description {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .hero__description {
    font-size: 1.5rem;
  }
}
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  animation: fadeInUp 0.6s ease-out 0.4s backwards;
}
@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.625rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 300ms ease-in-out;
}
.hero__btn--primary {
  color: #111827;
  background-color: #ffffff;
}
.hero__btn--primary:hover {
  transform: scale(1.05);
  background-color: #f3f4f6;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.hero__btn--secondary {
  color: #ffffff;
  border: 2px solid #ffffff;
}
.hero__btn--secondary:hover {
  transform: scale(1.05);
  color: #111827;
  background-color: #ffffff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.hero__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #111827;
  border-radius: 0.375rem;
}
.hero__btn-icon i {
  width: 16px;
  height: 16px;
  color: #ffffff;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  display: none;
}
.hero__scroll-mouse {
  display: flex;
  justify-content: center;
  width: 24px;
  height: 40px;
  border: 2px solid #ffffff;
  border-radius: 9999px;
}
.hero__scroll-wheel {
  width: 4px;
  height: 12px;
  margin-top: 0.5rem;
  background-color: #ffffff;
  border-radius: 9999px;
  animation: pulse 2s infinite;
}

.features {
  padding: 2.5rem 0;
  background-color: #f9fafb;
}
.features#solutions {
  padding-top: 2.5rem;
}
.features__header {
  margin-bottom: 4rem;
  text-align: center;
}
.features__title {
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
}
@media (min-width: 768px) {
  .features__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .features__title {
    font-size: 3rem;
  }
}
.features__description {
  max-width: 56rem;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.625;
  color: #4b5563;
}
.features__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.features__stats {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .features__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 2rem 2.5rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 300ms ease-in-out;
  text-align: justify;
}
.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 0.75rem;
  background-color: #dbeafe;
  border-radius: 0.625rem;
  transition: background-color 300ms ease-in-out;
}
.feature-card__icon i {
  width: 24px;
  height: 24px;
  color: #ffffff;
  transition: color 300ms ease-in-out;
}
.feature-card__icon svg {
  stroke: #000000;
}
.feature-card__icon svg.lucide-hand-helping {
  position: relative;
  top: 8px;
  width: 26px;
  height: 26px;
}
.feature-card__icon svg.lucide-gem {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 18px;
  height: 18px;
}
.feature-card:hover .feature-card__icon {
  background-color: #2563eb;
}
.feature-card:hover .feature-card__icon i {
  color: #ffffff;
}
.feature-card:hover .feature-card__icon svg {
  stroke: #ffffff;
}
.feature-card__title {
  margin-bottom: 0.5rem;
  font-size: 1.875rem;
  font-weight: 600;
  color: #111827;
}
.feature-card__description {
  margin-bottom: 1.5rem;
  line-height: 1.625;
  color: #4b5563;
  font-size: 1.125rem;
}
.feature-card__description:last-child {
  margin-bottom: 0;
}

.stat {
  text-align: center;
}
.stat__number {
  margin-bottom: 0.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: #2563eb;
}
@media (min-width: 768px) {
  .stat__number {
    font-size: 2.25rem;
  }
}
.stat__number span {
  font-size: inherit;
}
.stat__label {
  font-weight: 500;
  color: #4b5563;
}

.services {
  padding: 2.5rem 0 2.5rem 0;
  background-color: #ffffff;
}
.services__header {
  margin-bottom: 2rem;
  text-align: center;
}
.services__subtitle {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2563eb;
}
.services__title {
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
}
@media (min-width: 768px) {
  .services__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .services__title {
    font-size: 3rem;
  }
}
.services__description {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.125rem;
  color: #4b5563;
}
.services__carousel-wrapper {
  position: relative;
  margin-bottom: 4rem;
  padding-top: 4rem;
}
@media (max-width: 768px) {
  .services__carousel-wrapper {
    padding-top: 3rem;
  }
}
.services__carousel {
  margin: 0 auto;
}
.services__carousel .slick-list {
  overflow: hidden;
  margin: 0 -0.5rem;
}
.services__carousel .slick-slide {
  padding: 0 0.5rem;
}
.services__carousel .slick-slide > div {
  height: 100%;
}
.services__carousel .slick-dots {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}
.services__carousel .slick-dots li {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services__carousel .slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 0;
  font-size: 0;
  background-color: #d1d5db;
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}
.services__carousel .slick-dots li button:before {
  display: none;
}
.services__carousel .slick-dots li.slick-active button {
  width: 24px;
  background-color: #2563eb;
  border-radius: 9999px;
}
.services__carousel-prev, .services__carousel-next {
  position: absolute;
  top: 0.5rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #374151;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 300ms ease-in-out;
}
@media (max-width: 768px) {
  .services__carousel-prev, .services__carousel-next {
    top: 0;
    width: 36px;
    height: 36px;
  }
}
.services__carousel-prev i, .services__carousel-next i {
  width: 24px;
  height: 24px;
}
.services__carousel-prev:hover, .services__carousel-next:hover {
  color: #ffffff;
  background-color: #2563eb;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.services__carousel-prev:disabled, .services__carousel-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.services__carousel-prev {
  right: 3rem;
}
.services__carousel-next {
  right: 0;
}
.services__grid {
  display: none;
}
.services__cta {
  margin-top: 4rem;
  padding: 2rem;
  text-align: center;
  color: #ffffff;
  background-color: #103d9d;
  border-radius: 1rem;
}
.services__cta-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .services__cta-title {
    font-size: 1.875rem;
  }
}
.services__cta-description {
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  color: #dbeafe;
}
.services__cta-btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  color: #2563eb;
  background-color: #ffffff;
  border-radius: 0.625rem;
  transition: all 300ms ease-in-out;
}
.services__cta-btn:hover {
  transform: scale(1.05);
  background-color: #eff6ff;
}

.service-card {
  margin-bottom: 1rem;
  text-align: justify;
}
.service-card .item {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #f9fafb;
  border-radius: 0.75rem;
  transition: all 300ms ease-in-out;
}
@media (min-width: 767px) {
  .service-card .item {
    min-height: 680px;
  }
}
.service-card .item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.service-card__image {
  overflow: hidden;
}
.service-card__image img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
}
.service-card:hover .service-card__image img {
  transform: scale(1.1);
}
.service-card__content {
  flex: 1;
  padding: 1.5rem;
}
.service-card__title {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  transition: color 300ms ease-in-out;
}
.service-card:hover .service-card__title {
  color: #2563eb;
}
.service-card__description {
  margin-bottom: 1rem;
  line-height: 1.625;
  color: #4b5563;
  font-size: 1.125rem;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2563eb;
  background-color: #dbeafe;
  border-radius: 9999px;
}

.partners {
  padding: 2.5rem 0 0;
  background-color: #ffffff;
}
.partners__header {
  margin-bottom: 2rem;
  text-align: center;
}
.partners__title {
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
}
@media (min-width: 768px) {
  .partners__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .partners__title {
    font-size: 3rem;
  }
}
.partners__description {
  max-width: 48rem;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.625;
  color: #4b5563;
}
.partners__carousel-wrapper {
  position: relative;
  padding-top: 4rem;
}
@media (max-width: 768px) {
  .partners__carousel-wrapper {
    padding-top: 3rem;
  }
}
.partners__carousel {
  margin: 0 auto;
}
.partners__carousel .slick-list {
  overflow: hidden;
  margin: 0 -0.5rem;
}
.partners__carousel .slick-slide {
  padding: 0 0.5rem;
}
.partners__carousel .slick-slide > div {
  height: 100%;
}
.partners__carousel .slick-dots {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}
.partners__carousel .slick-dots li {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners__carousel .slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 0;
  font-size: 0;
  background-color: #d1d5db;
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}
.partners__carousel .slick-dots li button:before {
  display: none;
}
.partners__carousel .slick-dots li.slick-active button {
  width: 24px;
  background-color: #2563eb;
  border-radius: 9999px;
}
.partners__carousel-prev, .partners__carousel-next {
  position: absolute;
  top: 0.5rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #374151;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 300ms ease-in-out;
}
@media (max-width: 768px) {
  .partners__carousel-prev, .partners__carousel-next {
    top: 0;
    width: 36px;
    height: 36px;
  }
}
.partners__carousel-prev i, .partners__carousel-next i {
  width: 24px;
  height: 24px;
}
.partners__carousel-prev:hover, .partners__carousel-next:hover {
  color: #ffffff;
  background-color: #2563eb;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.partners__carousel-prev:disabled, .partners__carousel-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.partners__carousel-prev {
  right: 3rem;
}
.partners__carousel-next {
  right: 0;
}
.partners__grid {
  display: none;
}

.partner-card {
  margin-bottom: 1rem;
  text-align: justify;
}
.partner-card .item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f9fafb;
  border-radius: 0.75rem;
  transition: all 300ms ease-in-out;
  min-height: 180px;
  padding: 2rem;
}
.partner-card .item img {
  width: 100%;
  max-height: 120px;
  transition: transform 500ms ease-in-out;
}
.partner-card .item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.partner-card .item:hover img {
  transform: scale(1.1);
}

.sponsorship {
  padding: 2.5rem 0;
}
.sponsorship__header {
  margin-top: 1rem;
  text-align: center;
}
.sponsorship__title {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}
@media (min-width: 768px) {
  .sponsorship__title {
    font-size: 1.875rem;
  }
}
.sponsorship__description {
  max-width: 48rem;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.625;
  color: #4b5563;
}
.sponsorship__grid {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsorship__grid--card {
  padding: 1rem;
  background-color: #f9fafb;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 300ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.sponsorship__grid--card img {
  max-height: 140px;
}
.sponsorship__grid--card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.sponsorship__grid--card:hover .sponsorship__grid--card__icon {
  background-color: #2563eb;
}

.contact {
  padding: 5rem 0;
  background-color: #f9fafb;
}
.contact__header {
  margin-bottom: 4rem;
  text-align: center;
}
.contact__title {
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
}
@media (min-width: 768px) {
  .contact__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .contact__title {
    font-size: 3rem;
  }
}
.contact__description {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.125rem;
  color: #4b5563;
}
.contact__content {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact__info-title {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}
.contact__info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact__form-wrapper {
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}
.contact__success {
  padding: 2rem;
  text-align: center;
}
.contact__success i {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  color: #22c55e;
}
.contact__success h4 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}
.contact__success p {
  color: #4b5563;
}
.contact__form-title {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: start;
}
.contact-info-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: #dbeafe;
  border-radius: 0.625rem;
}
.contact-info-item__icon i {
  width: 24px;
  height: 24px;
  color: #2563eb;
}
.contact-info-item__title {
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #111827;
}
.contact-info-item__text {
  color: #4b5563;
}
.contact-info-item__text.location {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.contact-info-item__text a {
  color: #2563eb;
  transition: color 300ms ease-in-out;
}
.contact-info-item__text a:hover {
  color: #103d9d;
}
.contact-info-item__subtext {
  font-size: 0.875rem;
  color: #6b7280;
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group--checkbox {
  flex-direction: row;
  gap: 0.75rem;
  align-items: start;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: #111827;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0.625rem;
  transition: all 300ms ease-in-out;
}
.form-input:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px #2563eb;
}
.form-input.error {
  border-color: #ef4444;
}
.form-input::placeholder {
  color: #9ca3af;
}

textarea.form-input {
  resize: none;
}

.form-checkbox {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 0.25rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  cursor: pointer;
}
.form-checkbox:focus {
  outline: none;
  box-shadow: 0 0 0 2px #2563eb;
}
.form-checkbox:checked {
  background-color: #2563eb;
  border-color: #2563eb;
}

.form-checkbox-label {
  font-size: 0.875rem;
  color: #4b5563;
  cursor: pointer;
}

.form-link {
  color: #2563eb;
  text-decoration: underline;
}
.form-link:hover {
  color: #103d9d;
}

.form-error {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc2626;
}
.form-error:empty {
  display: none;
}

.form-actions {
  display: flex;
  gap: 1rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.crm-hero {
  position: relative;
  padding: 3rem 0 3rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #111827 100%);
  color: #ffffff;
  overflow: hidden;
}
.crm-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.crm-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.crm-hero h1 {
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Raleway", sans-serif;
}
@media (min-width: 768px) {
  .crm-hero h1 {
    font-size: 3rem;
  }
}
.crm-hero p {
  max-width: 48rem;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: #e0e7ff;
}
.crm-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .crm-hero__actions {
    flex-direction: row;
  }
}

.crm-pill {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #dbeafe;
  background-color: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 9999px;
  backdrop-filter: blur(10px);
}

.crm-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.crm-kpi {
  padding: 1rem 1.5rem;
  background-color: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
  min-width: 180px;
  text-align: center;
  transition: all 300ms ease-in-out;
}
.crm-kpi:hover {
  background-color: rgba(37, 99, 235, 0.25);
  transform: translateY(-2px);
}
.crm-kpi strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #ffffff;
}
.crm-kpi span {
  font-size: 0.875rem;
  color: #dbeafe;
}

.crm-section {
  padding: 4rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.crm-section:last-of-type {
  border-bottom: none;
}
.crm-section--gray {
  background-color: #f9fafb;
}
.crm-section__header {
  margin-bottom: 3rem;
  text-align: center;
}
.crm-section__title {
  margin-bottom: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  font-family: "Raleway", sans-serif;
}
@media (min-width: 768px) {
  .crm-section__title {
    font-size: 2.25rem;
  }
}
.crm-section__description {
  max-width: 48rem;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.625;
  color: #4b5563;
}

.crm-grid {
  display: grid;
  gap: 2rem;
}
.crm-grid--two {
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .crm-grid--two {
    grid-template-columns: repeat(2, 1fr);
  }
}
.crm-grid--three {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .crm-grid--three {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .crm-grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
}
.crm-grid--four {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .crm-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .crm-grid--four {
    grid-template-columns: repeat(4, 1fr);
  }
}

.crm-card {
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 300ms ease-in-out;
}
.crm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.crm-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0.75rem;
  background-color: #dbeafe;
  border-radius: 0.625rem;
  transition: background-color 300ms ease-in-out;
}
.crm-card__icon i {
  width: 24px;
  height: 24px;
  color: #ffffff;
  transition: color 300ms ease-in-out;
}
.crm-card__icon svg {
  stroke: #000000;
}
.crm-card:hover .crm-card__icon {
  background-color: #2563eb;
}
.crm-card:hover .crm-card__icon i {
  color: #ffffff;
}
.crm-card:hover .crm-card__icon svg {
  stroke: #ffffff;
}
.crm-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  font-family: "Raleway", sans-serif;
}
.crm-card p {
  margin-bottom: 1rem;
  line-height: 1.625;
  color: #4b5563;
  text-align: justify;
}

.crm-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.crm-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: #4b5563;
  line-height: 1.625;
}
.crm-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.75rem;
  height: 0.75rem;
  background-color: #2563eb;
  border-radius: 0.25rem;
}
.crm-list li strong {
  color: #111827;
  font-weight: 600;
}

.crm-form {
  display: grid;
  gap: 1rem;
}
.crm-form input,
.crm-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: #111827;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0.625rem;
  transition: all 300ms ease-in-out;
}
.crm-form input:focus,
.crm-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.crm-form input::placeholder,
.crm-form textarea::placeholder {
  color: #9ca3af;
}
.crm-form textarea {
  resize: vertical;
  min-height: 120px;
}

.crm-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #2563eb;
  background-color: #dbeafe;
  border-radius: 9999px;
  margin-top: 1rem;
}

.text-justify {
  text-align: justify !important;
}

.codify-solution {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .codify-solution {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}
.codify-solution__left {
  height: 100%;
  align-items: flex-start;
}
.codify-solution__left .codify-pill {
  margin-bottom: 1.5rem;
}
.codify-solution__title {
  margin-bottom: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  font-family: "Raleway", sans-serif;
}
@media (min-width: 768px) {
  .codify-solution__title {
    font-size: 2.25rem;
  }
}
.codify-solution__description {
  max-width: 48rem;
  margin: 0 auto 1rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: #4b5563;
}
.codify-solution__right {
  position: relative;
}
.codify-solution__timeline {
  position: relative;
  padding-left: 0;
}
.codify-solution__timeline::before {
  content: "";
  position: absolute;
  left: 2.5rem;
  top: 4rem;
  bottom: 4rem;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, #2563eb 10%, #2563eb 90%, transparent 100%);
  border-left: 2px dashed rgba(37, 99, 235, 0.3);
}
@media (min-width: 768px) {
  .codify-solution__timeline::before {
    left: 3rem;
  }
}
.codify-solution__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}
.codify-solution__step:last-child {
  margin-bottom: 0;
}
.codify-solution__step--highlight .codify-solution__circle {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-color: #2563eb;
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.1), 0 0 30px rgba(37, 99, 235, 0.3);
  transform: scale(1.15);
}
.codify-solution__step--highlight .codify-solution__circle i {
  color: #ffffff;
}
.codify-solution__step--highlight .codify-solution__circle svg {
  filter: invert(1);
}
.codify-solution__step--highlight .codify-solution__content h3 {
  color: #2563eb;
}
.codify-solution__circle {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background-color: #ffffff;
  border: 3px solid rgba(37, 99, 235, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.05);
  transition: all 400ms ease-in-out;
}
@media (min-width: 768px) {
  .codify-solution__circle {
    width: 6rem;
    height: 6rem;
  }
}
.codify-solution__circle i {
  width: 2rem;
  height: 2rem;
  color: #2563eb;
  transition: color 400ms ease-in-out;
}
@media (min-width: 768px) {
  .codify-solution__circle i {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.codify-solution__circle--highlight {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-color: #2563eb;
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.1), 0 0 30px rgba(37, 99, 235, 0.3);
}
.codify-solution__circle--highlight i {
  color: #ffffff;
}
.codify-solution__content {
  flex: 1;
  padding-top: 0.5rem;
}
.codify-solution__content h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  font-family: "Raleway", sans-serif;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .codify-solution__content h3 {
    font-size: 1.5rem;
  }
}
.codify-solution__content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
}
@media (min-width: 768px) {
  .codify-solution__content p {
    font-size: 1rem;
  }
}

.geoex-hero {
  position: relative;
  padding: 10rem 0 6rem;
  background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #001a2e 100%);
  color: #ffffff;
  overflow: hidden;
}
.geoex-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.geoex-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.geoex-hero h1 {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  font-family: "Raleway", sans-serif;
}
@media (min-width: 768px) {
  .geoex-hero h1 {
    font-size: 4rem;
  }
}
@media (min-width: 1024px) {
  .geoex-hero h1 {
    font-size: 4.5rem;
  }
}
.geoex-hero h1 span {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.geoex-hero p {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #9ca3af;
}
.geoex-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .geoex-hero__actions {
    flex-direction: row;
  }
}

.geoex-pill {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2563eb;
  background-color: rgba(37, 99, 235, 0.1);
  border: 2px solid #2563eb;
  border-radius: 9999px;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.geoex-kpis {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .geoex-kpis {
    flex-direction: row;
    gap: 4rem;
  }
}

.geoex-kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.geoex-kpi strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  font-weight: 900;
  color: #2563eb;
  font-family: "Raleway", sans-serif;
}
.geoex-kpi span {
  font-size: 0.875rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.geoex-section {
  padding: 5rem 0;
}
.geoex-section--gray {
  background-color: #f9fafb;
}
.geoex-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.geoex-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  font-family: "Raleway", sans-serif;
}
.geoex-section__title span {
  color: #2563eb;
}
.geoex-section__description {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.geoex-grid {
  display: grid;
  gap: 2rem;
}
.geoex-grid--two {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .geoex-grid--two {
    grid-template-columns: repeat(2, 1fr);
  }
}
.geoex-grid--three {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .geoex-grid--three {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .geoex-grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
}
.geoex-grid--four {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .geoex-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .geoex-grid--four {
    grid-template-columns: repeat(4, 1fr);
  }
}

.geoex-card {
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 300ms ease-in-out;
}
.geoex-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.geoex-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
  font-family: "Raleway", sans-serif;
}
.geoex-card p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}
.geoex-card__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.geoex-card--metric {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
  border: 2px solid rgba(37, 99, 235, 0.2);
}
.geoex-card--metric:hover {
  border-color: #2563eb;
  box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.3), 0 10px 10px -5px rgba(37, 99, 235, 0.2);
}

.geoex-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.geoex-metric__value {
  font-size: 3.5rem;
  font-weight: 900;
  color: #2563eb;
  font-family: "Raleway", sans-serif;
  line-height: 1;
}
.geoex-metric__label {
  font-size: 1rem;
  color: #6b7280;
  text-align: center;
  line-height: 1.4;
}

.geoex-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.geoex-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: #6b7280;
  line-height: 1.6;
}
.geoex-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
  font-size: 1.125rem;
}
.geoex-list li:last-child {
  margin-bottom: 0;
}
.geoex-list li strong {
  color: #111827;
  font-weight: 600;
}

.geoex-badge {
  display: inline-flex;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #2563eb;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.geoex-badge:last-child {
  margin-right: 0;
}

.geoex-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.geoex-form input,
.geoex-form textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  color: #111827;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  transition: all 300ms ease-in-out;
}
.geoex-form input:focus,
.geoex-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.geoex-form input::placeholder,
.geoex-form textarea::placeholder {
  color: #6b7280;
}
.geoex-form textarea {
  resize: vertical;
  min-height: 120px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  font-family: "Open Sans", sans-serif;
}
.btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--secondary {
  color: #2563eb;
  background-color: transparent;
  border: 2px solid #2563eb;
}
.btn--secondary:hover {
  color: #ffffff;
  background-color: #2563eb;
  transform: translateY(-2px);
}
.btn--secondary:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .geoex-hero {
    padding: 8rem 0 4rem;
  }
  .geoex-hero h1 {
    font-size: 2.5rem;
  }
  .geoex-hero p {
    font-size: 1.125rem;
  }
  .geoex-section {
    padding: 3rem 0;
  }
  .geoex-section__title {
    font-size: 2rem;
  }
  .geoex-metric__value {
    font-size: 2.5rem;
  }
}
.medhealth .crm-hero h1 {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.medhealth-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .medhealth-benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.medhealth-benefit {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}
.medhealth-benefit:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}
.medhealth-benefit__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #2563eb, #5484ef);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.medhealth-benefit__icon i {
  width: 40px;
  height: 40px;
  color: white;
  stroke-width: 2;
}
.medhealth-benefit__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}
.medhealth-benefit__description {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.medhealth-metrics {
  background: linear-gradient(135deg, #2563eb, #5484ef);
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.medhealth-metrics__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2.5rem;
}
.medhealth-metrics__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .medhealth-metrics__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .medhealth-metrics__grid {
    grid-template-columns: 1fr;
  }
}

.medhealth-metric__value {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .medhealth-metric__value {
    font-size: 2.5rem;
  }
}
.medhealth-metric__label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.gowleads .crm-hero h1 {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.gowleads .crm-pill {
  color: #dbeafe;
  background-color: rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.3);
}

.gowleads .crm-kpi {
  background-color: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.25);
}
.gowleads .crm-kpi:hover {
  background-color: rgba(37, 99, 235, 0.25);
}
.gowleads .crm-kpi span {
  color: #dbeafe;
}

.gowleads .crm-funnel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.gowleads .crm-funnel__stage {
  padding: 1.5rem;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: all 300ms ease-in-out;
  position: relative;
}
.gowleads .crm-funnel__stage:not(:last-child)::after {
  content: "↓";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: #2563eb;
  font-weight: 700;
}
.gowleads .crm-funnel__stage:hover {
  border-color: #2563eb;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  transform: translateX(4px);
}
.gowleads .crm-funnel__stage strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
  font-family: "Raleway", sans-serif;
}
.gowleads .crm-funnel__stage p {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}

.gowleads .crm-metric-card {
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  text-align: center;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 300ms ease-in-out;
}
.gowleads .crm-metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.gowleads .crm-metric-card strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.5rem;
  font-family: "Raleway", sans-serif;
}
.gowleads .crm-metric-card span {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.5;
}

.gowleads-funnel-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  padding: 2rem;
}

.gowleads-funnel {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.gowleads-funnel__stage {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: all 300ms ease-in-out;
  position: relative;
}
.gowleads-funnel__stage:hover {
  border-color: #2563eb;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  transform: translateX(8px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.gowleads-funnel__stage:hover .gowleads-funnel__icon svg {
  color: #ffffff;
}
.gowleads-funnel__stage--highlight {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: #2563eb;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2), 0 2px 4px -1px rgba(37, 99, 235, 0.1);
}
.gowleads-funnel__stage--highlight .gowleads-funnel__icon {
  background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.gowleads-funnel__stage--highlight .gowleads-funnel__icon svg {
  color: #ffffff;
}
.gowleads-funnel__stage--highlight strong {
  color: #2563eb;
}
.gowleads-funnel__icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 0.75rem;
  transition: all 300ms ease-in-out;
}
.gowleads-funnel__icon i {
  width: 1.75rem;
  height: 1.75rem;
  color: #6b7280;
}
.gowleads-funnel__stage:hover .gowleads-funnel__icon {
  background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
  transform: scale(1.1);
}
.gowleads-funnel__stage:hover .gowleads-funnel__icon i {
  color: #ffffff;
}
.gowleads-funnel__content {
  flex: 1;
}
.gowleads-funnel__content strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
  font-family: "Raleway", sans-serif;
}
.gowleads-funnel__content p {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}
.gowleads-funnel__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
}
.gowleads-funnel__arrow i {
  width: 1.5rem;
  height: 1.5rem;
  color: #2563eb;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}
.gowleads-trial-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 991px) {
  .gowleads-trial-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.gowleads-trial-benefits__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.5rem;
  font-family: "Raleway", sans-serif;
}
.gowleads-trial-benefits__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.gowleads-trial-benefits .btn--large {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.gowleads-trial-benefits .btn--large i {
  width: 1.25rem;
  height: 1.25rem;
}

.gowleads-trial-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: all 300ms ease-in-out;
}
.gowleads-trial-benefit:hover {
  border-color: #2563eb;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  transform: translateX(4px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.gowleads-trial-benefit__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
  border-radius: 0.625rem;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}
.gowleads-trial-benefit__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #ffffff;
}
.gowleads-trial-benefit__content {
  flex: 1;
}
.gowleads-trial-benefit__content strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
  font-family: "Raleway", sans-serif;
}
.gowleads-trial-benefit__content p {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

.gowleads-trial-features {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
}
.gowleads-trial-features__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: "Raleway", sans-serif;
}
.gowleads-trial-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 767px) {
  .gowleads-trial-features__grid {
    grid-template-columns: 1fr;
  }
}

.gowleads-trial-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  transition: all 300ms ease-in-out;
}
.gowleads-trial-feature:hover {
  background: linear-gradient(135deg, #eff6ff 0%, #f9fafb 100%);
  transform: translateY(-2px);
}
.gowleads-trial-feature__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
  border-radius: 0.5rem;
}
.gowleads-trial-feature__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #ffffff;
}
.gowleads-trial-feature span {
  flex: 1;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
  font-weight: 500;
}

/*# sourceMappingURL=style.css.map */
