/* Definição das variáveis */
:root {
  --primary-color: #F7941D;
  --on-primary-color: #0B0303;
  --primary-dark-color: #F28400;
  --primary-light-color: #FFBA67;

  --secondary-color: #6A6A6A;
  --on-secondary-color: #FCFCFC;
  --secondary-dark-color: #4E4C4C;
  --secondary-light-color: #7B7B7B;

  --background-color: #ffffff;
  --surface-color: #f9f9f9;
  --error-color: #e51810;
  --on-error-color: #ffffff;
  --on-surface-color: #5C5C5C;
  --on-background-color: #2F2F2F;

  --gray-100: #EFEFEF;
  --gray-200: #C6C6C6;
  --gray-300: #6A6A6A;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

/* Buttons */

.outlined-button {
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  background-color: var(--background-color);
  padding: 12px 48px;
  color: var(--primary-color);
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.outlined-button:hover {
  border-color: var(--primary-light-color);
  color: var(--primary-light-color);
}

.outlined-button:disabled {
  background-color: var(--primary-light-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.outlined-button:focus {
  background-color: var(--primary-dark-color);
  color: var(--background-color);
  border-color: var(--primary-dark-color);
}

.primary-button {
  border: none;
  border-radius: 30px;
  background-color: var(--primary-color);
  padding: 12px 48px;
  color: var(--on-primary-color);
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.primary-button:hover {
  background-color: var(--primary-light-color);
}

.primary-button:disabled {
  background-color: var(--primary-light-color);
  color: var(--primary-color);
}

.primary-button:focus {
  background-color: var(--primary-dark-color);
}

/* Estilos Gerais */

/* Navbar */


.navbar > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-block: 20px;
}

.navbar .menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  width: 200px;
}

.logo img {
  width: 100%;
}

.menu a {
  color: var(--on-background-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.menu a:hover {
  color: var(--primary-color);
}

.menu a.active {
  color: var(--primary-color);
}

.menu a.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  margin-top: 4px;
}

/* Banner section */

.banner-section {
  background-image: url(./assets/banner.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-section.menu2 {
  background-image: url(./assets/ecommerceb.jpg);
}

.banner-section.menu3 {
  background-image: url(./assets/_ecommerce-C.jpg);
}

.banner-section > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

}

.banner-section > .container > .text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 16px;
  width: 50%;
  line-height: 1.2;
}

.banner-section > .container > .text > h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--on-primary-color);
}

.banner-section > .container > .text > p {
  font-size: 18px;
  color: var(--on-primary-color);
}

.banner-section > .container > .text > button {
  margin-top: 40px;
} 

/* Info section */

.info-section {
  padding-block: 40px;
  background-color: var(--background-color);
}

.info-section .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-section h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--on-background-color);
  margin-bottom: 24px;
}

.info-section .flex-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.info-section .infos {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.info-section .infos > h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
}

.info-section .infos span {
  font-size: 16px;
  color: var(--on-background-color);
}

.info-section .infos .footer-info {
  display: flex;
  gap: 12px;
}

.info-section .infos .footer-info h3 {
  font-size: 32px;
  font-weight: bold;
  color: var(--on-background-color);
}

.info-section .infos .footer-info .line {
  width: 4px;
  background-color: var(--secondary-color);
}

.info-section .image {
  flex: 1;
}

/* Services section */

.services-section {
  padding-block: 40px;
  background-color: var(--surface-color);
}

.services-section .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.services-section .our-services {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
  flex: 1;
}

.services-section .our-services h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--on-primary-color);
}

.services-section .our-services span {
  font-size: 18px;
  color: var(--on-primary-color);
}

.services-section .our-services button {
  margin-top: 40px;
}

.services-section .cards-container {
  display: flex;
  justify-content: end;
  gap: 32px;
  flex-wrap: wrap;
  flex: 2;
}

.services-section .cards-container .card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 300px;
}

.services-section .cards-container .card img {
  width: 30%;
  height: auto;
}

