* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

.navbar {
  background-color: white;
  padding: 10px 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.logo {
  height: 90px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  position: relative;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #0a1472;
}

.nav-links a.active {
  color: #0e1d60;

  font-weight: bold;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.hamburger {
  background: none;
  border: none;
  font-size: 26px;
  color: var(--ink);
  cursor: pointer;
  display: none;
  color: #0e1d60;
}

.dropdown {
  position: relative;
}

.dropdown > a > i {
  margin-left: 6px;
  font-size: 0.75rem;
  vertical-align: middle;
  color: #0e1d60;
}

.dropdown-content a i {
  margin-right: 8px;
  color: #0e1d60;
}

.dropdown-content {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  background-color: white;
  top: 100%;
  left: 0;
  min-width: 220px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  padding: 10px 0;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  font-family: "Poppins", sans-serif;
  color: black;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
  color: #0a1472;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown i {
  margin-left: 6px;
  font-size: 12px;
  color: #0a1472;
}

.dropdown-content a i {
  margin-right: 8px;
  color: #0a1472;
}

.dropdown > a > i {
  margin-left: 6px;
  font-size: 0.75rem;
  vertical-align: middle;
}

.cta-button {
  background-color: #0e1d60;
  color: white;
  border: 2px solid #0e1d60;
  padding: 10px 18px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.cta-button:hover {
  background-color: #003fcc;
  color: white;
  border-color: #003fcc;
}

.hero-sites {
  height: 50vh;
  background: url(./images/pexels-pixabay-273230.jpg) no-repeat center
    center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
}

.hero-sites::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  max-width: 700px;
  text-align: left;
  padding: 20px;
  z-index: 1;
}

.hero-content h4 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #001f7d;
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
  text-decoration: none;
}

.btn:hover {
  background: #0033cc;
}

section {
  text-align: justify;
}

section p {
  max-width: 700px;
  margin: 0 auto;
}

.oque-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 10%;
  gap: 50px;
}

.oque-text {
  flex: 1;
}

.oque-text .section-subtitle {
  color: #0046ff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.oque-text h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.oque-text p {
  font-size: 16px;
  margin-bottom: 20px;
}

.oque-img {
  flex: 1;
}

.oque-img img {
  width: 100%;
  border-radius: 8px;
}

.beneficios {
  text-align: center;
  padding: 60px 5%;
}

.beneficios .section-subtitle {
  color: #0046ff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.beneficios h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 40px;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 20px;
  justify-content: center;
}

.beneficio {
  text-align: center;
  max-width: 320px;

  margin: 0 auto;
}

.beneficio i {
  font-size: 36px;
  color: #0046ff;
  margin-bottom: 10px;
}

.beneficio h3 {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 8px;
}

.beneficio p {
  font-size: 14px;
  color: #444;
  text-align: center;

  margin: 0 auto;
}

.processo {
  text-align: center;
  padding: 60px 20px;
}

.processo-header {
  margin-bottom: 50px;
}

.processo-header .section-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #0046ff;
  margin-bottom: 10px;
}

.processo-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
}

.processo-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.processo-steps .step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  text-align: left;
}

.step-number {
  text-align: center;
  min-width: 80px;
}

.step-number span {
  font-size: 14px;
  font-weight: 600;
  color: #0046ff;
  display: block;
}

.step-number h3 {
  font-size: 48px;
  font-weight: 700;
  color: #0046ff;
  margin: 5px 0;
  line-height: 1;
}

.step-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}

.step-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  max-width: 700px;
}

.faq-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.faq-subtitle {
  color: #0061f2;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.faq-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #111;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  color: #111;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 22px;
  color: #0061f2;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-answer p {
  margin-top: 10px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.cta-final {
  background: #0046ff;
  padding: 30px 10%;
  color: #fff;
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: left;
}

.cta-texto {
  max-width: 500px;
}

.cta-texto .cta-sub {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
  display: block;
  margin-bottom: 8px;
}

.cta-texto h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 15px;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #1d5cff;
  padding: 8px 18px;

  font-size: 14px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #0045cc;
  color: white;
}

.cta-img img {
  max-width: 250px;
  width: 100%;
}

