/* Navbar Geral */
.navbar {
  background-color: var(--white);
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 4px 8px var(--box-shadow);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar-link {
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  color: var(--black);
  transition: background-color 0.3s ease;
}

.navbar-link:hover {
  color: var(--blue);
}

/* Dropdown Geral */
.navbar-dropdown {
  position: relative;
}

/* Dropdown Resources*/
.navbar-item {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px 0;
  z-index: 10;
  width: auto;
  min-width: 150px;
}

.dropdown-menu.is-active {
  display: block;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-category {
  padding: 10px 20px;
}

.dropdown-category-title {
  display: block;
  font-weight: bold;
  color: var(--black);
  margin-bottom: 5px;
  padding: 5px 0;
  cursor: default;
}

.dropdown-submenu {
  list-style: none;
  margin: 0;
  padding-left: 15px;
}

.dropdown-link {
  display: block;
  padding: 5px 0;
  color: var(--black);
  text-decoration: none;
  font-size: 0.9em;
  white-space: nowrap;
}

.dropdown-link:hover {
  color: var(--blue);
}

.navbar-item:hover .dropdown-menu {
  display: block;
}


/* Menu Hamburger */
.navbar-hamburger {
  display: none;
  font-size: 2.5em;
  cursor: pointer;
}

/* Responsividade */
@media (max-width: 768px) {
  .navbar {
    padding: 20px 24px;
  }

  .navbar-container {
    flex-wrap: wrap;
  }

  .navbar-menu {
    display: none;
  }

  .navbar-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 10px;
    background-color: var(--white);
    padding: 20px;
    gap: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--box-shadow);
  }

  .navbar-hamburger {
    display: block;
  }

  .dropdown-menu {
    display: block;
    position: static;
    width: 100%;
    padding: 0 0 0 10px;
    background-color: transparent;
    box-shadow: none;
  }

  .dropdown-menu li:last-child {
    padding-bottom: 0;
  }

  .dropdown-category li:last-child {
    padding-bottom: 0;
  }

  .dropdown-submenu {
    display: block;
    padding: 0 0 0 10px;
  }

  .dropdown-submenu li:last-child {
    padding-bottom: 0;
  }
}

/* Buttons */
.navbar-button,
.button-primary,
.button-secondary,
.button {
  padding: 10px 20px;
  border-radius: 24px;
  font-family: 'Gantari', sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border: none;
  font-size: medium;
}

.navbar-button {
  background-color: var(--light-yellow);
  color: var(--black);
}

.navbar-button:hover {
  background-color: var(--dark-yellow);
  box-shadow: 0px 4px 8px var(--box-shadow);
}

.button-primary,
.button {
  background-color: var(--light-yellow);
  color: var(--black);
}

.button-primary:hover,
.button:hover {
  background-color: var(--dark-yellow);
  box-shadow: 0px 4px 8px var(--box-shadow);
}

.button-secondary {
  background-color: var(--blue);
  color: var(--white);
}

.button-secondary:hover {
  background-color: var(--dark-blue);
  box-shadow: 0px 4px 8px var(--box-shadow);
}