.services-section .cards-container .card h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--on-primary-color);
}

.services-section .cards-container .card span {
  font-size: 16px;
  color: var(--on-primary-color);
}

/* Pragmatic content section */

.pragmatic-section {
  padding-block: 40px;
  background-color: var(--background-color);
}

.pragmatic-section .container {
  display: flex;
  flex-direction: column;
}

.pragmatic-section h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--on-background-color);
  margin-bottom: 12px;
}

.pragmatic-section .container > span {
  font-size: 18px;
  color: var(--on-background-color);
  margin-bottom: 24px;
}

.pragmatic-section .topicList-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  width: 100%;
}

.pragmatic-section .topicList-container > span {
  color: var(--primary-color);
  font-weight: 500;
  cursor: pointer;
}

.pragmatic-section .topicList-container .topic-list {
  display: flex;
  flex-direction: column;
  border-inline: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
}

.pragmatic-section .topicList-container .single-topic {
  color: var(--on-background-color);
  font-size: 16px;
  transition: 0.3s;
}

.pragmatic-section .topicList-container .header-topic {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  font-weight: bold;
  font-size: 18px;
  border-block: 1px solid var(--gray-200);
}

.pragmatic-section .topicList-container .header-topic img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.pragmatic-section .topicList-container .topic-details {
  padding: 12px 24px;
  flex-direction: column;
  gap: 8px;
}

.pragmatic-section .topicList-container .topic-details {
  display: none;
}

.pragmatic-section .topicList-container .topic-details.show {
  display: flex;
  opacity: 1;
}

.open {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.open.rotate {
  transform: rotate(180deg);
}


.pragmatic-section .topicList-container .topic-details span::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: inline-block;
  margin-inline: 8px;
}

/* Our team section */

.our-team {
  padding-block: 40px;
  background-color: var(--background-color);
}

.our-team .container {
  display: flex;
  flex-direction: column;
}

.our-team .container > h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--on-background-color);
  margin-bottom: 12px;
}

.our-team .container > span {
  font-size: 18px;
  color: var(--on-background-color);
  margin-bottom: 24px;
}

.our-team .team-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: linear-gradient(180deg, var(--primary-light-color) 26%, var(--background-color) 26%);
  padding-top: 30px;
  padding-left: 30px;
  border-radius: 4px;
}
 
.our-team .team-container .team-member {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  gap: 16px;
  width: 200px;
  height: 260px;
  padding-left: 8px;
  padding-bottom: 8px;
}

.our-team .team-container .team-member .card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: start;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 8px;
  border-bottom-left-radius: 8px;
}

.our-team .team-container .team-member .card-info > h3 {
  font-size: 18px;
  font-weight: bold;
  color: var(--on-background-color);
}

.our-team .team-container .team-member .card-info > span {
  font-size: 14px;
  color: var(--on-background-color);
}

/* Depositions section */

.depositions {
  padding-block: 40px;
  background-color: var(--background-color);
}

.depositions .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.depositions h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--on-background-color);
  margin-bottom: 12px;
  text-align: center;
}

