.header-top {
  width: 100%;
  position: fixed;
  z-index: 9999;
  background: var(--background-primary);
  transition: box-shadow 0.3s ease-in-out;
  -webkit-transition: box-shadow 0.3s ease-in-out;
  -moz-transition: box-shadow 0.3s ease-in-out;
  -o-transition: box-shadow 0.3s ease-in-out;
}

.header-container {
  padding-top: 10px;
}

.header-content-top {
  display: flex;
  justify-content: space-around;
  align-items: center;
  column-gap: 20px;
}

.header-top-text {
  position: relative;
  left: 20px;
  flex-grow: 2;
}

.header-top-text h2 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: var(--primary-white);
}

.header-top-text h2 span {
  display: block;
  font-weight: bold;
}

.header-top-hours {
  flex: 1 1 300px;
}

.header-top-hours {
  display: flex;
  gap: 10px;
}

.title {
  text-align: center;
}

.title p {
  font-size: 30px;
  color: var(--primary-pink);
  font-weight: bold;
  width: 50px;
  height: 50px;
  background: var(--primary-white);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.title p:hover {
  border-bottom: 6px solid var(--primary-yellow);
}

.title p ~ span {
  font-size: 18px;
  color: var(--primary-white);
}

.header-button {
  display: flex;
  align-items: center;
  gap: 80px;
}

.header-button button {
  position: relative;
  font-size: 16px;
  cursor: pointer;
  background: var(--primary-white);
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 900;
  color: var(--primary-pink);
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.header-button button:hover::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-yellow);
  border-radius: 30px;
  opacity: 0;
  animation: background 0.8s forwards;
}

@keyframes background {
  0% {
    left: 0;
  }
  100% {
    left: 50%;
    opacity: 1;
  }
}

