body {
  padding: 0;
  margin: 0;
  background-color: #0e0e11;
}

/* Scroll Bar CSS*/
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: #0e0e11;
}

::-webkit-scrollbar-thumb {
  background-color: #fddd10;
  border-radius: 25px;
  cursor: grab;
}

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

/* Nav Bar CSS */
nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px 0;
  position: sticky;
  border-bottom: solid 1px #3fa9f5;
}

.logo {
  width: 180px;
}

.nav-items {
  font-weight: bold;
  display: flex;
  gap: 100px;
}

.nav-item {
  text-decoration: none;
  cursor: pointer;
  font-size: 20px;
  color: #3fa9f5;
  transition: transform 0.2s ease;
}

.nav-item:hover {
  color: #fddd10;
  transform: scale(1.05);
}

.nav-buttons {
  display: flex;
  gap: 30px;
}

.nav-button {
  border: 2px solid #3fa9f5;
  background-color: transparent;
  font-weight: bold;
  color: #3fa9f5;
  padding: 5px 20px;
  border-radius: 25px;
  transition: transform 0.2s ease;
}

.nav-button:hover {
  background-color: #3fa9f5;
  color: #0e0e11;
  transform: scale(1.05);
}

.nav-mobile {
  display: none;
}

.toggle-menu {
  display: none;
}

/* Section 1 CSS */
.section-one {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-image: url(/static/images/v4-background.png);
}

.s-one-left {
  margin-left: 100px;
}

.s-one-brand {
  font-weight: bold;
  font-size: 22px;
  color: #3fa9f5;
}

.s-one-title h1 {
  font-size: 46px;
  color: white;
}

.s-one-text p {
  font-size: 23px;
  color: #3fa9f5;
  font-weight: 500;
}

.s-one-button button {
  padding: 10px 80px;
  background-color: transparent;
  border: 3px solid #fddd10;
  color: #fddd10;
  border-radius: 25px;
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.5s ease;
}

.s-one-button button:hover {
  transform: scale(1.02);
  background-color: #fddd10;
  color: #0e0e11;
}

.s-one-image {
  width: 600px;
  margin-right: 30px;
  margin-left: 50px;
}

