* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

:root {
  --line-border-fill: #3498db;
  --line-border-empty: #e0e0e0;
}

.header-content {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
}

i {
  color: #fff;
}

.header-icons {
  display: flex;
  gap: 14px;
}

.header-icons i {
  font-size: 2rem;
}

.header-icons a:hover i {
  animation: translateY 0.8s infinite alternate;
  color: rgba(128, 128, 128, 0.7);
}

@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}
.header-button {
  border: 1px solid #fff;
  padding: 8px 24px;
  border-radius: 4px;
  color: #fff;
  background-color: transparent;
  transition: background-color 0.8s;
}

.header-button:hover {
  border: 1px solid #e3bd36;
  background-color: #e3bd36;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  width: 35%;
}

@media screen and (max-width: 768px) {
  .header-content {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .header-content i {
    margin-top: 16px;
    font-size: 34px;
  }
  .header-logo img {
    width: 250%;
    margin-top: 46px;
  }
  .header-button {
    display: none;
  }
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.bg-home {
  position: relative;
}

.bg-home::before {
  content: "";
  display: block;
  position: absolute;
  background-image: linear-gradient(to bottom, rgba(6, 18, 30, 0.1), #06121e), url("assets/bg.jpg");
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  opacity: 0.3;
}

.hero {
  color: #fff;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.hero h1{
  text-align: center;
  line-height: 150%;
  max-width: 940px;
  font-size: 76px;
}
.hero p {
  text-align: center;
  margin: 14px 0;
}

.hero video {
  width: 50%;
  height: 50%;
}

.hero-img {
  width: 50%;
  height: 50%;
  object-fit: cover;
  border-radius: 25px;
}

.button-contact {
  padding: 14px 28px;
  color: #fff;
  background-color: #e3bd36;
  border: 0;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 600;
  margin: 14px 0;
}

.button-contact a {
  color: white;
}

.button-download {
  padding: 14px 28px;
  color: #fff;
  background-color: #fddf76;
  border: 0;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 600;
  margin: 14px 0;
  cursor: default;
}

.button-contact:disabled {
  background-color: blue;
  cursor: default;
}

.button-contact:not([disabled]):hover {
  animation: scaleButton 0.8s alternate infinite;
  background-color: #fddf76
}

.button-contact.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

.button-contact.disabled:hover {
  animation: none;
  background-color: #ccc;
  transform: none;
}

/* Botão Android específico */
.android-button {
  margin-top: 110px !important;
}
/* PROGRESS BAR SECTION */

#progress {
  position: relative;
  margin-bottom: 80px;
  width: 800px;
}

#progress-bar {
  position: absolute;
  background: #fdd23c;
  height: 5px;
  width: 65%;
  top: 50%;
  left: 0;
}

#progress-num {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

#progress-num::before {
  content: "";
  background-color: lightgray;
  position: absolute;
  top: 50%;
  left: 0;
  height: 5px;
  width: 100%;
  z-index: -1;
}

#progress-num .step {
  color: white;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  text-align: center;
  align-items: center;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

#progress-num .step.inactive {
  filter: grayscale(100%);
}

.mb-5 {
  margin-bottom: 5rem;
}

@keyframes scaleButton {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}
@media screen and (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
  .hero h1 {
    font-size: 34px;
    padding: 0 14px;
    width: 100%;
  }
  .hero p {
    font-size: 14px;
  }
  #progress-num .step {
    font-size: 12px;
    width: 50px;
    height: 50px;
  }

  .hero video {
    width: 320px;
    height: 240px;
  }
  .hero-img {
    width: 320px;
    height: 240px;
    object-fit: cover;
    border-radius: 25px;
  }
}
@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }
}
.about {
  background-color: #06121e;
  overflow: hidden;
  color: #fff;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 34px 14px 64px 14px;
}
.about-content img {
  max-width: 570px;
}

.about-content div {
  flex: 1;
}

.about-description h2 {
  font-size: 38px;
  margin-bottom: 24px;
}
.about-description p {
  margin-bottom: 14px;
  line-height: 150%;
}

@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
}
.services {
  color: white;
  display: flex;
  gap: 15px;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services i {
  color: #06121e;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 0;
  gap: 24px;
  color: #fff;
}

.footer-icons {
  display: flex;
  gap: 8px;
  color: #fff;
}

body {
  font-family: "Sora", sans-serif;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #06121e;
}

button {
  font-family: "Sora", sans-serif;
  cursor: pointer;
}

svg {
  width: 100%;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
}

#donate-form input[type="submit"] {
  background: #fdd23c;
  border: 1px solid #fdd23c;
  border-radius: 25px;
  color: black;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  height: 2rem;
  margin-top: 25px;
}

#donate-form input[type="submit"]:hover {
  background: #fdd23c;
  border: 1px solid #fdd23c;
}

#donate-form {
  width: 60%;
  margin-top: 50px;
}

