/* Estilos Globais */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: "Open Sans", sans-serif;
}

body {
  position: relative;

  width: 100%;
  background-color: #efefef;
}

header {
  position: fixed;
  z-index: 999999;
  top: 0;
  height: 4.5rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* background-color: #eee; */
  padding: 0rem 1.5rem;
}

header h1 {
  color: #324b27;
}

.home-logo {
  max-width: 20rem;
  padding: 0rem 19rem 1rem 1rem;
}

.img-logo{
  margin-top: 10px;
  width: 150px;
}

ul {
  display: flex;
  gap: 2rem;
}

ul li {
  text-decoration: none;
  list-style-type: none;
  font-weight: 600;
  color: #324b27;
}

ul li:focus {
  color: #65964e;
}

a {
  text-decoration: none;
  color: #324b27;
}

a:focus,
a:active {
  font-weight: bold;
}

.nav-bar {
  display: block;
  position: relative;
}

.drawer-header {
  display: none;
  height: 60px;
}

.contact-btn {
  background-color: #95CB9A;
  border: none;
  display: flex;
  padding: 0.5rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  gap: 0.5rem;
  color: #4A5159;
}

.contact-btn:hover {
  background-color: #65964e;
}

.contact-btn span {
  align-self: center;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
}

.download-btn {
  background-color: #95CB9A;
  border: none;
  display: flex;
  padding: 0.5rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  color: #324b27;
}
.download-btn:hover {
  background-color: #65964e;
}

.download-btn span {
  align-self: center;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
}

.btn-container {
  display: flex;
  gap: 1rem;
  /*align-items: center;*/
  /*margin-left: auto;*/
}

.download-btn,
.contact-btn {
  margin: 0;
}

.menu-btn {
  border: none;
  display: none;

  text-align: center;
  vertical-align: bottom;
}

.close-btn {
  display: none;
  border: none;
  background-color: transparent;
}

.menu-btn:hover {
  cursor: pointer;
  transform: scale(1.1);

  transition: 0.5s;
}

/* Begin section */

section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 2rem;
}

#begin {
  padding-top: 5rem;
}

.content {
  margin-top: 5px;
  max-width: 780px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  /* justify-content: space-between; */
}

.content div h1 {
  width: 100%;
  font-size: 2.3rem;
  font-weight: 700;
  color: #324b27;
  text-align: center;
}

.content div span {
  display: block;
  color: #324b27;
  font-weight: bold;
  text-align: center;
}

.cta-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.25rem;
  background-color: #65964e;
  color: #fff;
  font-weight: 700;
}
.cta-btn:hover {
  background-color: #324b27;
}

.img-list {
  /* max-height: 311px; */
  height: auto;
  width: 100%;
  max-width: 140px;
}

.img-carousel {
  margin-top: 2rem;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 2rem;
}

.img-container {
  box-shadow: 1px 1px rgba(0, 0, 0, 0.15);
  transition-delay: 0.2s;
  transition: 0.2s ease-in-out;
}

.img-container:hover {
  transform: scale(1.2);
  transition: 0.2s ease-in-out;
}

.img-container,
.img-container .img-list {
  border-radius: 0.5rem;
}

/* Main features section */

.main-features {
  padding-top: 4rem;
  background-color: #fff;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #324b27;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 240px;
  height: 240px;
  background-color: #e8f6e9;
  padding: 2rem 1rem;
  border-radius: 0.5rem;
  gap: 0.75rem;
  text-align: center;
}

.feature-card:hover {
  transform: scale(1.1);
}

.feature-card div i {
  color: #65964e;
}

.feature-card div h3 {
  color: #324b27;
  font-weight: 700;
}

.feature-card div .std-span {
  font-weight: normal;
  font-size: 0.875rem;
  /* color: #65964e; */
  color: #324b27;
}

/* About section */
.white {
  background-color: #fff;
}
.green {
  background-color: #e8f6e9;
}

.contact-section {
  height: 40vh;
}
.download-section{
  height: 40vh;
}

.psiconote-goal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 80%;
  margin-top: 1rem;
}

.psiconote-goal p {
  text-align: center;
}

.contact-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.contact-row div a {
  text-decoration: none;
  color: #65964e;
  font-weight: bold;
}