/* MAIN - BANNER ( ! ) */
.banner {
  position: relative;
  top: 92px;
  background: url(../assets/imgs/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 806px;
  overflow: hidden;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0%;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 806px;
  background-size: cover;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, #000000 100%);
  z-index: 2;
}

.banner-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner-image img {
  pointer-events: auto;
}

.banner-description-content {
  top: 66%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner-primary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.banner-primary-button button {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-white);
  padding: 12px 42px;
  border: none;
  background: var(--primary-pink);
  border-radius: 300px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.banner-primary-button button:hover {
  background: var(--primary-white);
  color: var(--primary-pink);
  letter-spacing: 1px;
}

.banner-description-content h2 {
  font-size: 60px;
  line-height: 60px;
  color: var(--primary-white);
  font-weight: bold;
  width: 936px;
  display: inline-block;
  margin: 0 auto;
  text-align: center;
}

.banner-description-content h2 span {
  display: block;
  font-weight: inherit;
  text-align: center;
}

.banner-description-content p {
  font-size: 20px;
  text-align: center;
  color: var(--primary-white);
  margin-top: 16px;
}

.banner-description-content p span {
  display: block;
}

/* EFFECTS - DEGRADAR */
.animate-text {
  background: linear-gradient(
    270deg,
    #858384,
    #dfa1df,
    #f5d4e6,
    #777477,
    #f1eded
  );
  background-size: 600% 600%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: moverDegrade 8s ease infinite;
}

@keyframes moverDegrade {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.banner-secondary-button {
  top: 82%;
}

.banner-secondary-button button {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-white);
  background: var(--primary-pink);
  border-radius: 30px;
  border: none;
  padding: 12px 42px;
  cursor: pointer;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.banner-secondary-button button:hover {
  background: var(--primary-white);
  color: var(--primary-pink);
}

.banner :is(.banner-secondary-button, .banner-description-content) {
  position: absolute;
  z-index: 3;
}

/* MAIN - POINTS ( ! ) */
.points {
  margin-top: 126px;
}

.points-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.points-content :is(.points-descritpion, p) {
  margin-left: 24px;
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-pink);
  display: flex;
  justify-content: center;
  gap: 10px;
}

.points-content p i {
  position: relative;
  top: -1px;
  font-size: 26px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background: var(--primary-pink-light);
  color: var(--primary-white);
  border-radius: 50%;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.points-content p:hover i {
  transform: scale(1.2);
  background-color: var(--primary-pink);
}

/* MAIN - CARDS ( ! ) */
.cards {
  width: 100%;
  margin: auto;
  margin-top: 76px;
}

.cards-container {
  display: flex;
  gap: 20px;
}

.cards-info {
  width: 800px;
  background: var(--primary-pink);
  border-radius: 30px;
  text-align: center;
  padding: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.cards-info:hover {
  background: var(--primary-gray);
}

.cards-info :is(i, h2, p) {
  color: var(--primary-white);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.cards-info .icon i {
  font-size: 40px;
  font-weight: 300;
}

.cards-info .cards-description {
  width: 534px;
  margin: auto;
}

.cards-info .cards-description h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 6px;
}

.cards-info .cards-description p {
  font-size: 20px;
}

/* MAIN - PLANS ( ! ) */
.plans {
  width: 100%;
  height: 100%;
  margin: auto;
  background: url(../assets/imgs/bg-two.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.plans .plans-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
}

.plans .plans-content-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plans-content-info :is(h2, p) {
  color: var(--primary-gray);
}

.plans-content-info .plans-title h2 {
  font-size: 40px;
}

.plans-content-info :is(span) {
  display: block;
  font-weight: inherit;
}

.plans-content-info .plans-text p {
  font-size: 22px;
  font-weight: 400;
}

.plans-content-info .plans-border {
  position: relative;
  width: 340px;
  height: 1px;
  background-color: var(--primary-gray);
}

.plans-content-info .plans-border::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 70px;
  height: 3px;
  background: var(--primary-pink);
}

.plans-container:hover .plans-content-info .plans-border::after {
  animation: widthMover 8s ease infinite;
}

@keyframes widthMover {
  0% {
    width: 70px;
  }

  100% {
    width: 340px;
  }
}

.plans .plans-content-description {
  width: 62.1%;
  background: var(--primary-pink);
  border-radius: 60px;
  overflow: hidden;
  padding: 58px;
}

.plans-content-description .plans-paragraph p {
  position: relative;
  top: 2px;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-white);
  margin-bottom: 28px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.plans-content-description .plans-paragraph p span {
  font-size: 24px;
  font-weight: 600;
}

.plans-content-description .plans-paragraph div:hover p,
.plans-content-description .plans-paragraph div:hover i {
  transform: translateX(3px);
}

.plans-content-description .plans-paragraph div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.plans-content-description .plans-paragraph div i {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 2px solid var(--primary-white);
  color: var(--primary-white);
  border-radius: 50%;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.plans-content-description .plans-paragraph div:hover i {
  background: var(--primary-white);
  color: var(--primary-pink);
}

.plans-content-description .plans-paragraph p:hover i {
  background: var(--primary-white);
  color: var(--primary-pink);
}

.plans-content-description .plans-button {
  position: relative;
  padding-inline: 42px;
}

.plans-content-description .plans-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 60px;
  color: var(--primary-pink);
  background: var(--primary-white);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.plans-content-description .plans-button:hover a {
  opacity: 0.8;
}

/*  MAIN - CONFIRMED ( PLANS! )  */
.confirmed {
  margin-top: 86px;
}

.confirmed-container {
  display: flex;
  flex-direction: column;
}

.confirmed .confirmed-container {
  text-align: center;
}

.confirmed .confirmed-content-text h2 {
  font-size: 52px;
  font-weight: bold;
  margin-bottom: 3px;
  background: linear-gradient(to left, #d30275 15%, #e5719b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.confirmed .confirmed-content-text :is(p) {
  color: var(--primary-gray);
  font-weight: 500;
}

.confirmed .confirmed-content-text p {
  font-size: 28px;
  margin-bottom: 10px;
}

.confirmed .confirmed-description {
  width: 835px;
  margin: 0 auto;
}

.confirmed .confirmed-description p {
  font-size: 20px;
}

/* CARDS IMGS */
.confirmed-cards-container {
  margin-top: 60px;
}

.confirmed .confirmed-cards-all {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.confirmed .comfirmed-img {
  position: relative;
  width: 390px;
  height: 420px;
  background: transparent;
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.confirmed .comfirmed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.confirmed .comfirmed-img:hover {
  transform: scale(1.06);
}

.confirmed .comfirmed-img::after {
  content: '';
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-cards-pink);
  opacity: 0;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.confirmed .comfirmed-img:hover::after {
  opacity: 0.8;
}

.confirmed .comfirmed-img::before {
  content: '';
  position: absolute;
  top: 0%;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, #000000 122%);
  z-index: 2;
}

.confirmed .comfirmed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.confirmed .comfirmed-img .comfirmed-img-name {
  position: absolute;
  top: 90%;
  left: 30px;
  z-index: 4;
  color: var(--primary-white);
  text-align: left;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.confirmed .comfirmed-img:hover .comfirmed-img-name {
  top: 86.8%;
}

.confirmed .comfirmed-img .comfirmed-img-name::after {
  content: '';
  position: absolute;
  top: 0;
  left: -12px;
  width: 3px;
  height: 24px;
  background: var(--primary-pink-light);
  transition: all 0.9s cubic-bezier(0.43, 2, 0.55, 0.27);
}

.confirmed .comfirmed-img:hover .comfirmed-img-name::after {
  height: 38px;
}

.confirmed .comfirmed-img .comfirmed-img-name h2 {
  transform: translateY(3px);
  font-size: 18px;
  font-weight: 600;
  transition: all 0.5s ease;
}

.confirmed .comfirmed-img:hover .comfirmed-img-name h2 {
  transform: translateY(8px);
}

.confirmed .comfirmed-img .comfirmed-img-name p {
  font-size: 18px;
}

.confirmed .comfirmed-img .comfirmed-description {
  position: absolute;
  top: 52%;
  left: 0px;
  color: var(--primary-white);
  z-index: 5;
  width: 100%;
  text-align: left;
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.43, 2, 0.55, 0.27);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

/* COMFIRMED SECOND PAGE ( ! ) */

.confirmed .comfirmed-img .secondPage {
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  transform: translateX(-100%);
  transition: all 0.5s cubic-bezier(0.43, 2, 0.55, 0.27);
  transition: 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.confirmed .comfirmed-img:hover .secondPage {
  transform: translateX(0%);
}

.confirmed .contentsPage {
  max-width: 500px;
  transform: translateY(-10px);
}

.confirmed .contentsPage :is(h2, h3) {
  padding-top: 16px;
}

.confirmed .contentsPage h2 {
  color: var(--primary-white);
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}

.confirmed .contentsPage h3 {
  color: var(--primary-white);
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}

.confirmed .contentsPage p {
  color: var(--primary-white);
  font-weight: 300;
  width: 244px;
  display: block;
  font-size: 16px;
  margin-bottom: 20px;
}

/* CONFIRMED RODAPE */
.confirmed .comfirmed-rodape-text p {
  position: relative;
  top: -20px;
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
  color: var(--primary-gray);
}

.confirmed .comfirmed-rodape-text p strong {
  font-size: 40px;
  color: var(--primary-pink);
}

.confirmed .comfirmed-rodape-text p span {
  font-weight: bold;
  display: block;
}

.confirmed .confirmed-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirmed .confirmed-button button {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-white);
  padding: 12px 42px;
  border: none;
  background: var(--primary-pink);
  border-radius: 300px;
  margin-bottom: 16px;
  transition: all 0.6s ease;
  cursor: pointer;
}

.confirmed .confirmed-button button:hover {
  background: var(--primary-gray);
  color: var(--primary-white);
}

/* MAIN - CARDS - BOX ( ! ) */
.cards-box {
  margin-top: 92px;
}

.cards-box .cards-box-one {
  display: flex;
  gap: 20px;
}

.cards-box .cards-box-one .cards-items {
  position: relative;
  width: 370px;
  height: 330px;
  background: var(--primary-pink);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
}

.cards-box .cards-box-one .cards-items:hover {
  box-shadow: 0 0 20px rgba(75, 74, 75, 0.9);
}

.cards-box .cards-box-one .cards-items :is(svg, h2, p) {
  color: var(--primary-white);
  margin-bottom: 6px;
}

.cards-box .cards-items h2 {
  font-size: 24px;
  font-weight: bold;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.cards-box .cards-items:hover h2 {
  transform: scale(1.05);
}

.cards-box .cards-items h2 ~ p {
  font-size: 18px;
  text-align: center;
  font-weight: 200;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.cards-box .cards-items:hover h2 ~ p {
  transform: scale(1.05);
}

.cards-box .cards-items h2 ~ p span {
  display: block;
}

/* MAIN - DIV FOR WHOM AND ( ! ) */
.for-whom-and {
  width: 100%;
  height: 100%;
  margin: auto;
  background: url(../assets/imgs/bg-two.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.for-whom-and .for-whom-and-container {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 120px;
}

.for-whom-and .for-whom-and-img {
  position: relative;
  display: flex;
  margin-top: 86px;
}

.for-whom-and .for-whom-and-img .play {
  position: absolute;
  top: 50%;
  right: -50px;
  z-index: 9999;
}

.for-whom-and .for-whom-and-img .play::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--background-primary);
  border-radius: 50%;
  animation: pulse 1.2s linear infinite reverse;
  opacity: 0.4;
  z-index: -1;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(230, 79, 209);
  }

  100% {
    box-shadow: 0 0 0 50px rgb(230, 141, 218);
  }
}

.for-whom-and .for-whom-and-description {
  position: relative;
  top: 96px;
  width: 736px;
}

.for-whom-and .for-whom-and-description :is(h2, p, span) {
  color: var(--primary-gray);
  font-weight: 300;
  display: block;
  margin-bottom: 20px;
}

.for-whom-and .for-whom-and-description h2 {
  font-size: 32px;
}

.for-whom-and .description-paragraph p {
  font-size: 20px;
}

.for-whom-and .for-whom-and-button-whats {
  margin-top: 30px;
}

.for-whom-and .for-whom-and-button-whats {
  position: relative;
  width: 446px;
  height: 60px;
  border-radius: 300px;
  background-color: var(--background-whats);
  border: 2px solid var(--background-border-whats);
  overflow: hidden;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.for-whom-and .for-whom-and-button-whats:hover {
  box-shadow: var(--shadow-whats);
  transform: scale(1.01);
}

.for-whom-and .for-whom-and-button-whats a {
  font-size: 16px;
  color: var(--primary-button-waths);
  display: flex;
  align-items: center;
  padding: 16px 36px;
  margin: auto;
}

.for-whom-and .for-whom-and-button-whats h3 {
  font-weight: 300;
}

.for-whom-and .for-whom-and-button-whats .icon-whats {
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  width: 70px;
  color: var(--background-whats-icon);
  background-color: var(--background-icon-whats);
  padding: 10px 20px;
  overflow: hidden;
}

.for-whom-and .for-whom-and-button-whats .icon-whats::before {
  content: '';
  position: absolute;
  top: 0;
  left: -136%;
  width: 100%;
  height: 100%;
  background: var(--backgorund-flash);
  -webkit-transition: 0.6s ease-in-out;
  -moz-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
  transform: skewX(-35deg);
}

.for-whom-and .for-whom-and-button-whats:hover .icon-whats::before {
  content: '';
  left: 100%;
}

.for-whom-and .for-whom-and-button-whats .icon-whats i {
  position: relative;
  top: 3px;
  font-size: 26px;
}

.for-whom-and-phrase-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.for-whom-and-phrase-content {
  width: 723px;
  display: inline-block;
  margin: 0 auto;
  text-align: center;
}

.for-whom-and-phrase-content h2 {
  font-size: 52px;
  font-weight: bold;
  background: linear-gradient(to left, #d30275 15%, #e5719b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.for-whom-and-phrase-content p {
  font-size: 28px;
  color: var(--primary-gray);
  font-weight: 300;
}

.for-whom-and-phrase-content .phrase-description p {
  font-size: 36px;
  color: var(--primary-pink);
  line-height: 36px;
}

.for-whom-and-phrase-content :is(h2, p) {
  margin-bottom: 20px;
}

/* MAIN - INVESTMENTS ( ! ) */
.investments {
  margin-top: 96px;
}

.investments .investments-title h2 {
  font-size: 52px;
  text-align: center;
  font-weight: 900;
  background: linear-gradient(to left, #d30275 15%, #e5719b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.investments .investments-content {
  display: grid;
  grid-template-columns: repeat(4, 366px);
  grid-auto-rows: 1062px;
  justify-content: center;
  margin-top: 10px;
  gap: 10px;
}

.investments .investments-cards {
  position: relative;
  overflow: hidden;
}

/* DISPLAY - GRID */
.investments .investments-text h3 {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-white);
  padding: 30px;
}

.investments .investments-cards:nth-child(1) {
  background: var(--background-cards-orange-body);
  border-radius: 20px;
}

.investments .investments-cards:nth-child(1) .investments-text {
  text-align: center;
  background: var(--background-cards-orange-top);
}

.investments .investments-cards:nth-child(2) .investments-text {
  text-align: center;
  background: var(--background-cards-yellow-top);
}

.investments .investments-cards:nth-child(2) {
  background: var(--background-cards-yellow-body);
  border-radius: 20px;
}

.investments .investments-cards:nth-child(3) .investments-text {
  text-align: center;
  background: var(--background-cards-black-top);
}

.investments .investments-cards:nth-child(3) {
  background: var(--background-cards-black-body);
  border-radius: 20px;
}

.investments .investments-cards:nth-child(4) .investments-text {
  text-align: center;
  background: var(--background-cards-blue-top);
}

.investments .investments-cards:nth-child(4) {
  background: var(--background-cards-blue-body);
  border-radius: 20px;
}

.investments :is(.investments-value h3, .investments-value p) {
  color: var(--primary-white);
}

.investments .investments-value {
  text-align: center;
  margin-top: 72px;
}

.investments .investments-value h3 {
  font-size: 46px;
  font-weight: bold;
  line-height: 70px;
}

.investments .investments-value h3 strong {
  font-size: 80px;
}

.investments .investments-value h3 span {
  font-size: 60px;
  position: relative;
  top: -24px;
  left: -30px;
  font-weight: bold;
}

.investments .investments-cards:nth-last-of-type(2)  .investments-value h3 span {
  position: relative;
  left: -20px;
}

.investments .investments-value p {
  font-size: 26px;
}

.investments .investments-value .available {
  margin-top: 5px;
  font-size: 18px;
}

.investments .investments-value .available-one {
  margin-top: 6px;
  font-size: 17px;
}

.investments .investments-texts {
  padding: 24px;
}

.investments .investments-texts p {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-gray);
  margin-bottom: 6px;
  padding: 7px 0;
  -webkit-transition: 0.6s ease-in-out;
  -moz-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}

.investments .investments-texts p:hover {
  transform: translateX(3px);
}

.investments .investments-texts div {
  display: flex;
  align-items: center;
  gap: 3px;
  border-bottom: 1px solid var(--primary-gray);
}

.investments .investments-texts div i {
  color: var(--primary-gray);
  position: relative;
  top: 0;
  font-size: 28px;
  font-weight: 500;
  -webkit-transition: 0.6s ease-in-out;
  -moz-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}

.investments .investments-texts div:hover i {
  transform: translateX(-2px);
}

.investments .investments-texts p span {
  font-weight: 500;
}

.investments
  .investments-cards:nth-child(3)
  :is(.investments-texts p, .investments-texts i) {
  color: var(--primary-white);
}

.investments .investments-cards:nth-child(3) .investments-texts div {
  border-bottom: 1px solid var(--primary-white);
}

.investments
  .investments-cards:nth-child(4)
  :is(.investments-texts p, .investments-texts i) {
  color: var(--primary-white);
}

.investments .investments-cards:nth-child(4) .investments-texts div {
  border-bottom: 1px solid var(--primary-white);
}

.investments .investments-cards:nth-child(1) div:nth-child(6) {
  border: none;
}

.investments .investments-cards:nth-child(2) div:nth-child(7) {
  border: none;
}

.investments .investments-cards:nth-child(3) div:nth-child(8) {
  border: none;
}

.investments .investments-cards:nth-child(4) div:nth-child(11) {
  border: none;
}

/* BUTTON - INVESTIMENT */
.investments .investments-button {
  display: flex;
  gap: 6px;
  position: absolute;
  top: 87%;
  left: 12%;
  padding: 12px 42px;
  margin: auto;
  background: var(--primary-white);
  border-radius: 80px;
  -webkit-transition: 0.6s ease-in-out;
  -moz-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
  &:hover {
    background: var(--primary-gray);
  }
}

.investments .investments-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: var(--primary-pink);
  -webkit-transition: 0.6s ease-in-out;
  -moz-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}

.investments .investments-button a i {
  font-size: 28px;
  font-weight: 700;
}

.investments .investments-footer {
  text-align: center;
  width: 100%;
  height: 146px;
  position: absolute;
  top: 92.4%;
  left: 0;
  background: var(--primary-pink);
}

.investments .investments-footer p {
  font-size: 18px;
  color: var(--primary-white);
  padding-top: 22px;
}

.investments .investments-footer p span {
  display: block;
}

/*  MAIN - ACCORDION ( ! )  */
.accordion {
  margin-top: 136px;
}

.accordion .accordion_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.accordion .accordion_container .accordion_info {
  width: 1230px;
  height: 100%;
  background-color: var(--primary-gray);
  border-radius: 40px;
  overflow: hidden;
  padding: 94px;
}

.accordion .accordion_container .accordion_info h2 {
  font-size: 48px;
  font-weight: bold;
  color: var(--primary-white);
  text-transform: uppercase;
}

.accordion .accordion_container .accordion_info .accordio_items {
  position: relative;
  margin-top: 20px;
  width: 1060px;
  border-bottom: 2px solid var(--primary-white);
  padding-bottom: 16px;
}

.accordion .accordion_container .accordion_info .accordio_items:nth-child(7) {
  border-bottom: none;
}

.accordion .accordion_container .accordion_info .accordio_items .acc_text {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion .accordion_container .accordion_info .accordio_items .acc_text h3 {
  font-size: 18px;
  color: var(--primary-white);
}

.accordion .accordion_container .accordion_info .accordio_items .acc_text i {
  font-size: 24px;
  color: var(--primary-white);
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.accordion
  .accordion_container
  .accordion_info
  .accordio_items
  .acc_text.power
  i {
  transform: rotate(360deg);
}

.accordion .accordion_container .accordion_info .accordio_items .paragraph {
  font-weight: 100;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.accordion
  .accordion_container
  .accordion_info
  .accordio_items
  .paragraph.power {
  height: 100%;
}

.accordion .accordion_container .accordion_info .accordio_items .paragraph p {
  font-size: 18px;
  color: var(--primary-white);
  padding: 20px 0;
}

.accordion
  .accordion_container
  .accordion_info
  .accordio_items
  .paragraph
  p
  span {
  display: block;
  margin: 10px 0;
  font-weight: 600;
}

/* <!-- MAIN - ACCORDION ( TESTE ) --> */

/* ============================================== */

/* FOOTER ( ! ) */

.footer {
  margin-top: 126px;
}

.footer .footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.footer .footer-logo {
  margin-bottom: 10px;
}

.footer .footer-description {
  width: 100%;
  background: var(--primary-pink);
  padding: 20px;
}

.footer .footer-content {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer .footer-description :is(p, a, i) {
  color: var(--primary-white);
  font-weight: 300;
  font-size: 18px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.footer .footer-social-network {
  display: flex;
  gap: 16px;
}

.footer .footer-social-network a:hover {
  color: var(--background-cards-yellow);
}

.footer .footer-social-network a:hover i {
  color: var(--background-cards-yellow);
}

.footer-copyright {
  font-weight: 700;
  color: var(--primary-gray);
  padding: 12px;
}