.footer {
  background: linear-gradient(to top, #030e46, #0a1472);
  color: white;
  font-family: "Poppins", sans-serif;
  padding: 40px 20px 20px 20px;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 220px;
}

.footer-logo {
  width: 220px;
  margin-bottom: 16px;
}

.footer-description {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #e0e0e0;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  border-left: 2px solid white;
  padding-left: 8px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column ul li a i {
  margin-right: 7px;
  color: white;
}

.footer-column ul li a:hover {
  color: #004aad;
}

.contact-info li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.social-icons a {
  margin-right: 12px;
  font-size: 18px;
  color: white;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #004aad;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #d0d0d0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 14px;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: background-color 0.3s;
}

.whatsapp-button:hover {
  background-color: #1eb84c;
}

@media (max-width: 992px) {
  /* Ajustes para Tablets */
  .oque-section {
    flex-direction: column;
    gap: 30px;
  }

  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 colunas em tablets */
  }
}

@media (max-width: 777px) {
  /* Navbar */
  .hamburger {
    display: block;
    margin-left: 0;
  }

  /* Esconde os links e o botão inicialmente */
  .navbar-container .nav-links,
  .navbar-container .cta-button {
    display: none;
  }

  .navbar-container.active .nav-links,
  .navbar-container.active .cta-button {
    display: flex;
  }

  /* Ajuste do container para quebrar linha e permitir empilhamento */
  .navbar-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    gap: 0;
  }

  /* Links em coluna ocupando toda a largura */
  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 12px;
    padding-top: 15px;
    margin-top: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    padding: 10px 0;
    width: 100%;
    display: block;
  }

  /* Dropdown no Mobile: Ajuste para mostrar conteúdo ao clicar */
  .dropdown {
    position: relative;
  }

  .dropdown-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    min-width: 220px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    padding: 10px 0;
  }

  .dropdown-content li {
    list-style: none;
  }

  .dropdown-content a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-family: "Poppins", sans-serif;
    color: black;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
  }

  .dropdown-content a:hover {
    background-color: #f0f0f0;
    color: #0a1472;
  }

  .dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown:not(.active):hover .dropdown-content {
    display: none;
  }

  .dropdown > a > i {
    margin-left: 6px;
    font-size: 0.75rem;
    vertical-align: middle;
    color: #0e1d60;
  }

  .dropdown-content a i {
    margin-right: 8px;
    color: #0e1d60;
  }

  /* Botão CTA do menu */
  .navbar-container .cta-button {
    width: 90%;
    justify-content: center;
    text-align: center;
    margin: 10px auto;
  }

  /* --- SEÇÕES DA PÁGINA --- */

  /* Hero */
  .hero-sites {
    height: auto;
    padding: 100px 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  /* O que é */
  .oque-section {
    padding: 50px 20px;
  }

  .oque-text h2 {
    font-size: 24px;
  }

  /* Benefícios (Grid) */
  .beneficios {
    padding: 40px 20px;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
    /* 1 coluna no celular */
    gap: 30px;
  }

  /* Processo */
  .processo-steps .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* CTA FINAL */
  .cta-final {
    background: #0046ff;
    padding: 30px 10%;
    color: #fff;
  }

  .cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: left;
  }

  .cta-texto {
    max-width: 500px;
  }

  .cta-texto .cta-sub {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
    display: block;
    margin-bottom: 8px;
  }

  .cta-texto h2 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .cta-btn {
    display: inline-block;
    background: #fff;
    color: #1d5cff;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
  }

  .cta-btn:hover {
    background: #0045cc;
    color: white;
  }

  .cta-img img {
    max-width: 250px;
    width: 100%;
  }

  /* Footer */

  .footer {
    background: linear-gradient(to top, #030e46, #0a1472);
    color: white;
    font-family: "Poppins", sans-serif;
    padding: 40px 20px 20px 20px;
  }

  .footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
  }

  .footer-column {
    flex: 1 1 200px;
    min-width: 220px;
  }

  .footer-logo {
    width: 220px;
    margin-bottom: 16px;
  }

  .footer-description {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #e0e0e0;
  }

  .footer-column h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
    border-left: 2px solid white;
    padding-left: 8px;
  }

  .footer-column ul {
    list-style: none;
  }

  .footer-column ul li {
    margin-bottom: 10px;
  }

  .footer-column ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }

  .footer-column ul li a i {
    margin-right: 7px;
    color: white;
  }

  .footer-column ul li a:hover {
    color: #004aad;
  }

  .contact-info li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }

  .social-icons a {
    margin-right: 12px;
    font-size: 18px;
    color: white;
    transition: color 0.3s;
  }

  .social-icons a:hover {
    color: #004aad;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #d0d0d0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }
  /* Animação suave para o menu */
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Footer Responsivo */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-column {
    min-width: 100%;
    flex: 1 1 100%;
  }

  .footer-column h4 {
    border-left: none;
    padding-left: 0;
    padding-bottom: 5px;
    display: inline-block;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .whatsapp-button {
    bottom: 15px;
    right: 15px;
    padding: 12px;
    font-size: 18px;
  }
}
