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

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #484848;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

.btn-primary {
  background: #9381ff;
  color: #fefefe;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.btn-primary .btn-text-container {
  position: relative;
  display: block;
  height: 24px;
  overflow: hidden;
}
.btn-primary span {
  color: #fefefe;
}
.btn-primary .btn-text-original,
.btn-primary .btn-text-hover {
  display: block;
  transition: transform 0.3s ease;
  line-height: 24px;
}
.btn-primary .btn-text-original {
  transform: translateY(0);
}
.btn-primary .btn-text-hover {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
}
.btn-primary:hover .btn-text-original {
  transform: translateY(-100%);
}
.btn-primary:hover .btn-text-hover {
  transform: translateY(0);
}

.badge {
  border: 1px solid #e8e8e8;
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Inter", sans-serif;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

@media (min-width: 991px) {
  .container {
    width: 80%;
    margin: 0 auto;
  }
  .hero {
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .hero .container {
    margin-top: 20vh;
    position: relative;
    z-index: 2;
  }
  .hero .container h1 {
    text-align: center;
  }
  .hero .container p {
    width: 50%;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
  }
  .hero .container .hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
  }
  .hero .container .hero-buttons .secondary-link {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  .hero .container .hero-buttons .secondary-link span {
    font-size: 20px;
  }
  .hero .container .hero-buttons .secondary-link:hover {
    color: #9381ff;
  }
  .hero .hero-img {
    margin: 40px auto;
    width: 80%;
    position: relative;
    z-index: 2;
  }
  .hero .hero-img img {
    border-radius: 12px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    display: block;
    transform: perspective(1000px) rotateX(15deg) translateY(0);
    transition: transform 0.6s ease-out;
    will-change: transform;
  }
  .hero .hero-img .gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 350px;
    width: 200%;
    background: linear-gradient(to bottom, transparent, rgb(255, 255, 255) 60%, rgb(255, 255, 255));
    pointer-events: none;
  }
  .hero .hero-img.animate img {
    transform: perspective(1000px) rotateX(0deg) translateY(-20px);
  }
  .why-fittara {
    height: 100%;
    display: flex;
    margin-top: 20vh;
    align-items: center;
  }
  .why-fittara .why-grid {
    display: flex;
  }
  .why-fittara .why-grid .grid-main {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #e8e8e8;
    padding: 40px;
    border-radius: 12px 0px 0px 12px;
  }
  .why-fittara .why-grid .grid-main p {
    text-align: left;
    width: 100%;
    margin-top: 20px;
  }
  .why-fittara .why-grid .grid-main .gradient-text {
    background: linear-gradient(90deg, #1a1a1a, #ffd8be, #1a1a1a);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-move 20s ease-in-out infinite;
  }
  @keyframes gradient-move {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .why-fittara .why-grid .grid-second {
    width: 50%;
    border-radius: 0px 12px 12px 0px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .why-fittara .why-grid .grid-second .grid-content {
    border: 1px solid #e8e8e8;
    padding: 20px;
    height: 260px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .why-fittara .why-grid .grid-second .grid-content p {
    text-align: left;
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .why-fittara .why-grid .grid-second .grid-content .hover-image {
    position: absolute;
    bottom: -100%;
    right: 0;
    width: 40%;
    height: 40%;
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  .why-fittara .why-grid .grid-second .grid-content:hover {
    transform: translateY(0px);
  }
  .why-fittara .why-grid .grid-second .grid-content:hover .hover-image {
    bottom: 0;
  }
  .who-fittara {
    height: 100%;
    padding: 100px 0px;
  }
  .who-fittara h2 span {
    line-height: 0.9;
    font-size: 16rem;
    color: #9381ff;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(45deg, #9381ff, #ffd8be, #9381ff, #ffd8be);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-move 20s ease-in-out infinite;
  }
  @supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    .who-fittara h2 span {
      color: #9381ff;
      background: none;
      animation: none;
    }
  }
  .who-fittara .who-grid {
    display: flex;
    gap: 20px;
  }
  .who-fittara .who-grid .who-card {
    width: 50%;
    border: 1px solid #e8e8e8;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
  }
  .who-fittara .who-grid .who-card h4 {
    color: #fdfdfd;
    text-align: center;
    font-size: 24px;
  }
  .who-fittara .who-grid .who-card:nth-child(1) {
    background: url(./assets/established.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .who-fittara .who-grid .who-card:nth-child(2) {
    background: url(./assets/startup.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .mission {
    background: #f9f9f9;
    padding: 100px 0px;
  }
  .mission .mission-grid {
    display: flex;
    gap: 20px;
  }
  .mission .mission-grid .mission-card {
    width: 50%;
    border: 1px solid #e8e8e8;
    padding: 20px;
    border-radius: 12px;
    background-color: #fefefe;
    height: 400px;
    position: relative;
    overflow: hidden;
  }
  .mission .mission-grid .mission-card img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
  }
  .mission .mission-grid .mission-card:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .mission .mission-grid .mission-card:nth-child(2) p {
    text-align: center;
    margin-top: 20px;
  }
  .pricing {
    padding: 100px 0px;
  }
  .pricing .pricing-grid {
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }
  .pricing .pricing-grid .pricing-card {
    width: 33.33%;
    border: 1px solid #e8e8e8;
    padding: 20px;
    border-radius: 12px;
    height: 300px;
  }
  .pricing .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  .contact {
    padding: 100px 0px;
  }
  .contact .contact-grid {
    display: flex;
  }
  .contact .contact-grid .contact-main {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    height: 50vh;
    border: 1px solid #e8e8e8;
  }
  .contact .contact-grid .contact-main .contact-main-content p {
    width: 80%;
    margin-bottom: 20px;
  }
  .contact .contact-grid .contact-main .contact-actions {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .contact .contact-grid .contact-main .contact-actions .whats-app, .contact .contact-grid .contact-main .contact-actions .email {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .contact .contact-grid .contact-main .contact-actions .whats-app img, .contact .contact-grid .contact-main .contact-actions .email img {
    width: 24px;
    height: 24px;
  }
  .contact .contact-grid .about {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    height: 50vh;
    border: 1px solid #e8e8e8;
  }
}
@media (max-width: 991px) {
  .container {
    width: 98%;
    margin: 0 auto;
  }
  .hero {
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .hero .container {
    margin-top: 20vh;
    position: relative;
    z-index: 2;
  }
  .hero .container h1 {
    text-align: center;
    font-size: 2rem;
  }
  .hero .container p {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
  }
  .hero .container .hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0px;
  }
  .hero .container .hero-buttons .secondary-link {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  .hero .container .hero-buttons .secondary-link span {
    font-size: 20px;
  }
  .hero .container .hero-buttons .secondary-link:hover {
    color: #9381ff;
  }
  .hero .hero-img {
    margin: 40px auto;
    width: 98%;
    position: relative;
    z-index: 2;
  }
  .hero .hero-img img {
    border-radius: 12px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    display: block;
    transform: perspective(1000px) rotateX(15deg) translateY(0);
    transition: transform 0.6s ease-out;
    will-change: transform;
  }
  .hero .hero-img .gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 150px;
    width: 200%;
    background: linear-gradient(to bottom, transparent, rgb(255, 255, 255) 60%, rgb(255, 255, 255));
    pointer-events: none;
  }
  .hero .hero-img.animate img {
    transform: perspective(1000px) rotateX(0deg) translateY(-20px);
  }
  .why-fittara {
    height: 100%;
    display: flex;
    margin-top: 20vh;
    align-items: center;
  }
  .why-fittara .why-grid {
    display: flex;
    flex-direction: column;
  }
  .why-fittara .why-grid .grid-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #e8e8e8;
    padding: 40px;
    border-radius: 12px 12px 0px 0px;
  }
  .why-fittara .why-grid .grid-main p {
    text-align: left;
    width: 100%;
    margin-top: 20px;
  }
  .why-fittara .why-grid .grid-main .gradient-text {
    background: linear-gradient(90deg, #1a1a1a, #ffd8be, #1a1a1a);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-move 20s ease-in-out infinite;
  }
  @keyframes gradient-move {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .why-fittara .why-grid .grid-second {
    width: 100%;
    border-radius: 0px 12px 12px 0px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .why-fittara .why-grid .grid-second .grid-content {
    border: 1px solid #e8e8e8;
    padding: 20px;
    height: 260px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .why-fittara .why-grid .grid-second .grid-content p {
    text-align: left;
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .why-fittara .why-grid .grid-second .grid-content .hover-image {
    position: absolute;
    bottom: -100%;
    right: 0;
    width: 40%;
    height: 40%;
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  .why-fittara .why-grid .grid-second .grid-content:hover {
    transform: translateY(0px);
  }
  .why-fittara .why-grid .grid-second .grid-content:hover .hover-image {
    bottom: 0;
  }
  .who-fittara {
    height: 100%;
    padding: 100px 20px;
  }
  .who-fittara h2 {
    font-size: 2rem;
  }
  .who-fittara h2 span {
    line-height: 0.9;
    font-size: 6rem;
    color: #9381ff;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(45deg, #9381ff, #ffd8be, #9381ff, #ffd8be);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-move 20s ease-in-out infinite;
  }
  @supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    .who-fittara h2 span {
      color: #9381ff;
      background: none;
      animation: none;
    }
  }
  .who-fittara .who-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .who-fittara .who-grid .who-card {
    width: 100%;
    border: 1px solid #e8e8e8;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
  }
  .who-fittara .who-grid .who-card h4 {
    color: #fdfdfd;
    text-align: center;
    font-size: 24px;
  }
  .who-fittara .who-grid .who-card:nth-child(1) {
    background: url(./assets/established.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .who-fittara .who-grid .who-card:nth-child(2) {
    background: url(./assets/startup.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .mission {
    background: #f9f9f9;
    padding: 100px 20px;
  }
  .mission .mission-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .mission .mission-grid .mission-card {
    width: 100%;
    border: 1px solid #e8e8e8;
    padding: 20px;
    border-radius: 12px;
    background-color: #fefefe;
    height: 400px;
    position: relative;
    overflow: hidden;
  }
  .mission .mission-grid .mission-card img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
  }
  .mission .mission-grid .mission-card:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .mission .mission-grid .mission-card:nth-child(2) p {
    text-align: center;
    margin-top: 20px;
  }
  .mission .mission-grid .mission-card:nth-child(2) h2 {
    text-align: center;
  }
  .pricing {
    padding: 100px 20px;
  }
  .pricing .pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
  .pricing .pricing-grid .pricing-card {
    width: 100%;
    border: 1px solid #e8e8e8;
    padding: 20px;
    border-radius: 12px;
    height: 300px;
  }
  .pricing .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  .contact {
    padding: 100px 20px;
  }
  .contact .contact-grid {
    display: flex;
    flex-direction: column;
  }
  .contact .contact-grid .contact-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    height: 100%;
    border: 1px solid #e8e8e8;
  }
  .contact .contact-grid .contact-main .contact-main-content p {
    width: 80%;
    margin-bottom: 20px;
  }
  .contact .contact-grid .contact-main .contact-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
    justify-content: flex-start;
    margin-top: 20px;
  }
  .contact .contact-grid .contact-main .contact-actions .whats-app, .contact .contact-grid .contact-main .contact-actions .email {
    display: flex;
    align-items: start;
    gap: 10px;
  }
  .contact .contact-grid .contact-main .contact-actions .whats-app img, .contact .contact-grid .contact-main .contact-actions .email img {
    width: 24px;
    height: 24px;
  }
  .contact .contact-grid .about {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    height: 50vh;
    border: 1px solid #e8e8e8;
  }
}
.features {
  background: var(--bg);
  padding: 80px 0 120px;
  position: relative;
}
.features .stack {
  position: relative;
  padding-top: 10vh;
  width: 100%;
  margin: 0 auto;
}
.features .stack .card {
  position: sticky;
  top: clamp(56px, 12vh, 120px);
  width: 100%;
  height: 50vh;
  background: #fefefe;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  transition: transform 220ms ease, box-shadow 220ms ease;
  transform: scale(0.98);
  overflow: hidden;
  margin-bottom: 20px;
}
.features .stack .card .card-progress {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #9381ff;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
}
.features .stack .card .card-content {
  display: flex;
  height: 100%;
}
.features .stack .card .card-content .text {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.features .stack .card .card-content .text p {
  width: 80%;
}
.features .stack .card .card-content .visual {
  width: 50%;
  position: relative;
}
.features .stack .card .card-content .visual video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.features .stack .card .card-content .visual img {
  width: 80%;
  border-radius: 12px;
}
.features .stack .card .card-content .e-commerce {
  background: #f4f2ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features .stack .card .card-content .photo-cataloguing img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0px;
}
.features .stack .card .card-content .customer {
  background-color: #fff3eb;
}
.features .stack .card .card-content .customer img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0px;
}
.features .stack .card.is-stuck {
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .features .stack .card {
    transition: none;
    transform: scale(1);
  }
}

@media (max-width: 991px) {
  .features {
    padding: 100px 0px;
  }
  .features .stack {
    padding-top: 80px;
  }
  .features .stack .card {
    margin-block: 12vh;
    margin-left: 0;
    margin-right: 0;
  }
  .features .stack .card h3 {
    font-size: 20px;
  }
  .features .stack .card .card-content {
    flex-direction: column;
    padding: 24px;
  }
  .features .stack .card .card-content .text, .features .stack .card .card-content .visual {
    width: 100%;
    padding: 0px;
  }
  .features .stack .card .card-content .visual {
    margin-top: 20px;
    height: 250px;
  }
}
@media (max-width: 480px) {
  .features .stack .card {
    margin-block: 8vh;
    padding: 20px;
  }
  .features .stack .card .card-progress {
    top: 12px;
    right: 12px;
    font-size: 11px;
    padding: 3px 8px;
  }
}
@media (min-width: 1440px) {
  .container {
    width: 60%;
    margin: 0 auto;
  }
  .hero-img {
    width: 60%;
  }
}
@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.logo, a {
  text-decoration: none;
}

@media (max-width: 991px) {
  .container-nav {
    width: 90%;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    position: fixed;
    z-index: 9999;
  }
  .container-nav nav {
    display: flex;
    margin: 0px;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .container-nav nav .menu {
    display: none;
  }
  .container-nav nav .logo {
    display: flex;
    gap: 8px;
  }
  .container-nav nav .logo img {
    width: 40px;
    height: 40px;
  }
  .container-nav nav .logo span {
    display: none;
  }
  .container-nav nav .nav-links {
    display: none;
  }
}
@media (min-width: 991px) {
  .container-nav {
    width: 80%;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    position: fixed;
    z-index: 9999;
  }
  .container-nav nav {
    display: flex;
    margin: 20px 0px;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .container-nav nav .menu {
    display: none;
  }
  .container-nav nav .logo {
    display: flex;
    gap: 8px;
  }
  .container-nav nav .logo img {
    width: 40px;
    height: 40px;
  }
  .container-nav nav .logo span {
    font-size: 24px;
    font-weight: 600;
    color: #9381ff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  .container-nav nav .nav-links {
    display: flex;
    gap: 24px;
  }
  .container-nav nav .nav-links a {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
  }
  .container-nav nav .nav-links a:hover {
    color: #9381ff;
  }
}
@media (min-width: 1440px) {
  .container-nav {
    width: 60%;
    left: 50%;
    transform: translateX(-50%);
  }
}/*# sourceMappingURL=nav.css.map */