footer {
  padding: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer span {
  font-size: 0.875rem;
  font-weight: bold;
}

.contact,
.hidden-icons {
  display: none;
}

@media (max-width: 576px) {
  html {
    font-size: 0.875rem;
  }

  .menu-btn,
  .close-btn {
    display: flex;
    flex-direction: column;
    text-align: center;
    /* vertical-align: bottom; */
    justify-content: center;
    height: 100%;
    align-items: center;
  }
  .download-btn,
  .home-logo {
    display: none;
  }

  .menu-btn {
    position: absolute;
    left: 2rem;
    background-color: transparent;
  }

  header {
    width: 100%;
    justify-content: center;
  }

  .drawer-header {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding: 1rem;
    background-color: #95CB9A;
  }

  .drawer-header span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #65964e;
  }

  .img-logo-hamb{
    height: 100%;
    width: 10rem;
    margin-bottom: 15px;
  }

  .nav-bar {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100vh;
    background-color: #fff;
    box-shadow: 1px 1px rgba(0, 0, 0, 0.25);
    border-radius: 0rem 1rem 1rem 0rem;
  }

  .contact,
  .hidden-icons {
    display: block;
  }

  .nav-items {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
     /*justify-content: center;*/
    padding-left: 1.5rem;
    padding-right: 1.5rem;

    gap: 2rem;
    font-size: 1.25rem;
  }
.header-menu{
  flex-grow: 1;
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding-right: 6rem;
  padding-left: 6rem;
  margin-left: 0;
  margin-right: auto;
}

  ul li {
    font-weight: normal;
    /* vertical-align: text-top; */
    display: block;
    width: 100%;
  }

  ul li a {
    display: flex;
    width: 100%;
    gap: .5rem;
    padding: 1rem 0rem;
    /* height: 3rem; */
    /* align-content: center; */
    /* justify-content: center; */
  }

  ul li a img {
    vertical-align: text-top;
    margin-right: 0.25rem;
  }

  .content div h1 {
    font-size: 1.8rem;
  }

  .img-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
  .img-carousel {
    grid-template-columns: repeat(2, 1fr);
  }

  h1,
  h2 {
    text-align: center;
    font-size: 1.8rem;
  }
  h3 {
    text-align: center;
    font-size: 1.5rem;
  }

  .features-container {
    /* height: auto; */
    grid-template-columns: repeat(1, 1fr);
  }

  .contact-btn {
    display: none;
  }
  .btn-download-container {
    max-width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Permite que os botões quebrem linha se necessário */
    gap: 1rem; /* Ajusta o espaçamento entre os botões */
  }
  .download-btn-app {
    width: 90%;  /* Ajusta o tamanho para caber no container */
    max-width: 250px; /* Define um tamanho máximo */
    height: 50px; /* Ajusta a altura */
    font-size: 0.9rem; /* Reduz a fonte */
    padding: 0.5rem; /* Ajusta o espaçamento */
  }


  .download-btn-app img {
    width: 25px;  /* Reduzindo o ícone */
    height: 25px;
  }
}

.btn-download-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.download-btn-app {
  display: flex;
  align-items: center;
  background-color: #95CB9A;
  border: none;
  padding: 1rem 3.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  color: #324b27;
  transition: background 0.3s ease;
  width: 12rem;
  height: 4rem;
}
.download-btn-app:hover {
  background-color: #65964e;
}

.download-btn-app img {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
}

/* Estilização individual para Android e iOS */
.android {
  padding-left: 2.4rem;
}

/*.ios {*/
/*  background-color: #95CB9A; !* Cinza para iOS *!*/
/*}*/

.download-btn:hover {
  opacity: 0.8;
}

/* Estilos do Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
  font-weight: bold;
  color: #666;
}

.close:hover {
  color: #000;
}

input[type="email"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.error-message {
  color: red;
  font-size: 14px;
  display: none;
}

#confirmDownload {
  background-color: #65964e;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

#confirmDownload:hover {
  background-color: #4a6d39;
}

.captcha {
  display: inline-block;
  width: 100%;
  padding: 1rem;
  margin: 1rem 0;
  border: 2px solid #9c9c9c;
  text-align: center;
  border-radius: 5px;
  background-color: #f5f5f5;
}

.captchaGenerated {
  width: 100%;
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: bold;
  text-align: center;
  text-decoration: line-through;
  color: #333;
  background-color: inherit;
  border: none;
}

.captchaResetH {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.captchaHeader {
  font-weight: bold;
  color: #333;
}

.captchaReset {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.captchaInput {
  width: 100%;
  font-size: 1rem;
  padding: 0.5rem;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.error-message {
  color: red;
  font-size: 14px;
  display: none;
  margin-top: 5px;
}

.captchaResetGenerated{
  width: 18px;
}