@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Poppins:wght@400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.modulo-icon {
  width: 32px;
}

.hero {
  width: 100%;
  min-height: 70vh;
  background-color: #f6f9ff;
  background-image: url('../img/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem 0 4rem;
}

.navbar {
  width: 100%;
  max-width: 75%; 
  margin: 0 auto 2rem;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgb(6, 69, 141);
  width: 100%;
}

.navbar-logo {
  width: 50%;
  object-fit: contain;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: rgb(6, 69, 141);
  cursor: pointer;
}

.navbar-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.navbar-links a {
  color: rgb(24, 41, 93);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.navbar-links a:hover {
  color: rgb(16, 120, 240);
}

.navbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  width: 100%;
}

.nav-login {
  color: rgb(24, 41, 93);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
}

.navbar-cta {
  background-color: rgb(16, 120, 240);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(16, 120, 240, 0.18);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.navbar-cta:hover {
  background-color: rgb(6, 69, 141);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(16, 120, 240, 0.25);
}

.hero-container {
  width: 100%;
  max-width: 75%;
  margin: 0 auto;
  min-height: calc(70vh - 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-text,
.hero-image {
  width: 48%;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-container {
  width: 100%;
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-btn {
  min-width: 160px;
  background-color: rgb(16, 120, 240);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: bold;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn:hover {
  background-color: rgb(6, 69, 141);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(16, 120, 240, 0.25);
}

.hero-btn.secondary {
  background-color: transparent;
  color: rgb(24, 41, 93);
  border: 1px solid rgba(24, 41, 93, 0.16);
}

.hero-btn.secondary:hover {
  background-color: rgba(24, 41, 93, 0.05);
  border-color: rgba(24, 41, 93, 0.3);
}

.hero-image img {
  width: 100%;
  max-width: 620px;
}

.hero-text h1,
.hero-text h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.hero-text h1 {
  font-size: 4.5rem;
  line-height: 1.05;
  margin: 1rem 0 1.5rem;
}

.hero-text h2 {
  font-size: 0.95rem;
  background-color: #e5efff;
  color: rgb(6, 69, 141);
  max-width: 25rem;
  text-align: center;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
}

.hero-text p {
  font-family: "Inter", sans-serif;
  max-width: 42rem;
  font-size: 1.05rem;
  color: rgb(51, 62, 91);
  margin: 1.5rem 0 0;
  text-align: justify;
}

.beneficios {
  width: 100%;
  padding: 4rem 0 2rem;
}

.beneficios-container {
  width: 100%;
  max-width: 75%;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.beneficio-card {
  background-color: #f8fbff;
  border: 1px solid rgba(16, 120, 240, 0.12);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 18px 50px rgba(16, 120, 240, 0.08);
}

.beneficio-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgb(16, 120, 240);
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.beneficio-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  margin: 0 0 1rem;
  color: rgb(10, 32, 83);
}

.beneficio-card p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: rgb(62, 75, 107);
}

.apresentacao {
  width: 100%;
  background-color: #ffffff;
  padding: 12rem 0;
}

.apresentacao-container {
  width: 100%;
  max-width: 75%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}

.apresentacao-text {
  width: 50%;
}

.apresentacao-text h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3.2rem;
  color: #121212;
  margin: 0 0 1.5rem;
}

.apresentacao-text p {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  color: rgb(62, 75, 107);
  line-height: 1.8;
  margin: 0 0 2rem;
  max-width: 38rem;
  text-align: justify;
}

.apresentacao-cta {
  display: inline-block;
  background-color: rgb(16, 120, 240);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.apresentacao-cta:hover {
  background-color: rgb(6, 69, 141);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(16, 120, 240, 0.25);
}

.apresentacao-image {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apresentacao-image img {
  width: 100%;
  border-radius: 1.5rem;
}

.modulos {
  width: 100%;
  background-color: #f6f9ff;
  padding: 4rem 0;
}

.modulos-container {
  width: 100%;
  max-width: 75%;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.modulos-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  color: #121212;
  margin: 0 0 1rem;
}

.modulos-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: rgb(62, 75, 107);
  margin: 0 0 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.modulos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.modulo-card {
  background-color: white;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 12px 40px rgba(16, 120, 240, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modulo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(16, 120, 240, 0.15);
}

.modulo-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgb(16, 120, 240);
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.modulo-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  color: rgb(10, 32, 83);
  margin: 0 0 1rem;
}

.modulo-card p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgb(62, 75, 107);
  line-height: 1.7;
  margin: 0;
}

footer {
  width: 100%;
  background-color: white;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(16, 120, 240, 0.1);
}

.footer-container {
  width: 100%;
  max-width: 75%;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgb(6, 69, 141);
}

.footer-logo {
  width: 50%;
  object-fit: contain;
}

.footer-section p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: rgb(62, 75, 107);
  line-height: 1.6;
  margin: 0;
}

.footer-section h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: rgb(10, 32, 83);
  margin: 0 0 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul a {
  color: rgb(62, 75, 107);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-section ul a:hover {
  color: rgb(16, 120, 240);
}

.footer-cta {
  display: inline-block;
  background-color: rgb(16, 120, 240);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 12px 30px rgba(16, 120, 240, 0.18);
  transition: transform 0.2s ease, background-color 0.2s ease;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta:hover {
  background-color: rgb(6, 69, 141);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(16, 120, 240, 0.25);
}

.footer-bottom {
  width: 100%;
  max-width: 75%;
  margin: 2rem auto 0;
  padding: 0 2rem;
  text-align: center;
  border-top: 1px solid rgba(16, 120, 240, 0.1);
  padding-top: 2rem;
}

.footer-bottom p {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: rgb(62, 75, 107);
  margin: 0;
}

.visao-geral {
  width: 100%;
  background-color: #ffffff;
  padding: 12rem 0;
}

.visao-geral-container {
  width: 100%;
  max-width: 75%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.visao-geral-text {
  width: 50%;
}

.visao-geral-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  color: #121212;
  margin: 0 0 1.5rem;
}

.visao-geral-text > p {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  color: rgb(62, 75, 107);
  line-height: 1.8;
  margin: 0 0 2rem;
  max-width: 38rem;
  text-align: justify;
}

.visao-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.visao-list li {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgb(62, 75, 107);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.6;
}

.visao-cta {
  display: inline-block;
  background-color: rgb(16, 120, 240);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.visao-cta:hover {
  background-color: rgb(6, 69, 141);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(16, 120, 240, 0.25);
}

.visao-geral-image {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visao-geral-image img {
  width: 100%;
  border-radius: 1.5rem;
  /* box-shadow: 0 24px 65px rgba(16, 120, 240, 0.12); */
}

.depoimentos {
  width: 100%;
  background-color: #f6f9ff;
  padding: 4rem 0;
}

.depoimentos-container {
  width: 100%;
  max-width: 75%;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.depoimentos-container h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  color: #121212;
  margin: 0 0 1rem;
}

.depoimentos-container > p {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: rgb(62, 75, 107);
  margin: 0 0 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.depoimento-card {
  background-color: white;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 12px 40px rgba(16, 120, 240, 0.08);
}

.depoimento-stars {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.depoimento-text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgb(62, 75, 107);
  line-height: 1.8;
  margin: 0 0 1.5rem;
  font-style: italic;
}

.depoimento-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.depoimento-author strong {
  font-family: "Poppins", sans-serif;
  color: rgb(10, 32, 83);
}

.depoimento-author span {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: rgb(16, 120, 240);
}

.faq {
  width: 100%;
  background-color: #ffffff;
  padding: 4rem 0;
}

.faq-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.faq-container h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  color: #121212;
  margin: 0 0 1rem;
}

.faq-container > p {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: rgb(62, 75, 107);
  margin: 0 0 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: left;
}

.faq-item {
  background-color: #f6f9ff;
  border: 1px solid rgba(16, 120, 240, 0.12);
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
  cursor: pointer;
}

.faq-item summary {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: rgb(10, 32, 83);
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-item summary::after {
  content: "▼";
  display: inline-block;
  transition: transform 0.3s ease;
  color: rgb(16, 120, 240);
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: rgb(62, 75, 107);
  line-height: 1.7;
  margin: 1rem 0 0;
}

/* Responsividade */

@media (max-width: 1024px) {
  .navbar, 
  .hero-container, 
  .beneficios-container, 
  .apresentacao-container, 
  .modulos-container, 
  .visao-geral-container, 
  .depoimentos-container {
    max-width: 90%;
  }

  .hero-text h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1.5rem 2rem;
  }

  .navbar-brand {
    width: 100%;
  }

  .navbar-logo {
    width: 100%;
  }

  .navbar-toggle {
    display: block;
    width: 100%;
  }

  .navbar-links {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    order: 3;
    margin-top: 1rem;
    background: white;
    padding: 1rem 0;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-actions {
    display: none;
    width: 100%;
    justify-content: center;
    order: 4;
    margin-top: 1rem;
  }

  .navbar-actions.active {
    display: flex;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 2rem;
  }

  .hero-text, .hero-image {
    width: 100%;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text h2 {
    margin: 0 auto;
  }

  .hero-text p {
    text-align: center;
    margin: 1.5rem auto 0;
  }

  .btn-container {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    max-width: 300px;
  }

  .beneficios-container,
  .modulos-grid,
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }

  .apresentacao, .visao-geral {
    padding: 4rem 0;
  }

  .apresentacao-container,
  .visao-geral-container {
    flex-direction: column;
    gap: 3rem;
  }

  .apresentacao-container {
    flex-direction: column-reverse;
  }

  .apresentacao-text, 
  .visao-geral-text {
    width: 100%;
    text-align: center;
  }

  .apresentacao-image,
  .visao-geral-image {
    display: none;
  }

  .apresentacao-text h1,
  .modulos-title,
  .visao-geral-text h2,
  .depoimentos-container h2,
  .faq-container h2 {
    font-size: 2rem;
  }

  .visao-list {
    display: inline-block;
    text-align: left;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }
}