.depositions .depositions-container {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  background-color: var(--surface-color);
  padding: 24px;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.depositions .depositions-container > img {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.depositions .depositions-container span {
  font-size: 16px;
  color: var(--on-background-color);
  text-align: center;
  margin: 24px;
  line-height: 1.2;
}

.depositions .depositions-container .user {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.depositions .depositions-container .user img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.depositions .depositions-container .user .user-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.depositions .depositions-container .user .user-info h3 {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-dark-color);
  white-space: nowrap;
}

.depositions .depositions-container .user .user-info span {
  font-size: 14px;
  color: var(--primary-dark-color);
  white-space: nowrap;
}

/* Our plans section */

.our-plans-menu3 {
  padding-block: 40px;
  background-color: var(--background-color);
}

.our-plans-menu3 .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-plans-menu3 .plan-card {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 500px;
  background-color: var(--primary-color);
  color: var(--on-primary-color);
  padding: 48px;
  border-radius: 32px;
  padding-top: 64px;
}

.our-plans-menu3 .plan-card .title {
  position: absolute;
  top: -72px;
  background-color: var(--on-primary-color);
  color: var(--primary-color);
  padding: 24px 48px;
  border-radius: 20px;
  font-size: 32px;
  font-weight: bold;
  left: 50%;
  transform: translateX(-50%);
  width: 153%;
}

.our-plans-menu3 .plan-card .details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.our-plans-menu3 .plan-card .details > span {
  font-size: 16px;
  font-weight: 600;
  color: var(--on-primary-color);
  text-align: center;
}

.our-plans-menu3 .plan-card .details h3 {
  font-size: 64px;
  font-weight: bold;
}

.our-plans-menu3 .plan-card .details .price {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 8px;
}

.our-plans-menu3 .plan-card .details .price span {
  font-size: 32px;
  font-weight: bold;
  padding-top: 12px;
}


/* Our plans section */

.our-plans-menu2 {
  padding-block: 40px;
  background-color: var(--background-color);
}

.our-plans-menu2 .container {
  display: flex;
  flex-direction: column;
}

.our-plans-menu2 .container > h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--on-background-color);
  margin-bottom: 12px;
}

.our-plans-menu2 .container > span {
  font-size: 18px;
  color: var(--on-background-color);
  margin-bottom: 24px;
}

.progressbar-container {
  background-color: var(--surface-color);
  padding: 64px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  justify-self: center;
}

.progressbar-container  .progressbar-content {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.progressbar-container  .progressbar-content span {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.progressbar-container  .progressbar-content .progressbar {
  width: 100%;
  height: 4px;
  background-color: var(--gray-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
}

.progressbar-container  .progressbar-content .progress {
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 8px;
  width: 50%;
  position: relative;
}

.progressbar-container  .progressbar-content .progress::after {
  content: '';
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: -6px;
  right: 0;
  cursor: pointer;
}



/* Our plans section */

.our-plans {
  padding-block: 40px;
  background-color: var(--background-color);
}

.our-plans .container {
  display: flex;
  flex-direction: column;
}

.our-plans .container > h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--on-background-color);
  margin-bottom: 12px;
}

.our-plans .container > span {
  font-size: 18px;
  color: var(--on-background-color);
  margin-bottom: 24px;
}

.our-plans .plans-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.our-plans .plans-container .plan-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background-color: var(--background-color);
  border-radius: 8px;
  max-width: 300px;
  border: 1px solid var(--primary-color);
}

.our-plans .plans-container .plan-card.master {
  background-color: var(--primary-color);
  color: var(--on-background-color);
  padding-block: 48px;
}

.our-plans .plans-container .plan-card h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--on-background-color);
}

.our-plans .plans-container .plan-card .price {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 600;
}

.our-plans .plans-container .plan-card.master .price {
  color: var(--on-primary-color);
}

.our-plans .plans-container .plan-card .price > span {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
}

.our-plans .plans-container .plan-card.master .price > span {
  font-weight: bold;
  color: var(--on-primary-color);
}

.our-plans .plans-container .plan-card .plan-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

/* Contact section */

.contact {
  padding-block: 40px;
  background-color: var(--primary-dark-color);
}

.contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 600px;
}

.contact .container > h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--on-primary-color);
  margin-bottom: 12px;
}

.contact .container > span {
  font-size: 18px;
  color: var(--on-primary-color);
  margin-bottom: 24px;
}

.contact .form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.contact .form input {
  padding: 12px 16px;
  border-radius: 4px;
  background-color: var(--background-color);
  color: var(--on-background-color);
  border: none;
  font-size: 16px;
  width: 100%;
}

.contact .form textarea {
  padding: 12px 16px;
  border-radius: 4px;
  background-color: var(--background-color);
  color: var(--on-background-color);
  border: none;
  font-size: 16px;
  resize: none;
  width: 100%;
}

