:root {
  --background: #8156C4;
  --dark-green: #0E5945;
}

.emissor__content p,
.emissor__content span {
  font-family: "Inter", sans-serif;
}

/* HERO */

.emissor-woocommerce {
  overflow: hidden;
}

.hero {
  padding: 7rem 0 0;
  background-color: var(--background);
  position: relative;
}

.hero__content {
  display: flex;
  justify-content: space-between;
  padding: 12.4rem 0;
}

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 50rem;

  color: var(--white);
}

.hero__text>h1 {
  font-size: 6.9rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 2.8rem;
}

.hero__text>p {
  font-size: 1.6rem;
  margin-bottom: 5.2rem;
}

.hero__image {
  position: absolute;
  bottom: 0;
  right: -10rem;
  width: 52%;
}

.hero__image img {
  height: 68rem;
  width: auto;
}

#start-now {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 0;
}

.start-now-btn {
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
  background-color: var(--white);
  color: var(--background);
  text-transform: uppercase;
  padding: 1.5rem 4.5rem 1.7rem 4rem;
  border-radius: 12.2rem;
  margin-right: 2.7rem;
  min-width: 198px;
}

.start-now-btn:hover {
  opacity: 0.6;
}

.total_companies {
  font-size: 13px;
  display: block;
  max-width: 255px;
  text-align: center;
  margin-top: 8px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  margin-bottom: 3.2rem;
}

.sales-call {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 21.5rem;
  white-space: nowrap;
}

#start-now>.sales-call>a {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

#start-now>.sales-call>img {
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 0.6rem;
}

@media (max-width: 1023px) {
  .hero__text>p {
    font-size: 1.4rem;
  }
  
  .hero__content {
    align-items: center;
    padding: 4.4rem 0 6rem;
  }

  .hero__image {
    display: none;
  }

  .header {
    text-align: left;
  }

  .hero__text {
    max-width: 100%;
  }

  .total_companies {
    text-align: left;
    margin: 4rem 0 0;
  }
}

@media (max-width: 900px) {
  .hero {
    height: auto;
  }

}

@media (max-width: 600px) {
  .hero__text h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 500px) {
  .hero__text {
    width: 100%;
  }

  .hero__text h1 {
    font-size: 3.6rem;
  }

  #start-now {
    width: 100%;
  }
}

/* ABOUT */

.about {
  padding: 8.1rem 0 12.2rem;
}

.about__content {
  display: flex;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
  height: 30rem;
}

.about__box {
  padding: 4rem 0 4rem 8rem;
  color: var(--grey-dark);
  width: 33.3%;
  height: 23rem;
  transition: all 800ms;
}

.about__box>h4 {
  margin-bottom: 1.7rem;
}

.about__box.inside {
  border-right: 0.1rem solid rgba(0, 0, 0, 0.2);
  border-left: 0.1rem solid rgba(0, 0, 0, 0.2);
}

.about__box p {
  display: none;
  text-align: center;
  color: var(--white);
}

.about__box:hover {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #39CE89;
  padding: 4rem;
  height: auto;
}

.about__box:hover p {
  display: block;
}

.about__box:hover h4,
.about__box:hover .icon,
.about__box:hover .icon--medium {
  display: none;
}

.icon {
  width: 1.4rem;
  margin-top: 1.1rem;
}

.icon--medium {
  width: 2.4rem;
  margin-bottom: 1.7rem;
}

/* DIFFERENTIAL */

.differential {
  padding: 10rem 0;
}

.differential .title {
  color: var(--grey-dark);
}

.header {
  text-align: center;
  margin-bottom: 12.2rem;
}

.small {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 104.3%;
  letter-spacing: 0.385em;
  text-transform: uppercase;
  color: var(--primary-green);
}

.title {
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 120%;
}

.differential--text {
  display: flex;
  gap: 7.4rem;
}

.differential--text img {
  width: 50%;
}

.differential--text .title {
  margin-bottom: 1.9rem;
}

.differential--text p {
  margin-bottom: 2.3rem;
  color: var(--grey-medium);
}

