@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f5f5f5;
}

#login-success {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #4CAF50;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  animation: pulse 1.5s infinite ease-in-out;
}

#login-success img {
  width: 28px;
  height: 28px;
}

.hidden {
  display: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(76, 175, 80, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}
.header {
    background-color:#4B0082;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
   width: auto;
   height: 55px;
   
}

.description {
    flex-grow: 1;
    text-align: center;
    padding: 10px;
}

.language-switcher .dark-mode-button {
  position: fixed; /* Mantém fixo na tela */
  top: 20px;
  right: 20px;
  background: #4B0082;
  border: none;
  border-radius: 50%;
  padding: 10px 15px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999; /* Garante que o botão fique acima de tudo */
}

.dark-mode-button:hover {
  background: #e0e0e0;
  transform: rotate(20deg);
}

/* Modo escuro */
.dark-mode {
  background-color: #121212;
  color: #ffffff;
}

.dark-mode .dark-mode-button {
  background: #333333;
  color: #ffff66;
}
.navbar {
      position: sticky;
      top: 10px;
      z-index: 999;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
      background-color: white;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      width: 70%;
      max-width: 400px;
      margin: 20px auto;
    }

    .navbar ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    .navbar ul li a {
      text-decoration: none;
      color: #222;
      font-weight: 500;
      font-size: 18px;
      transition: color 0.3s ease;
      margin-left: 40px;
    }

    .navbar ul li a:hover {
      color: #4B0082;
    }

    .menu-toggle {
      display: none;
      font-size: 28px;
      background: none;
      border: none;
      cursor: pointer;
      color: #4B0082;
      margin-left: 143px;
    }

    /* ======== MOBILE ======== */
    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }

      .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
      }

      .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        background-color: #ffffff;
        padding: 10px 15px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      }

      .navbar ul.show {
        display: flex;
      }

      .navbar ul li {
        padding: 10px 0;
        text-align: center;
        width: 100%;
       
      }

      .navbar ul li a {
        font-size: 16px;
         margin: 0 auto;
      }
    }




.download-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 50px 10%;
  background-color: #fff;
}

.content {
  max-width: 500px;
}

.content h2 {
  color: #5e2ca5;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.store-buttons {
  display: flex;
  gap: 20px;
}

.store-img {
  width: 160px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.green-border {
  border: 3px solid #00b050;
  padding: 5px;
  border-radius: 10px;
  background-color: #ffffff;
}
.store-img a img {
  border: 3px solid #00b050;
  padding: 5px;
  border-radius: 10px;
  background-color: #ffffff;
}

.store-img img,
.phones-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.phones-preview {
  width: 240px;
  margin-top: 20px;
  margin-right: 290px;
}
.phones-preview img {
  width: 430px;
  margin-top: 20px;
  margin-right: 390px;
}

footer {
  background-color: #4B0082;
  color: #f1f1f1;
  font-family: 'Inter', sans-serif;
  padding: 50px 20px 20px;
  margin-top: 170px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-column h4 {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  border-left: 4px solid #fff;
  padding-left: 10px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 30px auto 15px;
  max-width: 90%;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #cccccc;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  padding: 5px;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.1);
  background-color: #4B0082;

}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    gap: 10px;
  }

  .description {
    font-size: 14px;
    padding: 5px 0;
  }


  #inicio {
    padding-left: 10px;
    padding-right: 10px;
  }

  .descri {
    font-size: 20px;
    line-height: 1.3;
  }

  .h1 {
    font-size: 32px;
  }

  .h3 {
    font-size: 18px;
    margin-left: 0;
  }

  .button {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .btn {
    padding: 10px 25px;
    font-size: 14px;
  }

  .container {
    flex-direction: column;
    padding: 0 15px;
    gap: 20px;
  }

  .video-container {
    width: 100%;
    margin-top: 20px;
  }

  .video-wrapper {
    height: 220px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .footer-column {
    width: 100%;
  }

  .social-icons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 36px;
  }

  .description {
    font-size: 12.5px;
  }

  .btn {
    padding: 8px 20px;
    font-size: 13px;
  }

  .description-box .large-description h1,
  .description-box .large-description h3 {
    font-size: 18px;
  }

  .small-description {
    font-size: 15px;
  }

  .footer-column h4 {
    font-size: 14px;
  }

  .footer-column p {
    font-size: 12.5px;
  }

  .social-icons a img {
    width: 30px;
    height: 30px;
  }

  .video-wrapper {
    height: 180px;
  }
}



@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .description {
    font-size: 14px;
    padding: 5px 10px;
  }

  .logo img {
    height: 45px;
  }

  .language-switcher {
    font-size: 14px;
    padding: 4px 8px;
  }
}

@media (max-width: 480px) {
  .description {
    font-size: 13px;
  }

  .logo img {
    height: 40px;
  }

  .language-switcher {
    font-size: 13px;
  }
}