body {
  margin: 0;
  padding: auto 0;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  font-family: "Helvetica Rounded LT Std", "Arial", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f9f8f2;
  color: black;
  /* overflow: hidden; */
}

a {
  text-decoration: none;
  color: white;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* button {
  font-weight: bold;
  font-size: large;
  border: none;
  padding: 10px 15px;
  border-radius: 999px;
  background: #35ae80;
  color: white;
  cursor: pointer;
} */

button {
  font-weight: bold;
  font-size: large;
  border: none;
  padding: 10px 15px;
  border-radius: 999px;
  background: #35ae80;
  color: white;
  cursor: pointer;
  transition: all 0.5s;
  position: relative;
}
button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s;
  border-radius: 999px;
}
button:hover::before {
  opacity: 0;
  transform: scale(0.5, 0.5);
  border-radius: 999px;
}
button::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: scale(1.5, 1.5);
  border-radius: 999px;
}
button:hover::after {
  opacity: 1;
  transform: scale(1, 1);
  border-radius: 999px;
}
nav {
  width: 100%;
  height: 8vh;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  background: #f9f8f2;
  box-shadow: 0 8px 32px 0 #00000050;
  z-index: 9999;
}

nav .nav-links {
  width: 100%;
  max-width: 1300px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 65px;
  padding-right: 65px;
}

nav .Links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

nav ul {
  display: flex;
  flex-direction: row;
  gap: 50px;
  list-style: none;
  padding: 0;
}

nav li {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  gap: 5px;
  transition: all 0.3s;
  color: black;
}

nav .logo-link {
  overflow: hidden;
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: black;
  font-weight: 700;
  vertical-align: top;
}

nav .logo-link::before,
nav .logo-link::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
}
nav .logo-link::before {
  background-color: #35ae80;
  color: #35ae80;
  height: 2px;
  bottom: 0;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}
nav .logo-link::after {
  content: attr(data-replace);
  height: 100%;
  top: 0;
  transform-origin: 100% 50%;
  transform: translate3d(200%, 0, 0);
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  color: #35ae80;
}

nav .logo-link:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
nav .logo-link:hover::after {
  transform: translate3d(0, 0, 0);
}

nav .logo-link span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

nav .logo-link:hover span {
  transform: translate3d(-200%, 0, 0);
}

