.c-header {
  position: fixed;
  border-radius: 200px;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(7.5px);
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 12px 16px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 40px;
  z-index: 2025;
}

.c-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.c-header-logo {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.c-header-logo-image {
  width: 100%;
  max-width: 90px;
}

.c-header-logo:hover {
  opacity: 0.6;
}

.c-header-nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.c-header-nav-link-desktop {
  color: #20484f;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.c-header-nav-link-desktop:hover {
  color: #0db793;
}

.c-header-btn-menu-mobile {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  transition: all 0.3s ease-in-out;
}

.c-header-btn-menu-mobile:hover {
  opacity: 0.6;
}

.c-header-btn-menu-mobile.active {
  transform: rotate(90deg);
}

.c-header-menu-mobile {
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: rgba(149, 157, 165, 0.5) 0px 24px 40px;
  padding: 16px 16px 32px 16px;
  z-index: 2024;
  border-radius: 0 0 32px 32px;
}

.c-header-nav-mobile {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  transition: all 0.3s ease-in-out;
}

.c-header-nav-link-mobile {
  width: 100%;
  padding: 12px;
  text-align: center;
  color: #20484f;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.c-header-nav-link-mobile:hover {
  color: #0db793;
}

.c-header-btn-menu-mobile,
.c-header-menu-mobile {
  display: none;
}

.c-header-menu-mobile.active {
  display: none;
}

.c-header-menu-mobile.active {
  display: block;
  background-color: #f0fffc;
}

@media (max-width: 991px) {
  .c-header {
    padding: 8px;
    top: 8px;
    border-radius: 0;
    top: 0;
  }

  .c-header-btn-menu-mobile {
    display: block;
  }

  .c-header-nav-desktop {
    display: none;
  }
}

.c-footer {
  padding: 48px 0;
  background-color: #f0fffc;
  color: #ffffff;
  background-color: #20484f;
}

.c-footer .container {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 48px;
}

.c-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.c-footer-logo img {
  width: 100%;
  max-width: 100px;
}

.c-footer-top-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-lg);
}

.c-footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.c-footer-social-link {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.c-footer-social-link:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.c-footer-social-link img {
  width: 100%;
  max-width: 38px;
}

.c-footer-mid {
  display: flex;
  gap: var(--space-md);
  justify-content: space-between;
}

.c-footer-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.c-footer-title {
  color: #25e0b7ff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.c-footer-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-white);
  transition: all 0.2s ease-in-out;
}

.c-footer-link:hover {
  opacity: 0.6;
}

.c-footer-divider {
  width: 100%;
  height: 1px;
  background-color: #1e5b4fff;
  margin: 24px 0;
}

.c-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.c-footer-allrights {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.c-footer-createdby {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  transition: all 0.3s ease-in-out;
}

.c-footer-createdby svg path {
  transition: all 0.3s ease-in-out;
}

.c-footer-createdby:hover svg path {
  gap: 8px;
  fill: #f7931e;
}

.c-footer-createdby-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

@media (max-width: 991px) {
  .c-footer-top {
    flex-direction: column;
  }

  .c-footer-top-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .c-footer-mid {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }

  .c-footer-stack {
    width: 100%;
    align-items: center;
  }

  .c-footer-social {
    justify-content: center;
    width: 100%;
  }

  .c-footer-bottom {
    flex-direction: column;
  }
}

.s-hero {
  position: relative;
  padding: 120px 0 80px 0;
  background-color: #f0fffc;
  border-radius: 0 0 80px 80px;
  z-index: 1;
  background: url("../assets/svg/bg-hero.svg") no-repeat center center / cover;
}

.s-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.s-hero-background img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.s-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.s-hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.s-hero-content {
  width: 100%;
  max-width: 500px;
}

.s-hero-tag {
  box-shadow: 0 0 0 3px #fff, 0 4px 2px 0 rgba(140, 150, 169, 0.25),
    0 8px 17.2px 0 rgba(140, 150, 169, 0.1);
  border-radius: 200px;
}

.s-hero-image {
  width: 100%;
  max-width: 500px;
}

.s-hero-actions {
  display: flex;
  gap: var(--space-md);
}

.s-hero-line {
  width: 100%;
  height: 1px;
  background-color: #c2e5de;
  margin: 60px 0;
}

.s-hero-customers {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
}

.s-hero-customers-logos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-lg);
  width: 100%;
  max-width: 930px;
}

.s-hero-customers-logo {
  border-radius: 16px;
}

.s-hero-customers-title {
  color: #20484f;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
}

.s-tools {
  padding: 120px 0 80px 0;
}

.s-tools-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: 80px;
}

.s-tools-info {
  box-shadow: 0 2.571px 2.571px 0 rgba(0, 0, 0, 0.02),
    0 12.857px 52.714px 0 rgba(0, 0, 0, 0.1);
  border-radius: 200px;
}

.s-tools-cards {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
}

