/* ------------------------------
  GENERAL RESET & BASE
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: #fff;
}

/* Container padrão */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ------------------------------
  HEADER & NAVBAR
------------------------------ */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  padding: 20px 0;
  border-bottom: 1px solid #222;
}

.logo {
  height: 30px;
}

.navbar {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 400;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00ffe0;
}

.menu-toggle {
  font-size: 30px;
  cursor: pointer;
  display: none;
  color: white;
  background: none;
  border: none;
}

/* ------------------------------
  SECTION 1
------------------------------ */
.section {
  padding: 300px 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  text-align: left;
}

.token-header {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #ccc;
  align-self: flex-start;
}

.token-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
  align-self: flex-start;
}

.token-description {
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 40px;
  align-self: flex-start;
}

.token-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-self: flex-start;
}

.token-buttons a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111;
  border-radius: 10px;
  padding: 12px 20px;
  text-decoration: none;
  color: #fff;
  border: 1px solid #333;
  transition: all 0.3s;
}

.token-buttons a:hover {
  background-color: #222;
  transform: translateY(-2px);
}

.token-buttons img {
  width: 18px;
  height: 18px;
  

}

/* ------------------------------
  FOOTER (ajustado)
------------------------------ */
footer {
  background-color: #111;
  color: #fff;
  font-family: 'Inter', sans-serif;
  text-align: center;
  padding: 60px 20px 20px;
}

.footer-top {
  background-color: #111;
  padding: 60px 20px 40px;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ccc;
  margin-bottom: 40px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: nowrap;
  max-width: 1360px;
  margin: 0 auto;
}

.footer-logos img {
  height: 128px;
  width: 250px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.footer-logos img:hover {
  filter: none;
}

.footer-bottom {
  background-color: #000;
  padding: 20px 10px;
}

.footer-bottom-text {
  font-size: 0.9rem;
  color: #ccc;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

/* ------------------------------
  RESPONSIVE - MOBILE
------------------------------ */
@media (max-width: 768px) {
  .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: #000;
    top: 100%;
    right: 0;
    padding: 20px;
    width: 200px;
    z-index: 999;
    border: 1px solid #333;
  }

  .nav-links.active {
    display: flex;
  }

  .token-title {
    font-size: 2rem;
    text-align: left;
  }

  .token-description {
    font-size: 1rem;
    text-align: left;
  }

  .token-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logos {
    gap: 40px;
    flex-wrap: wrap;
  }

  .footer-logos img {
    height: 90px;
    width: 180px;
  }
}
#section1 {
  background: url('assets/img/Background-1.jpg') no-repeat center center;
  background-size: cover;
  padding: 180px 20px 300px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-left {
  max-width: 560px;
}

.token-header {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #ccc;
}

.token-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #fff;
}

.token-description {
  font-size: 1.05rem;
  font-weight: 300;
  color: #ccc;
  margin-bottom: 40px;
}

.token-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.token-buttons a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111;
  border-radius: 10px;
  padding: 12px 20px;
  text-decoration: none;
  color: #fff;
  border: 1px solid #333;
  transition: all 0.3s;
}

.token-buttons a:hover {
  background-color: #222;
  transform: translateY(-2px);
}

.token-buttons img {
  width: 18px;
  height: 18px;
}
#section1 {
  position: relative;
  background: url('assets/img/Background-1.jpg') no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section1-overlay {
  background-color: rgba(0, 0, 0, 0.75); /* camada preta com 75% opacidade */
  width: 100%;
  height: 100%;
  padding: 180px 0 300px 0;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.hero-left {
  width: 100%;
  max-width: 100%;
  text-align: left;
}

.token-header {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #ccc;
}

.token-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.token-description {
  font-weight: 300;
  max-width: 700px;
  margin-bottom: 40px;
}

.token-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.token-buttons a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111;
  border-radius: 10px;
  padding: 12px 20px;
  text-decoration: none;
  color: #fff;
  border: 1px solid #333;
  transition: all 0.3s;
}

.token-buttons a:hover {
  background-color: #222;
  transform: translateY(-2px);
}

.token-buttons img {
  width: 18px;
  height: 18px;
  /* ------------------------------
  SECTION 1 (ajustado)
------------------------------ */
#section1 {
  position: relative;
  background: url('assets/img/Background-1.jpg') no-repeat center center;
  background-size: cover;
  padding: 180px 0 300px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

#section1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 0 20px;
  text-align: left;
}