/* FAQ section */

.faq {
  padding-block: 40px;
  background-color: var(--background-color);
}

.faq .container {
  display: flex;
  flex-direction: column;
}

.faq .container >  h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--on-background-color);
  margin-bottom: 12px;
}

.faq .container > span {
  font-size: 18px;
  color: var(--on-background-color);
  margin-bottom: 24px;
}

.faq .faq-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq .faq-cards .cards-line {
  display: flex;
  gap: 24px;
  align-items: start;
}

.faq .faq-cards .cards-line .card {
  background-color: var(--surface-color);
  padding: 24px;
  border-radius: 8px;
  flex: 1;
}

.faq .faq-cards .cards-line .card-header {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 24px;
  padding-bottom: 24px;
}

.faq .faq-cards .cards-line .card-header h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--on-background-color);
}

.faq .faq-cards .cards-line .card-header img {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: 0.3s;
}


.card-header img.rotate {
  transform: rotate(180deg);
}

.content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.content.show {
  display: block;
  opacity: 1;
}

/* Footer section */

.footer-infos {
  padding-block: 40px;
  background-color: var(--surface-color);
}

.footer-infos .container {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.footer-infos .container > div {
  flex: 1;
}

.footer-infos .container > div > img {
  width: 200px;
}

.footer-infos .container .info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-infos .container .info .icons {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-infos .container .routes {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.footer-infos .container .routes h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--on-background-color);
  margin-bottom: 12px;
}

.footer-infos .container .contact-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-infos .container .contact-footer h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--on-background-color);
}

.footer-infos .container .contact-footer .form {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 12px;
  margin-top: 12px;
}

.footer-infos .container .contact-footer .form input {
  padding: 12px 16px;
  border-radius: 20px;
  background-color: var(--background-color);
  color: var(--on-background-color);
  border: 1px solid var(--gray-200);
  font-size: 16px;
  width: 100%;
}

.footer {
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.open-sidebar-button > img {
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.open-sidebar-button {
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  top: 1rem;
  right: 1rem;
  color: red;
}

.sidebar {
  background-color: var(--surface-color);
  overflow-x: hidden;
  transition: 0.5s;
  z-index: 999;
  height: -webkit-fill-available;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 50%;
  min-width: 300px;
  transform: translateX(-100%);
  padding: 80px;
}

.sidebar ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar ul a, 
.sidebar h3 {
  color: var(--on-background-color);
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
}

.sidebar h3 {
  color: var(--primary-color);
  margin-bottom: 32px;
}

.closebtn {
  display: block;
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 24px;
  font-weight: bolder;
  cursor: pointer;
  text-decoration: none;
  color: var(--on-background-color);
}

@media (max-width: 768px) {
  .open-sidebar-button {
    display: block;
  }

  .navbar .menu {
    display: none;
  }

  .navbar .container > button {
    display: none;
  }

  .info-section .image {
    display: none;
  }

  .banner-section > .container {
    flex-direction: column;
    gap: 24px;
  }

  .banner-section > .container > .text {
    width: 100%;
  }

  .services-section .container {
    flex-direction: column;
  }

  

  .services-section .cards-container {
    justify-content: center;
  }

  .services-section .cards-container .card {
    width: 100%;
    align-items: center;

  }

  .our-team .team-container {
    flex-direction: column;
    background: var(--background-color);
    padding: 0;
  }

  .our-team .team-container .team-member {
    width: 100%;
  }

  .our-plans .plans-container {
    flex-direction: column;
  }

  .our-plans .plans-container .plan-card {
    width: 100%;
  }

  .faq .faq-cards .cards-line {
    flex-direction: column;
  }

  .faq .faq-cards .cards-line .card {
    width: 100%;
  }

  .depositions .depositions-container {
    flex-direction: column;
    gap: 24px;
    padding-top: 60px;
  }

  .footer-infos .container {
    flex-direction: column;
  }

  .footer span {
    text-align: center;
  } 
}