.flex-form {
  display: flex;
  border-radius: 25px;
  padding: 5px;
  background-color: whitesmoke;
}

#donate-form input{

}

.flex-form > * {
  margin-left: 15px;
  font-size: 1.3rem;
  text-align: center;
  background-color: whitesmoke;
}

.flex-form input {
  border: none;
  padding: 0 0 0 10;
}


#loader-container {
  margin-top: 15px;
  display: none;
  flex-direction: column;
  align-items: center;
}

#loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #e3bd36;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media screen and (max-width: 768px) {
  #donate-form {
    width: 100%;
  }
  .flex-form input {
    font-size: 0.8rem;
  }
}

.downloads {
  text-align: center;
  background-color: whitesmoke;
  padding: 50px 0 50px 0;
}

.download-container {
  padding-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 100px;
  margin-top: 14px;
}

.terms {
  background-color: whitesmoke;
  padding: 50px 0 50px 0;
}

.terms h1 {
  text-align: center;
}

.terms-container {
  max-width: 90%;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 5rem;
  gap: 10px;
  margin-top: 14px;
}
.terms-container ul, li {
  margin-left: 20px;
  margin-bottom: 10px;
}
.terms-container p {
  font-size: 1.5rem;
  padding: 5px;
  margin-top: 10px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .terms-container {
    margin-left: 1rem;
  }
}

.form-control {
  width: 55rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card i {
  font-size: 5rem;
  color: #fdd23c;
}

.card li {
  text-align: start;
  padding-top: 10px;
}

.card h3 {
  text-align: start;
}

.card ul {
  padding-bottom: 50px;
  list-style-type: none;
}

.card {
  padding: 50px;
  border-radius: 25px;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .download-container {
    flex-direction: column;
    gap: 50px;
    padding: auto;
    align-items: center;
  }

  .downloads {
    margin: 0;
    justify-content: center;
  }

  .hero {
    text-align: center;
  }
}

/* Language Selector Styles */
.language-selector {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 1000;
}

.language-flag {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.language-flag img {
  width: 32px;
  height: 24px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.language-flag:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.language-flag.active {
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(253, 210, 60, 0.6);
  border: 2px solid #fdd23c;
}

.language-flag.active img {
  filter: brightness(1.1);
}

/* Responsive adjustments for language selector */
@media screen and (max-width: 768px) {
  .language-selector {
    top: 15px;
    right: 15px;
    gap: 8px;
  }
  
  .language-flag img {
    width: 28px;
    height: 21px;
  }
}

@media screen and (max-width: 480px) {
  .language-selector {
    top: 10px;
    right: 10px;
    gap: 6px;
  }
  
  .language-flag img {
    width: 24px;
    height: 18px;
  }
}

/* Header Left Container Styles */
.header-left-container {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 20px;
}

.login-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: rgba(128, 128, 128, 0.3);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.login-button:hover {
  background-color: rgba(128, 128, 128, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: #fff;
  text-decoration: none;
}

.login-button i {
  font-size: 16px;
}

.login-button span {
  font-family: "Sora", sans-serif;
}

/* Wiki Link Styles */
.wiki-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: "Sora", sans-serif;
}

.wiki-link:hover {
  color: #fdd23c;
  text-decoration: none;
}

/* Responsive adjustments for header left container */
@media screen and (max-width: 768px) {
  .header-left-container {
    top: 15px;
    left: 15px;
    gap: 15px;
  }
  
  .login-button {
    padding: 8px 12px;
    font-size: 12px;
    gap: 6px;
  }
  
  .login-button i {
    font-size: 14px;
  }
  
  .wiki-link {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .header-left-container {
    top: 10px;
    left: 10px;
    gap: 10px;
  }
  
  .login-button {
    padding: 6px 10px;
    font-size: 11px;
    gap: 4px;
  }
  
  .login-button i {
    font-size: 12px;
  }
  
  .login-button span {
    display: none;
  }
  
  .wiki-link {
    font-size: 11px;
  }
}

/* Hero Slider Styles */
.hero-slider {
  width: 50%;
  height: 50%;
  position: relative;
  margin-bottom: 20px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 25px;
}

.slider-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.slide {
  width: 33.333%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  position: relative;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

/* Indicadores do slider */
.slider-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.indicator.active {
  background-color: #fdd23c;
  border-color: #fdd23c;
  transform: scale(1.2);
}

.indicator:hover {
  background-color: rgba(253, 210, 60, 0.7);
  transform: scale(1.1);
}

/* Responsive adjustments for hero slider */
@media screen and (max-width: 768px) {
  .hero-slider {
    width: 320px;
    height: 240px;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
}

@media screen and (max-width: 480px) {
  .hero-slider {
    width: 280px;
    height: 200px;
  }
  
  .indicator {
    width: 8px;
    height: 8px;
    gap: 8px;
  }
}