.s-tools-card {
  width: 100%;
  max-width: 560px;
  padding: 32px;
  border-radius: 16px;
  background-color: #20484f;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.s-tools-card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.2);
}

.s-tools-card-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.s-tools-card-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}

.s-tools-card-image {
  width: 100%;
  border-radius: 16px;
}

.s-platform {
  padding: 40px 0 120px 0;
}

.s-platform-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: 60px;
}

.s-platform-cards {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
}

.s-platform-card {
  width: 100%;
  max-width: 360px;
  padding: 32px;
  border-radius: 16px;
  background-color: #f0fffc;
}

.s-platform-card-title {
  color: #20484f;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  margin-top: 60px;
  margin-bottom: 8px;
}

.s-platform-card-description {
  color: #20484f;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.s-product {
  padding: 80px 0;
}

.s-product.mid {
  position: relative;
}

.s-product .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.s-product-content {
  width: 100%;
  max-width: 550px;
}

.s-product-image {
  width: 100%;
  max-width: 550px;
}

.s-product-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin: 32px 0;
}

.s-product-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-md);
}

.s-product-item-title {
  color: #20484f;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 8px;
}

.s-product-item-description {
  color: #272727;
  font-size: 16px;
  line-height: 120%;
}

.s-video {
  padding: 32px 0;
}

.s-video-wrap {
  border-radius: 32px;
  background: #20484f;
  overflow: hidden;
}

.s-video-iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.s-video-bottom {
  padding: 60px;
}

.s-video-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
}

.s-video-content {
  width: 100%;
  max-width: 400px;
}

.s-video-platforms {
}

.s-video-platforms-title {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 24px;
}

.s-video-plataforms-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-md);
}

.s-video-platforms-item {
  transition: all 0.3s ease-in-out;
}

.s-video-platforms-item:hover {
  transform: scale(1.05);
  opacity: 0.7;
}

.s-testimonial {
  padding: 120px 0;
}

.s-testimonial-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.s-testimonial-content {
  width: 100%;
  max-width: 380px;
}

.s-testimonial-card {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 700px;
  padding: 24px;
  border-radius: 16px;
  background-color: #f0fffc;
}

.s-testimonial-card-content {
  width: 100%;
  max-width: 350px;
}

.s-testimonial-card-image {
  width: 100%;
  max-width: 250px;
  border-radius: 16px;
}

.s-testimonial-card-description {
  color: #272727;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  margin: 24px 0;
}

.s-testimonial-name {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 8px;
}

.s-testimonial-role {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
}

.s-contact {
  padding-bottom: 120px;
}

.s-contact-wrap {
  background-color: #20484f;
  padding: 80px 48px;
  background: url("../assets/svg/bg-calltoaction.svg") no-repeat center center /
    cover;
  border-radius: 32px;
}

.s-contact-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.s-contact-content {
  width: 100%;
  max-width: 440px;
}

.s-contact-btn {
  color: #0db793;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  transition: all 0.3s ease-in-out;
}

.s-contact-btn:hover {
  opacity: 0.5;
}

.s-contact-form {
  width: 100%;
  max-width: 435px;
}

.s-contact-form label {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  display: block;
  margin-bottom: 4px;
}

.s-contact-form input {
  width: 100%;
  margin-bottom: 24px;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #386a73;
  background: #2a575f;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  transition: all 0.2s ease-in-out;
}

.s-contact-form input:focus,
.s-contact-form input:active,
.s-contact-form input:hover {
  border-color: #0db793;
  outline: none;
}

.s-contact-form input::placeholder {
  color: #81a8af;
}

.s-contact-form button {
  width: 100%;
  cursor: pointer;
}

@keyframes pulseBlur {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@media (max-width: 991px) {
  .c-btn {
    width: 100%;
  }

  .s-hero-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .s-hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .s-hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .s-hero-customers-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .s-hero-customers-logos img:last-child {
    display: none;
  }

  .s-tools-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .s-tools-cards {
    flex-direction: column;
    align-items: flex-start;
  }

  .s-platform-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .s-platform-cards {
    flex-direction: column;
    align-items: flex-start;
  }

  .s-platform-card {
    max-width: 100%;
  }

  .s-video-iframe {
    height: 220px;
  }

  .s-video-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .s-product {
    padding: 48px 0;
  }

  .s-product .container {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 48px;
  }

  .s-product.mid .container {
    flex-direction: column;
  }

  .s-testimonial {
    padding: 80px 0;
  }

  .s-testimonial-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .s-testimonial-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .s-testimonial-card-image {
    max-width: 100%;
  }

  .s-contact-wrap {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 991px) {
  .s-product.mid::before,
  .s-product.mid::after {
    content: "";
    position: absolute;
    animation: pulseBlur 10s infinite;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    border-radius: 305px;
    background: #e8628fff;
    filter: blur(250px);
    z-index: -1;
  }

  .s-product.mid::before {
    top: 100%;
    left: -200px;
  }

  .s-product.mid::after {
    top: 0%;
    right: -200px;
  }
}