.btn-col {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.btn-col a {
  color: black;
  border: 2px solid black;
  height: 45px;
  display: flex;
  padding: 0 18px;
  align-items: center;
  border-radius: 4px;
  justify-content: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
  cursor: pointer;
}

.menu-mobile {
  display: none;
}

.hero-section {
  width: 100%;
  height: 100vh;
  background-image: url("./assets/bgHeroSection.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section .hero-text {
  width: 100%;
  max-width: 1300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  font-size: xx-large;
}

.hero-text h1 {
  color: white;
  width: 670px;
  padding-left: 5vw;
}

.hero-text span {
  color: #f9f8f2;
  width: 500px;
  padding-left: 5vw;
  font-size: large;
  font-weight: 100;
}

.hero-text span b {
  color: white;
  font-weight: bold;
}

.hero-section h1-color {
  color: #35ae80;
}

.hero-section button {
  font-weight: bold;
  font-size: large;
  border: none;
  padding: 10px 15px;
  border-radius: 999px;
  background: #35ae80;
  color: white;
  margin-left: 5vw;
  margin-top: 40px;
}

.list-hero-section {
  width: 100%;
  max-width: 1300px;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 100px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.list-hero-section button {
  font-weight: bold;
  font-size: large;
  border: none;
  padding: 10px 15px;
  border-radius: 999px;
  background: #35ae80;
  color: white;
  cursor: pointer;
  transition: all 0.5s;
  position: relative;
}

.list-hero-section button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s;
  border-radius: 999px;
}
.list-hero-section button:hover::before {
  opacity: 0;
  transform: scale(0.5, 0.5);
  border-radius: 999px;
}
.list-hero-section button::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border: 1px solid #35ae8070;
  transform: scale(1.5, 1.5);
  border-radius: 999px;
}
.list-hero-section button:hover::after {
  opacity: 1;
  transform: scale(1, 1);
  border-radius: 999px;
}

.list-hero-section .list-img {
  display: flex;
  width: 65vw;
  height: 100vh;
  background-image: url(./assets/pcHeroSection.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.list-hero-section .list-infos {
  display: flex;
  width: 35vw;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 20px;
}

.list-hero-section .list-infos h1 {
  font-weight: bold;
}

.list-hero-section .list-infos ul {
  /* display: grid;
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: repeat(7, auto);  */
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.list-hero-section .list-infos li {
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.list-hero-section .list-infos span {
  color: black;
  width: 400px;
}

.company-hero-section {
  width: 100%;
  min-height: 100vh;
  background-color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: url("./assets/bgDetailLeft.png"),
    url("./assets/bgDetailRight.png");
  background-position: left 100px, right bottom 100px;
  background-repeat: no-repeat, no-repeat;
  background-size: 200px, 200px;
}

.company-hero-section-infos {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.company-hero-section-solution {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.company-hero-section-solution span {
  font-size: xx-large;
}

.company-hero-section-solution .color {
  color: #35ae80;
}

.company-hero-section-space {
  width: 100%;
  max-width: 1300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.company-hero-section-search {
  width: 50vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  text-align: end;
  color: white;
}

.company-hero-section-search p {
  font-size: 48px;
  padding-right: 20px;
}

.company-hero-section-search p-color {
  background: linear-gradient(to right, #03ab77, #24b594);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.company-hero-section-data {
  width: 50vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  text-align: start;
  color: white;
}

.company-hero-section-data ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
  width: 100%;
}

.company-hero-section-data li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 70%;
  height: 60px;
  border: 1px solid #35ae80;
  border-radius: 15px;
  position: relative;
}

.company-hero-section-data .description {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  padding-left: 20px;
  font-weight: bold;
}

.company-hero-section-data .number {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 60px;
  font-size: 38px;
  font-weight: bold;
  padding-left: 10px;
}

.company-hero-section-data .percentage {
  background-color: #35ae80;
  width: 70px;
  height: 100%;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  width: 62px;
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  right: -15px;
}

.company-hero-section-solution-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.company-hero-section-solution-numeration-mobile {
  display: none;
}

.company-hero-section-solution-numeration {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}

.company-hero-section-solution-numeration .itens {
  width: 65%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.company-hero-section-solution-numeration span {
  font-weight: bold;
  font-size: xx-large;
  padding: 10px;
  width: 30px;
  height: 30px;
  border: 1px solid #35ae80;
  background-color: #0a0a0a;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 1px 0px 20px 19px rgba(0, 0, 0, 0.84);
  -webkit-box-shadow: 1px 0px 20px 19px rgba(0, 0, 0, 0.84);
  -moz-box-shadow: 1px 0px 20px 19px rgba(0, 0, 0, 0.84);
}

.company-hero-section-solution-numeration span:last-of-type {
  background-color: #35ae80;
}

.company-hero-section-solution-numeration .line {
  position: absolute;
  width: 65%;
  height: 3px;
  background-color: #35ae80;
}

.company-hero-section-solution-text {
  width: 100%;
  display: flex;
  flex-direction: row;
  color: white;
  align-items: center;
  justify-content: center;
}

.company-hero-section-solution-text .text-container {
  width: 82%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.company-hero-section-solution-text .text {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 300px;
}

.bpo-hero-section {
  width: 100%;
  min-height: 65vh;
  background-color: #f9f8f2;
  background-image: url("./assets/bgDetailLeft.png");
  background-position: left 100px;
  background-repeat: no-repeat;
  background-size: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-top: 50px;
  padding-bottom: 50px; */
}

.bpo-hero-container {
  width: 100%;
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.bpo-image-text {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.bpo-image-text img {
  width: 500px;
}

.bpo-info-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 300px;
}

.bpo-info-text h1 {
  font-size: xx-large;
}

.bpo-info-text .color {
  color: #35ae80;
}

.bpo-info-text span {
  text-align: left;
}

.bpo-strategy p {
  width: 600px;
  text-align: center;
  font-weight: bold;
  font-size: large;
}

.bpo-strategy span {
  text-decoration: 2px underline;
  text-decoration-color: #35ae80;
}

.bpo-recommended {
  width: 100%;
  min-height: 35vh;
  background-color: #35ae80;
  background-image: url("./assets/bgLogo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.bpo-recommended .bpo-image-text {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 50vw;
  padding-right: 100px;
}

.bpo-recommended .bpo-info-text {
  display: flex;
  align-items: start;
  justify-content: start;
  width: 50vw;
  padding-left: 50px;
  color: #f9f8f2;
}

.bpo-recommended .bpo-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bpo-recommended .bpo-cta p {
  text-align: right;
  width: 350px;
}

.bpo-recommended .bpo-button {
  background: #f9f8f2;
  color: black;
}

.hero-advantage {
  width: 100%;
  min-height: 500px;
  background: #f9f8f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 50px;
  background-color: #f9f8f2;
  background-image: url("./assets/bgDetailRight.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 300px;
}

.hero-advantage h1 {
  width: 400px;
  font-size: 28px;
}

.hero-advantage h1 span {
  color: #35ae80;
}

.cards-adventage {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 250px;
  max-width: 1300px;
  gap: 20px;
  position: relative;
}

.cards-adventage .card {
  border-radius: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  gap: 15px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  transition: all 0.3s ease;
  scale: 1;
  cursor: default;
  text-align: center;
}

.cards-adventage .card-title {
  display: flex;
  flex-direction: row;
  /* text-align: left; */
}

.cards-adventage .card p {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cards-adventage .card p b {
  width: 100%;
}

.cards-adventage .card b {
  font-weight: bold;
  font-size: large;
}

.black {
  background: #0a0a0a;
  color: #f9f8f2;
  -webkit-box-shadow: 0px 10px 32px -3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 32px -3px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 10px 32px -3px rgba(0, 0, 0, 0.75);
}

.green {
  background: #35ae80;
  -webkit-box-shadow: 0px 10px 32px -3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 32px -3px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 10px 32px -3px rgba(0, 0, 0, 0.75);
}

.white {
  background: #e2e1db;
  -webkit-box-shadow: 0px 10px 32px -3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 32px -3px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 10px 32px -3px rgba(0, 0, 0, 0.75);
}

.items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
}

.items .item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 270px;
  overflow: hidden;
  transition: all 300ms ease-in-out;
  z-index: -1;
  opacity: 0;
  display: flex;
  align-items: center;
  scale: 0.9;
}

.item.active {
  opacity: 1;
  z-index: 99;
  box-shadow: 0px 0px 105px -35px rgba(0, 0, 0, 0.75);
  scale: 1.1;
  top: 30px;
}

.item.prev {
  z-index: 2;
  opacity: 0.25;
  transform: translate(-125%, -50%);
}

.item.next {
  z-index: 2;
  opacity: 0.25;
  transform: translate(14%, -50%);
}

.items .button-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 820px;
  z-index: 100;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.button-container .button {
  color: #35ae80;
  font-size: 48px;
  cursor: pointer;
  position: relative;
  opacity: 0.75;
  transition: all 300ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-container .button:hover {
  opacity: 1;
}

.button-container .button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: -99;
}

.button-container .button:nth-child(1) {
  float: left;
}

.button-container .button:nth-child(2) {
  float: right;
}

.hero-accession {
  width: 100%;
  min-height: 100vh;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accession-container {
  width: 100%;
  max-width: 1300px;
  height: 100%;
  color: #f9f8f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding-top: 50px;
  padding-bottom: 100px;
}

.accession-container .cards-container {
  display: flex;
  flex-direction: row;
  gap: 50px;
  width: 100%;
  height: 100%;
  align-items: start;
  justify-content: center;
}

.accession-container .card {
  width: 300px;
  border: 1px solid #f9f8f2;
  border-radius: 40px;
  padding: 20px;
  padding-bottom: 50px;
  position: relative;
  transition: ease 0.3s;
}

.accession-container .card:hover {
  border: 1px solid #35ae80;
}

.accession-container .card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: medium;
  width: 280px;
}

.accession-container .card li {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 15px;
}

.accession-container .card li .sub-text {
  font-size: smaller;
  font-weight: 100;
}

.card .prices {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.card span {
  font-size: small;
  font-weight: 100;
}

.card button {
  position: absolute;
  bottom: -20px;
  right: 20px;
}

.card .prices span:first-of-type {
  font-size: medium;
}

.card .prices span:last-of-type {
  font-size: medium;
  font-weight: 100;
}
.card .prices b {
  font-size: x-large;
}

.hero-feedback {
  width: 100%;
  height: 70vh;
  background: #f9f8f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.feedback-cards {
  width: 100%;
  max-width: 1300px;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.feedback-cards .card {
  width: 300px;
  height: 300px;
  border-radius: 40px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  -webkit-box-shadow: 0px 10px 32px -3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 32px -3px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 10px 32px -3px rgba(0, 0, 0, 0.75);
  position: relative;
}

.feedback-cards .card-photo {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 999px;
  border: 2px solid #35ae80;
  background: #f9f8f2;
  top: -50px;
}

.feedback-cards .card-infos {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer {
  width: 100%;
  height: 400px;
  background-color: #35ae80;
  color: white;
  gap: 40px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  font-size: 18px;
}

.footer-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 65px;
  padding-right: 65px;
  justify-content: space-between;
}

.footer-links-start {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-evenly;
}

.Footer-btn a {
  color: white;
  border: 2px solid white;
  height: 45px;
  display: flex;
  padding: 0 18px;
  align-items: center;
  border-radius: 4px;
  justify-content: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
  cursor: pointer;
}

.Footer-btn a i {
  color: white;
  font-size: 22px;
  transition: all 0.3s;
}
.Footer-btn a:hover i {
  color: black;
}

.Footer-btn a:hover {
  color: black;
  background: white;
}

.Footer-li {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.Footer-li span {
  font-weight: bold;
}

.Footer-li a {
  text-decoration: none;
  color: white;
  transition: all 0.3s;
}

.Footer-li a:hover {
  color: black;
}

.Extra {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.Extra i {
  color: white;
  font-size: 22px;
}

.Extranet-link {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
  cursor: pointer;
}

.Footer-social {
  display: flex;
  align-items: end;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.Footer-social-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.footer-content-mobile {
  display: none;
}

@media (max-width: 767px) {
  nav .Links {
    display: none;
  }

  .menu-mobile {
    display: flex;
    background-color: #f9f8f2;
  }

  .ph-list {
    font-size: 30px;
    cursor: pointer;
    color: black;
    font-weight: bold;
  }

  .ph-x {
    font-size: 30px;
    cursor: pointer;
    color: black;
    font-weight: bold;
  }
  #close {
    margin: 20px;
    float: right;
    color: #000;
    font-size: 20px;
    cursor: pointer;
  }
  #menu li a {
    padding-left: 35vw;
    text-decoration: none;
    font-size: x-large;
    font-weight: bold;
    color: black;
    transition: all 0.3s ease;
    position: relative;
    width: 240px;
    text-align: left;
    display: flex;
    justify-content: start;
  }

  #menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -50%);
    list-style: none;
    text-align: center;
    opacity: 0;
    transition: all 1s ease;
    display: flex;
    flex-direction: column;
    gap: 50px;
    background-color: #f9f8f2;
  }
  #container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #f9f8f2;
    text-align: center;
    transition: all 0.3s ease;
  }

  .hero-section {
    width: 100%;
    height: 100vh;
    background-image: url("./assets/bgHeroSection-mobile.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-section .hero-text {
    width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }

  .hero-text h1 {
    color: #f9f8f2;
    width: 90%;
    font-size: x-large;
    text-align: left;
  }

  .hero-text span {
    color: #f9f8f2;
    width: 90%;
    font-size: medium;
    font-weight: 100;
    text-align: left;
  }

  .hero-text span b {
    color: white;
    font-weight: bold;
  }

  .hero-section h1-color {
    color: #35ae80;
  }

  .hero-section button {
    margin-top: 20vh;
  }

  .list-hero-section {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 100px;
    overflow: hidden;
  }

  .list-hero-section .list-img {
    display: none;
  }

  .list-hero-section .list-infos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .list-hero-section .list-infos h1 {
    font-weight: bold;
    width: 330px;
  }

  .list-hero-section .list-infos ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    width: 330px;
  }

  .list-hero-section .list-infos li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .list-hero-section .list-infos span {
    color: black;
    width: 100%;
  }

  .list-infos .span-mobile {
    width: 330px !important;
  }

  .list-hero-section button {
    font-size: medium;
    width: 300px;
  }

  /* COMPANY */

  .company-hero-section {
    width: 100%;
    min-height: 100vh;
    background-color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
    /* background-image: url("./assets/bgDetailLeft.png"),
      url("./assets/bgDetailRight.png");
    background-position: left 100px, right bottom 100px;
    background-repeat: no-repeat, no-repeat;
    background-size: 200px, 200px; */
    background-image: none;
    overflow: hidden;
  }

  .company-hero-section-infos {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .company-hero-section-solution {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }

  .company-hero-section-solution span {
    font-size: xx-large;
  }

  .company-hero-section-solution .color {
    color: #35ae80;
  }

  .company-hero-section-solution-numeration-mobile {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: white;
  }

  .company-hero-section-solution-numeration-mobile h1 {
    line-height: 0px;
    padding: 0px;
    margin: none !important;
  }

  .company-hero-section-solution-numeration-mobile .itens {
    border: 1px solid #35ae80;
    border-radius: 999px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .text:last-child .company-hero-section-solution-numeration-mobile .itens {
    background: #35ae80;
  }

  .company-hero-section-space {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 100px;
  }

  .company-hero-section-search {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: start;
    color: white;
  }

  .company-hero-section-search p {
    font-size: 28px;
    width: 300px !important;
  }

  .company-hero-section-search p-color {
    background: linear-gradient(to right, #03ab77, #24b594);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  .company-hero-section-data {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: start;
    color: white;
  }

  .company-hero-section-data ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    width: fit-content;
    align-items: start;
    justify-content: center;
  }

  .company-hero-section-data li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    height: 60px;
    border: 1px solid #35ae80;
    border-radius: 15px;
    position: relative;
  }

  .company-hero-section-data .description {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    padding-right: 50px;
    font-weight: bold;
  }

  .company-hero-section-data .number {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 60px;
    font-size: 38px;
    font-weight: bold;
  }

  .company-hero-section-data .percentage {
    background-color: #35ae80;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 62px;
    width: 62px;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    right: -15px;
  }

  .company-hero-section-solution-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .company-hero-section-solution-numeration {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
  }

  .company-hero-section-solution-numeration .itens {
    width: 65%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .company-hero-section-solution {
    width: 100%;
  }

  .company-hero-section-solution span {
    font-size: 28px;
  }

  .company-hero-section-solution-numeration {
    display: none;
  }

  .company-hero-section-solution-text {
    width: 100%;
    display: flex;
    flex-direction: row;
    color: white;
    align-items: center;
    justify-content: center;
  }

  .company-hero-section-solution-text .text-container {
    width: 82%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
  }

  .company-hero-section-solution-text .text {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 95%;
  }

  /* COMPANY FIM */

  /* BPO */
  .bpo-hero-section {
    width: 100%;
    min-height: 65vh;
    background-color: #f9f8f2;
    /* background-image: url("./assets/bgDetailLeft.png"); */
    background-position: left 100px;
    background-repeat: no-repeat;
    background-size: 200px;
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding-top: 50px;
    padding-bottom: 50px; */
    overflow: hidden;
  }

  .bpo-hero-container {
    width: 100%;
    max-width: 1300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }

  .bpo-image-text {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }

  .bpo-image-text .img-mobile {
    width: 90%;
  }

  .bpo-info-text h1 {
    font-size: xx-large;
    text-align: center;
  }

  .bpo-info-text span {
    text-align: center;
    width: 95%;
  }

  .bpo-strategy {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bpo-strategy p {
    width: 90%;
    text-align: center;
    font-weight: bold;
    font-size: large;
  }
  /* BPO */

  /* BOP RECOMMENDED*/

  .bpo-recommended {
    max-width: 100vw;
    background-color: #35ae80;
    background-image: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
  }

  .bpo-recommended .bpo-image-text {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-right: 0px !important;
  }

  .bpo-recommended .bpo-image-text img {
    width: 300px;
    height: auto;
  }

  .bpo-recommended .bpo-info-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-left: 0px !important;
    color: #f9f8f2;
  }

  .bpo-recommended .bpo-cta p {
    text-align: center;
    width: 350px;
  }

  .bpo-recommended .bpo-button {
    background: #f9f8f2;
    color: black;
  }

  /* BOP RECOMMENDED END*/

  /* ADVANTAGE */

  .hero-advantage {
    width: 100%;
    min-height: 75vh;
    background: #f9f8f2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    background-color: #f9f8f2;
    background-image: url("./assets/bgDetailRight.png");
    background-image: none;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 300px;
    overflow: hidden;
  }

  .hero-advantage h1 {
    width: 100%;
    font-size: x-large;
    text-align: center;
  }

  .hero-advantage h1 span {
    color: #35ae80;
  }

  .cards-adventage {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
  }

  .cards-adventage .card p {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .items {
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    user-select: none;
  }

  .items .item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 270px;
    overflow: hidden;
    transition: all 300ms ease-in-out;
    z-index: -1;
    opacity: 0;
    display: flex;
    align-items: center;
    scale: 0.9;
  }

  .item.active {
    opacity: 1;
    z-index: 99;
    box-shadow: 0px 0px 105px -35px rgba(0, 0, 0, 0.75);
    scale: 1.1;
    top: 30px;
  }

  .item.prev {
    z-index: 2;
    opacity: 0.25;
    transform: translate(-125%, -50%);
  }

  .item.next {
    z-index: 2;
    opacity: 0.25;
    transform: translate(0%, -50%);
  }

  .items .button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-55%, 210px);
    width: 200px;
    z-index: 100;
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
    align-items: center;
  }

  .button-container .button {
    color: #35ae80;
    font-size: 48px;
    cursor: pointer;
    position: relative;
    opacity: 0.75;
    transition: all 300ms ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .button-container .button:hover {
    opacity: 1;
  }

  .button-container .button:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: -99;
  }

  .button-container .button:nth-child(1) {
    float: left;
  }

  .button-container .button:nth-child(2) {
    float: right;
  }

  /* ADVANTAGE FINAL */

  /* ACESSION */
  .hero-accession {
    width: 100%;
    min-height: 100vh;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .accession-container {
    width: 100%;
    max-width: 1300px;
    height: 100%;
    color: #f9f8f2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .accession-container .cards-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 50px;
  }

  .accession-container .card {
    width: 300px;
    border: 1px solid #f9f8f2;
    border-radius: 40px;
    padding: 20px;
    padding-bottom: 50px;
    position: relative;
    transition: ease 0.3s;
  }

  .accession-container .card:hover {
    border: 1px solid #f9f8f2;
  }

  .accession-container .card ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: medium;
    width: 280px;
  }

  .accession-container .card li {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 15px;
  }

  .accession-container .card li .sub-text {
    font-size: smaller;
    font-weight: 100;
  }

  .card .prices {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
  }

  .card span {
    font-size: small;
    font-weight: 100;
  }

  .card button {
    position: absolute;
    bottom: -20px;
    right: 20px;
  }

  .card .prices span:first-of-type {
    font-size: medium;
  }

  .card .prices span:last-of-type {
    font-size: medium;
    font-weight: 100;
  }
  .card .prices b {
    font-size: x-large;
  }
  /* ACESSION FINAL*/

  .footer-content {
    display: none;
  }

  footer {
    height: 500px;
  }

  .footer-content-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    width: 100%;
    gap: 50px;
  }

  .Footer-li-mobile {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: bold;
  }

  .Footer-li-mobile a {
    list-style: none;
  }

  .Footer-li-mobile a {
    text-align: center;
    text-decoration: none;
    color: white;
  }

  .footer-content-mobile .Extra {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-around;
  }
}
