@font-face {
  font-family: "ObjectSans";
  src: url("../fonts/ObjectSans-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ObjectSans";
  src: url("../fonts/ObjectSans-Heavy.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ObjectSans";
  src: url("../fonts/ObjectSans-Slanted.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ObjectSans";
  src: url("../fonts/ObjectSans-HeavySlanted.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

:root {
  --bs-primary: #3bce26;
  --bs-primary-rgb: 59, 206, 38;
  --bs-primary-dark: #32402e;
}

* {
  font-family: "ObjectSans", sans-serif;
}

p {
  color: #a6a6a6;
}

body {
  background-color: #353332;
}

h1 {
  font-weight: bold;
}

a {
  text-decoration: none;
}

.bg-primary-dark {
  background-color: #32402e;
}

.sticky-btn {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 1000;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 1;
}

.sticky-btn.hidden {
  opacity: 0;
  transform: translateY(100%);
}

.btn-secondary, .btn-principal {
  font-weight: bold;
  border: none;
  font-size: 18px;
  padding: 12px 25px;
  border-radius: 2rem;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-principal {
  background-color: #3bce26;
  color: #32402e;
}
.btn-principal:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.0509803922);
  border: 2px solid rgba(166, 166, 166, 0.3019607843);
  color: #fff;
  font-weight: 400;
}
.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.0509803922);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.badges {
  background-color: #3bce26;
  color: #32402e;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
}

.text-color {
  color: #a6a6a6;
}

.color-dark {
  color: #32402e;
}

.color-primary {
  color: #3bce26;
}

::-webkit-scrollbar {
  width: 10px; /* o height si es horizontal */
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.0509803922);
}

::-webkit-scrollbar-thumb {
  background-color: #3bce26;
  border-radius: 2rem; /* opcional: para espacio alrededor */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #32402e;
}

.welcome {
  padding: 24px 0;
  min-height: 100vh;
  margin: 0 auto;
}
.welcome__description {
  font-size: 24px;
  margin: 0 auto;
  width: 70%;
}
.welcome__features {
  width: 70%;
  margin: 0 auto;
}
.welcome p {
  font-size: 22px;
}
.welcome h1 {
  line-height: 0.9;
  font-size: 72px;
}
.welcome small {
  font-size: 16px;
}

@media (max-width: 997px) {
  .welcome h1 {
    font-size: 58px;
  }
  .welcome p {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .welcome__description {
    width: 90%;
  }
  .welcome__features {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .welcome h1 {
    font-size: 40px;
  }
  .welcome__description {
    width: 100%;
  }
}
.solution {
  background-color: #272626;
}
.solution__content {
  margin: 0 auto;
}
.solution .card-custom {
  min-height: 300px;
}

.card-dark {
  transition: background-color 0.3s ease;
}
.card-dark:hover {
  background-color: #3c3b3a;
}

@media (max-width: 997px) {
  .solution .card-custom {
    min-height: auto;
  }
}
@media (max-width: 1200px) {
  .solution__content {
    width: 90%;
  }
}
@media (max-width: 800px) {
  .solution__content {
    width: 100%;
  }
}
.card-custom {
  cursor: default;
  padding: 32px;
  border-radius: 1rem;
}
.card-custom__icon {
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background-color: #3bce26;
  color: #32402e;
  width: 70px;
  height: 70px;
  border-radius: 1rem;
}
.card-custom__title {
  color: #fff;
  font-weight: bold;
  margin: 16px 0;
}
.card-custom__description {
  margin: 0;
}
.card-custom:hover .card-custom__icon {
  transform: scale(1.1);
}

.card-dark {
  background-color: rgba(255, 255, 255, 0.0509803922);
  border: 1px solid rgba(166, 166, 166, 0.3019607843);
}

.card-light {
  background-color: #3c3b3a;
  border: 1px solid rgba(166, 166, 166, 0.3019607843);
}

.card-primary {
  background-color: #32402e;
  border: 0.1px solid #3bce26;
}

.future {
  background-color: #272626;
}
.future p {
  font-size: 20px;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 750px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #000;
  aspect-ratio: 16/9;
}

.video-thumbnail, video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background-color: #00ff41;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 16px solid #000;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.video-duration {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 4px 8px;
  font-size: 14px;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  z-index: 2;
}

.video-player {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.contact {
  background-color: #272626;
}

.results .card-custom {
  padding: 32px 32px;
}
.results .card-custom span {
  font-size: 32px !important;
}
.results .card-custom h3 {
  font-size: 48px;
}
.results .stars span {
  font-size: 24px !important;
}
.results .testimonial {
  font-size: 20px;
  margin: 0 auto;
  width: 65%;
}

.calendar p {
  font-size: 20px;
}

.waranty {
  background-color: #32402e;
}

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