.differential--text p:last-of-type {
  color: var(--primary-green);
  font-weight: 600;
}

.differential--text a {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  background-color: var(--primary-green);
  color: var(--white);
  text-transform: uppercase;
  padding: 1.3rem 4.1rem 1.5rem 4.2rem;
  border-radius: 12.2rem;
}

@media (max-width: 1023px) {
  
  .header {
    text-align: left;
    margin-bottom: 5rem;
  }

  .differential {
    padding: 6rem 0;
  }

}

@media (max-width: 768px) {
  .differential--text {
    flex-direction: column;
  }

  .differential--text img {
    width: 90%;
  }
}

/* QUESTIONS */

.questions {
  padding-bottom: 8rem;
  color: var(--grey-dark);
}

.questions__content>h2 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 5.5rem;
}

.questions .question {
  color: var(--primary-green);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.questions--box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem;
}

.questions--box .column-1 {
  max-width: 51rem;
}

.questions--box .column-2 {
  max-width: 55rem;
}


.questions--box .answer {
  font-size: 1.4rem;
}

/* CASES */
.cases {
  height: 27.2rem;
  max-height: 27.2rem;
  background: var(--white);
}

.cases-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: min(121.6rem);
  margin: 0 auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.case {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 27.2rem;
  width: 31.1rem;
  transition: all 0.5s;
}

.case:hover>.case-hide {
  display: none;
}

.case:hover {
  background: var(--page-base-color);
}

.case-active,
.first-case-active,
.last-case-active {
  display: none;
}

.case:hover>.case-active,
.case:hover>.first-case-active,
.case:hover>.last-case-active {
  display: block;
  margin: 0 auto;
}

.case:hover {
  background-color: var(--primary-green);
}

.case-hide {
  padding: 0 5.6rem;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 13.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.case-hide>img {
  align-self: flex-start;
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 1.8rem;
}

.case-hide>h2 {
  align-self: flex-start;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--grey-black);
  margin-bottom: 0.8rem;
}

.case-hide>p {
  width: 20.2rem;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(84, 88, 93, 0.7);
}

.case-hide span {
  color: var(--page-base-color);
}

#ver-mais-img {
  width: 2rem;
  height: 2rem;
}

#last-case {
  border-right: none;
}

#first-case {
  border-left: none;
}

.case-active-infos>h1 {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 2.3rem;
  width: 21.9rem;
}

.case-active-infos>p {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  color: var(--white);
  line-height: 160%;
  width: 19rem;
}

/* CASES - MEDIA QUERIES */
/* Valores em px e rem para funcionar em  navegadores que não suportam a unidade rem */

@media (max-width: 1440px) {
  .cases-box {
    max-width: min(144rem);
  }

  #first-case {
    margin-left: 50px;
    margin-left: 5rem;
  }

  #last-case {
    border-right: none;
  }
}

@media (max-width: 1280px) {
  .cases-box {
    gap: 55px;
    gap: 5.5rem;
  }
}

@media (max-width: 1200px) {
  .cases-box {
    gap: 35px;
    gap: 3.5rem;
  }
}

@media (max-width: 768px) {
  .cases {
    height: auto;
    max-height: 1250px;
    max-height: 125rem;
    padding-top: 20px;
    padding-top: 2rem;
    display:none;
  }

  .products-differentials-img {
    display:none;
  }

  .cases-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 480px;
    width: 48rem;
  }

  #first-case {
    margin-left: 0;
  }

  .case-hide {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    padding-top: 20px;
    padding-top: 2rem;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 32px;
    padding-bottom: 3.2rem;
    border: none;
  }

  .case-hide>img,
  .case-hide>h2 {
    align-self: center;
  }

  .case-hide h2 {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cases {
    height: auto;
    display: none;
  }

  .case {
    height: auto;
    padding: 20px 10px;
  }

  .active {
    width: 100%;
  }

  .cases-box {
    width: 100%;
    gap: 0;
  }

  .case-hide>h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }

  .case-hide>p {
    font-size: 16px;
    font-size: 1.6rem;
    width: 300px;
    width: 30rem;
  }
}