@media (max-width: 768px) {
.hero-content {
  align-items: center;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}

  .hero-left {
    text-align: center;
  }

  .token-header,
  .token-title,
  .token-description {
    text-align: center;
  }

  .token-buttons {
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 16px;
    padding: 0 15px;
  }

  .token-buttons a:nth-child(4),
  .token-buttons a:nth-child(5) {
    grid-column: span 1;
  }

  .token-buttons a {
    justify-content: center;
  }
}
/* ------------------------------
  GENERAL RESET & BASE
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: #fff;
}

/* Container padrão */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ------------------------------
  HEADER & NAVBAR
------------------------------ */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  padding: 20px 0;
  border-bottom: 1px solid #222;
}

.logo {
  height: 40px;
}

.navbar {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 400;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00ffe0;
}

.menu-toggle {
  font-size: 30px;
  cursor: pointer;
  display: none;
  color: white;
  background: none;
  border: none;
}

/* ------------------------------
  SECTION 1
------------------------------ */
#section1 {
  position: relative;
  background: url('../assets/img/Background-1.jpg') no-repeat center center;
  background-size: cover;
  padding: 180px 0 300px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

#section1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 0 20px;
}

.hero-left {
  max-width: 560px;
  text-align: left;
}

.token-header {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #ccc;
}

.token-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
  text-align: left;
}

.token-description {
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 40px;
  text-align: left;
}

.token-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.token-buttons a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111;
  border-radius: 10px;
  padding: 12px 20px;
  text-decoration: none;
  color: #fff;
  border: 1px solid #333;
  transition: all 0.3s;
}

.token-buttons a:hover {
  background-color: #222;
  transform: translateY(-2px);
}

.token-buttons img {
  width: 18px;
  height: 18px;
}

/* ------------------------------
  FOOTER (ajustado)
------------------------------ */
footer {
  background-color: #111;
  color: #fff;
  font-family: 'Inter', sans-serif;
  text-align: center;
  padding: 60px 20px 20px;
}

.footer-top {
  background-color: #111;
  padding: 60px 20px 40px;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ccc;
  margin-bottom: 40px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  max-width: 1360px;
  margin: 0 auto;
}

.footer-logos img {
  height: 128px;
  max-width: 250px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.footer-logos img:hover {
  filter: none;
}

.footer-bottom {
  background-color: #000;
  padding: 20px 10px;
}

.footer-bottom-text {
  font-size: 0.9rem;
  color: #ccc;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

/* ------------------------------
  RESPONSIVE - MOBILE
------------------------------ */
@media (max-width: 768px) {
 .hero-content {
  align-items: center;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}

  .hero-left {
    text-align: center;
  }

  .token-header,
  .token-title,
  .token-description {
    text-align: center;
  }

  .token-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 15px;
    justify-content: center;
  }

  .token-buttons a:nth-child(4),
  .token-buttons a:nth-child(5) {
    grid-column: span 1;
  }

  .token-buttons a {
    justify-content: center;
  }

  .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: #000;
    top: 100%;
    right: 0;
    padding: 20px;
    width: 200px;
    z-index: 999;
    border: 1px solid #333;
  }

  .nav-links.active {
    display: flex;
  }

  .token-title {
    font-size: 2rem;
  }

  .token-description {
    font-size: 1rem;
  }

  .footer-logos {
    gap: 40px;
  }

  .footer-logos img {
    height: 50px;
  }
}
@media (max-width: 768px) {
  #section1 {
    padding: 140px 0 200px;
  }

  .hero-content {
    align-items: center;
    padding: 0 15px;
  }

  .hero-left {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .token-header,
  .token-title,
  .token-description {
    text-align: center;
  }

  .token-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 15px;
    justify-content: center;
  }

  .token-buttons a:nth-child(4),
  .token-buttons a:nth-child(5) {
    grid-column: span 1;
  }

  .token-buttons a {
    justify-content: center;
  }

  .token-title {
    font-size: 2rem;
  }

  .token-description {
    font-size: 1rem;
  }
}
.lang-flag {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 999;
}

@media (max-width: 768px) {
  .lang-flag {
    top: 15px;
    right: 15px;
  }
}
.navbar {
  width: 100%;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 20px;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  display: none; /* esconde no desktop */
}

/* MOBILE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    text-align: left;
    padding: 10px 20px;
  }

  .nav-links.active {
    display: flex;
  }
}
/* Garante que nada ultrapasse a largura da tela */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Corrige largura do container */
.container {
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 15px;
  margin: 0 auto;
}

/* Garante que o header não cause overflow */
.header {
  width: 100%;
  box-sizing: border-box;
}

/* Ajuste específico para a div que contém menu e bandeira */
.header .container > div:last-child {
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
  }

  .footer-logos img {
    max-width: 60px;
    height: auto;
  }

  .footer-title {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 5px;
    text-align: center;
  }
}