/* Images */
.image-round-left {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-top-left-radius: 1400px;
  border-bottom-left-radius: 1400px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.image-round-right {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 1400px;
  border-bottom-right-radius: 1400px;
}

.image-square {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  overflow: hidden;
}

/* Hero */
.hero-primary,
.hero-secondary {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.hero-primary {
  background-color: var(--light-yellow);
}

.hero-secondary {
  background-color: var(--khaki);
}

.hero-container {
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-left-content,
.hero-right-content {
  flex: 1 1 50%;
  max-width: 50%;
  align-items: left;
}

.hero-left-content {
  padding-left: 80px;
  margin-right: 30px;
}

.hero-right-content {
  padding-right: 80px;
  margin-left: 30px;
}

.hero-left-image {
  flex: 0 0 auto;
  max-width: 50%;
  display: flex;
  justify-content: flex-end;
  padding-right: 0;
}

.hero-right-image {
  flex: 0 0 auto;
  max-width: 50%;
  display: flex;
  justify-content: flex-start;
  padding-right: 0;
}

.hero-heading-thin {
  font-size: 72px;
  font-weight: 100;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 0px;
}

.hero-heading-bold {
  font-size: 72px;
  font-weight: 900;
  color: var(--blue);
  margin-top: -24px;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 1.2em;
  color: var(--black);
  margin-bottom: 30px;
}

@media (max-width: 768px) {

  .hero-primary,
  .hero-secondary,
  .hero-terciary {
    padding: 30px 30px;
    justify-content: space-between;
    height: auto;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left-content,
  .hero-right-content {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 20px;
    align-items: center;
    padding-left: 24px;
    padding-right: 24px;
    margin-right: 0px;
  }

  .hero-left-image,
  .hero-right-image {
    display: none;
  }

  .hero-heading-thin,
  .hero-heading-bold {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 48px;
  }
}

/* Sub Hero */
.sub-hero-primary,
.sub-hero-secondary,
.sub-hero-terciary {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.sub-hero-primary {
  background-color: var(--white);

}

.sub-hero-secondary {
  background-color: var(--almost-white);
}

.sub-hero-terciary {
  background-color: var(--khaki);
}

.sub-hero-container {
  padding: 50px 0;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.sub-hero-heading-primary {
  font-size: 2em;
  margin-bottom: 10px;
  text-align: center;
  color: var(--black)
}

.sub-hero-heading-secondary {
  font-size: 2em;
  margin-bottom: 10px;
  text-align: center;
  color: var(--blue)
}

.sub-hero-heading-terciary {
  font-size: 2em;
  margin-bottom: 10px;
  text-align: center;
  color: var(--orange)
}

.sub-hero-text {
  text-align: justify;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 1.2em;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;

}

.sub-hero-image {
  max-width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .sub-hero {
    padding: 20px 40px;
    height: auto;
  }

  .sub-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .sub-hero-container-quiz {
    display: none;
    flex-direction: column;
    text-align: center;
    width: 100%;
  }

  .sub-hero-container-quiz.quiz-activated {
    display: flex;
  }

  .sub-hero-description {
    display: none;
  }

  .sub-hero-image {
    max-width: 100%;
  }
}

/* Style Items */

/* Demo App */
.demo-app {
  height: 80vh;
}

/* Feature Cards */
.feature-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-card {
  width: 300px;
  align-items: center;
  background-color: var(--white);
  border-radius: 10px;
  padding: 20px;
  border: 2px dashed var(--light-yellow);
  text-align: center;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  color: var(--orange);
}

.feature-card h3 {
  font-size: 1.5em;
  color: var(--orange);
  margin-bottom: 10px;
}

/* Product Wrapper */
.product-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}

.product-image {
  flex: 1;
  max-width: 30%;
  overflow: hidden;
}

.product-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 20px;
  padding: 0 50px;
  max-width: 70%;
  margin-right: 80px;
}

.product-info-column {
  flex: 1 1 50%;
  box-sizing: border-box;
  padding: 10px;
  text-align: left;
}

.step {
  position: relative;
  padding-left: 60px;/
}

.step-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.step-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.step-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  font-weight: bold;
  color: var(--orange);
}

.step-title {
  font-size: 1.5em;
  color: var(--black);
  margin-bottom: 10px;
}

.step-text {
  margin-bottom: 15px;
  font-size: 1em;
  color: var(--black);
}

.step-list {
  list-style-type: none;
  display: block;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 30px;
  align-items: left;
}

.step-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
}

.step-list li::before {
  content: url('../img/check.svg');
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .product-content {
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 0;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .product-info-column {
    flex: 1 1 100%;
    box-sizing: border-box;
    padding: 0;
  }

  .product-image {
    display: none;
  }
}

/* Add-on Icons */
.add-on-cards {
  display: flex;
  justify-content: center;
  align-items: top;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 40px;
  flex-direction: row;
}

.add-on-card {
  width: 200px;
  text-align: center;
}

.add-on-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  color: var(--blue)
}

@media (max-width: 768px) {
  .add-on-cards {
    flex-direction: column;
    align-items: center;
  }

  .add-on-card {
    width: 100%;
    max-width: 300px;
  }
}

/* FAQ Items */

.faq-questions {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60%;
  margin: 0 auto;
}

.faq-questions details {
  background-color: var(--white);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 10px;
  width: 100%;
  box-shadow: none;
  font-weight: 300;
  text-align: left;
}

.faq-questions summary {
  font-weight: 700;
  font-size: 1.4em;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-questions summary::marker {
  content: '';
}

.faq-questions summary::after {
  content: url('../img/arrow.svg');
  display: inline-block;
  margin-left: auto;
  width: 16px;
  height: 16px;
  margin-left: 10px;
}

.faq-questions p {
  margin-top: 10px;
  line-height: 1.5;
  margin-bottom: 10px;
  margin-right: 30px;
  text-align: justify;
}

@media (max-width: 768px) {
  .faq-questions {
    width: 100%;
  }

  .faq-questions summary::marker {
    content: '';
  }

}

.contact-form-center,
.contact-form-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form-left {
  margin-left: 0;
  align-items: flex-start;
}

.contact-form-center {
  align-items: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  align-items: flex-start;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: bold;
  color: var(--black);
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  width: 100%;
  resize: none;
  box-sizing: border-box;
}

.form-group input::placeholder {
  font-family: var(--heading-font);
  opacity: 1;
}

.form-group textarea::placeholder {
  font-family: var(--heading-font);
  opacity: 1;
}

/* Estilos Gerais para Mensagens */
.message {
  margin-top: 10px;
  font-size: 0.9em;
  padding: 10px;
  border-radius: 5px;
  color: var(--black);
  text-align: center;
}

/* Mensagem de Sucesso */
.message-success {
  background-color: var(--green-light);
}

/* Mensagem de Erro */
.message-error {
  background-color: var(--red-light);
  ;
}

/* Mensagem de Validação */
.message-validation {
  background-color: var(--yellow-light);
  ;
}

.contact {
  padding: 30px 30px;
}

@media (max-width: 768px) {
  .contact-form-left {
    margin: 0 auto;
    align-items: center;
  }
}



/* Footer */
.footer {
  background-color: var(--white);
  padding: 40px 80px;
  color: var(--black);
  border-top: 1px solid #e0e0e0;
}

.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  margin-left: 80px;
  margin-right: 120px;
}

.footer-logo img {
  width: 100px;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-column {
  text-align: left;
}

.footer-column h3 {
  font-weight: 700;
  font-size: 1em;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 5px;
}

.footer-column a {
  color: var(--black);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--blue);
}

.footer-column ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column ul li span {
  display: inline-block;
  width: 24px;
  height: auto;
  aspect-ratio: 1 / 1;
}

.footer-column ul li a {
  font-size: 0.9em;
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-top: 0;
  align-self: flex-start;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-social a:hover img {
  opacity: 1;
}

.footer-copyright {
  margin-top: 20px;
  font-size: 0.9em;
  color: var(--gray);
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  text-align: center;
}

.footer-category-title {
  display: block;
  font-weight: light;
  color: var(--black);
  margin-bottom: 5px;
  cursor: default;
}

.footer-submenu {
  list-style: none;
  margin: 0;
  padding-left: 15px;
}

@media (max-width: 768px) {
  .footer-logo {
    margin: 0;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

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

  .footer-logo {
    margin: 0 0 10px 0;
    padding: 0;
    display: flex;
    justify-content: center;
  }

  .footer-social {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    align-self: center;
  }

  .footer-column h3 {
    text-align: center;
    font-size: 1em;
  }

  .footer-column ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .footer-column ul li {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-category-title {
    text-align: center;
  }
}

.quiz-form {
  width: 100%;
}

.sub-hero-container-quiz {
  display: none;
  padding: 50px 0;
  text-align: center;
  width: 100%;
}

.sub-hero-container-quiz.quiz-activated {
  display: block;
}

.button {
  padding: 10px 20px;
  border-radius: 24px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background-color: #e0e0e0;
}

.button:hover {
  background-color: #ccc;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.sub-hero-container-quiz>.question-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: 16px;
  margin-bottom: 56px;
  justify-content: center;
  align-items: center;
}