body .sticky-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.sticky-button button {
  padding: 10px 20px;
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.wpp-icon {
  width: 25px;
  margin-right: 10px;
}

.sticky-button button:hover {
  background-color: #128c7e;
  transform: scale(1.05);
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Section 2 CSS */
.section-two {
  margin-bottom: 100px;
}

.s-two-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.s-two-image {
  width: 650px;
}

.s-two-header {
  font-weight: bold;
  font-size: 22px;
  color: #3fa9f5;
}

.s-two-title {
  font-size: 38px;
  color: white;
}

.s-two-text {
  font-size: 23px;
  color: #3fa9f5;
  margin-bottom: 100px;
}

/* Section 3 CSS */
.section-three {
  margin-bottom: 200px;
  background-image: url(/static/images/section-3-background.png);
  background-size: cover;
}

.s-three-top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.s-three-container-1-left {
  padding: 25px;
  background-color: #3fa9f5;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  width: 400px;
}

.s-three-container-1-right {
  padding: 25px;
  background-color: #3fa9f5;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 400px;
}

.s-3-icon {
  width: 60px;
  margin-bottom: 15px;
  background-color: #1e1e24;
  border-radius: 10px;
  padding: 10px;
}

.s-3-header-1 {
  font-weight: 700;
  font-size: 36px;
  color: #0e0e11;
}

.s-3-text-1 {
  font-size: 18px;
  color: #0e0e11;
  font-weight: 500;
}

.s-three-container-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  width: 370px;
  height: 300px;
  border: 2px solid #3fa9f5;
  border-radius: 10px;
}

.s-3-header-2 {
  color: #3fa9f5;
  font-weight: 700;
  font-size: 36px;
}

.s-3-text-2 {
  color: white;
  font-weight: 500;
}

.s-three-bottom {
  display: flex;
  justify-content: center;
  gap: 15px;
  color: white;
  margin-bottom: 100px;
}

.s-three-container-3 {
  display: flex;
  flex-direction: column;
  padding: 25px;
  width: 380px;
  border: 1px solid #b5b6c4;
  border-radius: 10px;
}

.s-3-header-3 {
  font-size: 36px;
  font-weight: 700;
}

.s-3-text-3 {
  font-size: 18px;
  font-weight: 500;
}

.s-three-container-1-left,
.s-three-container-1-right,
.s-three-container-2,
.s-three-container-3 {
  cursor: default;
  transition: transform 0.4s ease;
}

.s-three-container-1-left:hover,
.s-three-container-1-right:hover,
.s-three-container-2:hover,
.s-three-container-3:hover {
  transform: scale(1.05);
  border-radius: 10px;
}

/* Section 4 CSS */
.section-four {
  display: grid;
  grid-template-columns: 50% 50%;
  place-items: center;
  margin-bottom: 150px;
}

.s-four-left {
  padding-left: 200px;
}

.s-four-title {
  color: #3fa9f5;
}

.s-four-text {
  font-size: 20px;
  color: white;
}

.s-four-image {
  width: 600px;
}

/* Section 5 CSS */
.section-five {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.s-five-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 50px;
}

.s-five-title {
  font-size: 20px;
  color: #fddd10;
}

.s-five-text {
  color: #3fa9f5;
}

.func-left,
.func-right {
  max-width: 600px;
  display: flex;
  flex-direction: column;
}

.func-container-1,
.func-container-2 {
  display: flex;
  gap: 50px;
  margin-left: 100px;
  margin-right: 100px;
  margin-bottom: 150px;
  background: rgb(14, 14, 17);
  background: linear-gradient(
    90deg,
    rgba(14, 14, 17, 1) 0%,
    rgba(41, 41, 50, 1) 100%
  );
  padding: 20px;
  border-radius: 20px;
}

.func-container-2 {
  background: rgb(14, 14, 17);
  background: linear-gradient(
    270deg,
    rgba(14, 14, 17, 1) 0%,
    rgba(41, 41, 50, 1) 100%
  );
}

.func-title {
  color: #fddd10;
}

.func-text {
  color: white;
  font-size: 20px;
}

.func-image {
  width: 600px;
}

/* Section 6 CSS*/
.section-six {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 150px;
}

.s-six-header {
  text-align: center;
}

.s-six-title {
  font-size: 20px;
  font-weight: 500;
  color: #fddd10;
}

.s-six-text {
  color: #3fa9f5;
}

.carousel-container {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 100px;
}

.carousel {
  display: flex;
}

.item-carousel {
  display: none;
  width: 800px;
}

.active {
  display: block;
}

.carousel-button {
  background-color: transparent;
  border: none;
  transition: transform 0.2s ease;
}

.carousel-button:hover {
  transform: scale(1.1);
  opacity: 0.5;
}

.arrow-icon {
  width: 40px;
}

.profile {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.profile-picture {
  width: 70px;
}

.name-rate {
  display: flex;
  flex-direction: column;
}

.profile-name {
  color: white;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 3px;
  margin-left: 15px;
}

.rate {
  width: 200px;
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.star-rate {
  width: 20px;
  margin-right: 5px;
}

.rate-text {
  color: white;
  font-size: 18px;
}

/* Section Integrações */
.section-integracoes {
  margin-bottom: 50px;
}

.s-int-header {
  text-align: center;
  margin-bottom: 25px;
}

.s-int-title {
  font-size: 20px;
  color: #fddd10;
  font-weight: 600;
}

.s-int-content {
  display: flex;
  justify-content: center;
  gap: 100px;
}

.plat-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plat-name {
  margin-top: 15px;
  color: white;
  font-size: 24px;
  font-weight: 600;
}

.plat-logo {
  width: 150px;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.plat-logo:hover {
  transform: scale(1.1);
}

/* Section 7 CSS */
.section-seven {
  margin-bottom: 100px;
}

.s-seven-header {
  text-align: center;
  margin-bottom: 40px;
}

.s-seven-title {
  font-size: 20px;
  color: #fddd10;
}

.s-seven-text {
  color: #3fa9f5;
}

.s-seven-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.plano-1 {
  padding: 50px;
  border: 3px solid #3fa9f5;
  border-radius: 15px;
  width: fit-content;
}

.plano-1-title h1 {
  font-weight: 500;
  color: #3fa9f5;
  text-align: center;
  margin-bottom: 40px;
}

.plano-1-benefits {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.plano-1-benefits .benefit {
  font-size: 20px;
  color: white;
  border-bottom: 2px solid #0e3f6c;
}

.plano-1-price {
  text-align: center;
}

.plano-1-price .price {
  color: #3fa9f5;
  font-size: 36px;
}

.mes {
  font-size: 14px;
}

.plano-1-price .plano-button {
  background-color: #3fa9f5;
  border-radius: 25px;
  padding: 5px 40px;
  color: #0e0e11;
  font-size: 24px;
  font-weight: bold;
  border: none;
  margin-top: 10px;
  transition: transform 0.3s ease;
}

.plano-1-price .plano-button:hover {
  transform: scale(1.05);
}

.plano-1-price .security {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.plano-1-price .lock {
  width: 20px;
  margin-right: 5px;
}

.plano-1-price .security p {
  font-size: 20px;
  color: #3fa9f5;
  font-weight: 500;
  margin: 0;
}

.plano-2 {
  padding: 50px;
  background-color: #3fa9f5;
  border-radius: 15px;
  height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plano-2-title h1 {
  font-weight: 500;
  color: #0e0e11;
  text-align: center;
  margin-bottom: 40px;
}

.plano-2-benefits {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.plano-2-benefits .benefit {
  font-size: 20px;
  font-weight: 500;
  color: #0e0e11;
  border-bottom: 2px solid #0e3f6c;
}

.plano-2-price {
  text-align: center;
}

.save {
  font-weight: 500;
}

.plano-2-price .price {
  color: #0e0e11;
  font-size: 36px;
}

.mes {
  font-size: 14px;
}

.plano-2-price .plano-button {
  background-color: #0e0e11;
  border: 2px solid #3fa9f5;
  border-radius: 25px;
  padding: 5px 40px;
  color: #3fa9f5;
  font-size: 24px;
  font-weight: bold;
  border: none;
  margin-top: 10px;
  transition: transform 0.3s ease;
}

.plano-2-price .plano-button:hover {
  transform: scale(1.05);
}

.plano-2-price .security {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.plano-2-price .lock {
  width: 20px;
  margin-right: 5px;
}

.plano-2-price .security p {
  font-size: 20px;
  color: #0e0e11;
  font-weight: 500;
  margin: 0;
}

/* Section 8 CSS */
.section-eight {
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-eight-header {
  text-align: center;
}

.section-eight-title {
  font-size: 20px;
  color: #fddd10;
}

.question-container {
  width: 800px;
}

.faq-container {
  width: 800px;
  margin: 0 auto;
}

.faq-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  border-top: 2px solid white;
  border-right: 0;
  border-left: 0;
  border-bottom: 0;
  color: white;
  padding: 10px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.chevron {
  width: 20px;
}

.faq-title:hover {
  transform: scale(1.05);
}

.faq-title p {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
}

.faq-content {
  display: none;
  padding: 10px;
  border-bottom: 2px solid white;
  border-top: none;
}

.faq-content p {
  margin: 0;
  font-size: 20px;
  color: #3fa9f5;
}

/* Footer CSS */

footer {
  border-top: 2px solid #3fa9f5;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-top {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}

.footer-logo {
  width: 300px;
}

.f-top-right {
  display: flex;
}

.social-media {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.sm-logo {
  width: 30px;
  margin-right: 10px;
}

.sm-name {
  margin: 0;
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
}

.f-b-left {
  width: 600px;
}

.f-b-text-left,
.f-b-text-right {
  color: white;
  font-size: 16px;
}

/* CSS for JavaScript Animation */
.section {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease-out, transform 0.7s ease-out;
}

.section.visible {
  opacity: 1;
  transform: scale(1);
}

/* CSS for Responsiveness */

/* Medium Desktops */
@media only screen and (min-width: 1180px) and (max-width: 1366px) {
  /* Section 1 */
  .nav-item {
    font-size: 14px;
  }

  .nav-button {
    font-size: 14px;
  }

  .s-one-title h1 {
    font-size: 32px;
  }

  .s-one-text p {
    font-size: 18px;
  }

  .s-one-button button {
    font-size: 14px;
  }

  .s-one-image {
    width: 500px;
  }

  /* Section 2 */

  .s-two-image {
    width: 500px;
  }

  .s-two-title {
    font-size: 28px;
  }

  .s-two-text {
    font-size: 18px;
  }

  /* Section 3 */
  .s-three-container-1-left,
  .s-three-container-1-right {
    width: 350px;
  }

  .s-three-container-2 {
    width: 350px;
  }

  .s-three-container-3 {
    width: 350px;
  }

  .s-3-icon {
    width: 50px;
  }

  .s-3-header-1,
  .s-3-header-2,
  .s-3-header-3 {
    font-size: 26px;
  }

  .s-3-text-1,
  .s-3-text-2,
  .s-3-text-3 {
    font-size: 16px;
  }

  /* Section 4 */
  .s-four-title {
    font-size: 28px;
  }

  .s-four-text {
    font-size: 16px;
  }

  .s-four-image {
    width: 400px;
  }

  /* Section 5 */
  .s-five-text {
    font-size: 32px;
  }

  .func-container-1,
  .func-container-2 {
    width: 900px;
  }

  .func-image {
    width: 400px;
  }

  .func-text {
    font-size: 18px;
  }

  /* Section 6 */
  .s-six-text {
    font-size: 32px;
  }

  /* Section 7 */
  .s-seven-text {
    font-size: 32px;
  }

  .plano-1,
  .plano-2 {
    padding: 30px;
  }

  .plano-1-title h1,
  .plano-2-title h1 {
    font-size: 32px;
  }

  .plano-1-benefits.benefit {
    font-size: 14px;
  }
}

/* Mobile CSS */
@media only screen and (min-width: 300px) and (max-width: 1180px) {
  .nav-desktop {
    display: none;
  }

  .nav-mobile {
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
  }

  .nav-mobile-button {
    background-color: transparent;
    border: 2px solid #fddd10;
    font-size: 26px;
    border-radius: 5px;
    color: #fddd10;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
  }

  .toggle-menu.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 300px;
    position: absolute;
    right: 10px;
    background-color: #0e0e11;
    padding: 10px;
    z-index: 100;
    border: 2px solid #fddd10;
    border-radius: 10px;
    margin-top: 5px;
    box-shadow: 0px 0px 10px #fddd10;
  }

  .nav-item-mobile {
    text-decoration: none;
    cursor: pointer;
    font-size: 20px;
    color: #3fa9f5;
    font-weight: bold;
    transition: transform 0.2s ease;
    padding-left: 10px;
  }

  .nav-item-mobile:hover {
    color: #fddd10;
    transform: scale(1.05);
  }

  /* Section 1 */
  .section-one {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .s-one-left {
    margin: 0;
    padding: 40px;
  }

  .s-one-title h1 {
    font-size: 24px;
  }

  .s-one-text p {
    font-size: 14px;
  }

  .s-one-button button {
    padding: 10px 15px;
    font-size: 14px;
  }

  .s-one-image {
    width: 350px;
    margin: 0;
    padding-right: 60px;
  }

  .sticky-button button {
    font-size: 14px;
  }

  /* Section 2 */
  .section-two {
    margin-bottom: 0;
  }

  .s-two-image {
    width: 300px;
  }

  .s-two-title {
    font-size: 24px;
    padding: 0 30px;
  }

  .s-two-text {
    font-size: 14px;
    padding: 0 30px;
  }

  /* Section 3 */
  .s-three-top {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 100px;
  }

  .s-3-icon {
    width: 50px;
  }

  .s-three-container-1-left,
  .s-three-container-1-right,
  .s-three-container-2 {
    width: 300px;
    height: 200px;
    border-radius: 10px;
  }

  .s-3-header-1,
  .s-3-header-2,
  .s-3-header-3 {
    font-size: 24px;
  }

  .s-3-text-1,
  .s-3-text-2,
  .s-3-text-3 {
    font-size: 14px;
  }

  .s-three-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 0;
  }

  .s-three-container-3 {
    width: 300px;
    height: 250px;
  }

  /* Section 4 */
  .section-four {
    display: flex;
    flex-direction: column;
  }

  .s-four-left {
    padding: 0 40px;
  }

  .s-four-title {
    font-size: 24px;
  }

  .s-four-text {
    font-size: 14px;
  }

  .s-four-image {
    width: 300px;
  }

  /* Section 5 */
  .section-five {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .s-five-text {
    font-size: 24px;
  }

  .func-container-1,
  .func-container-2 {
    width: 350px;
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
  }

  .func-left,
  .func-right {
    display: flex;
    justify-content: center;
  }

  .func-title {
    font-size: 24px;
  }

  .func-text {
    font-size: 14px;
  }

  .func-image {
    width: 300px;
  }

  /* Section 6 */
  .section-six {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .s-six-text {
    font-size: 24px;
  }

  .carousel-container {
    width: 370px;
    gap: 15px;
  }

  .carousel-button {
    padding: 0;
  }

  .arrow-icon {
    width: 25px;
  }

  .carousel {
    width: 100%;
  }

  .item-carousel {
    width: 300px;
  }

  .profile-picture {
    width: 50px;
  }

  .profile-name {
    font-size: 18px;
  }

  .star-rate {
    width: 15px;
  }

  .rate-text {
    font-size: 14px;
  }

  /* Section 7 */
  .section-seven {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .s-seven-text {
    font-size: 20px;
  }

  .s-seven-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .plano-1,
  .plano-2 {
    width: 340px;
    padding: 30px;
  }

  .plano-1-benefits.benefit {
    width: fit-content;
  }

  /* Section 8 */

  .faq-container {
    display: flex;
    flex-direction: column;
    width: 370px;
  }

  .faq-title p {
    font-size: 18px;
  }

  .faq-content p {
    font-size: 16px;
  }

  /* Footer */

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .f-b-left {
    width: 370px;
  }
}
