@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
  scroll-behavior: smooth;
  font-family: "Montserrat", sans-serif;
}
:root {
  --main-color: #ffb641;
  --back-color: #ffffff;
  --second-color: #404040;
}

html,
body {
  transition: 0.5s ease, color 0.5s ease;
  overflow-x: hidden;
  background-color: var(--back-color);
  color: var(--back-color);
}

/* Botão modo blackzão */
.darkModeBtn {
  margin-top: 150px;
}

button.modo {
  border: none;
  padding: 10px 45px 10px 10px;
  background-color: var(--second-color);
  color: var(--back-color);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 25px;
  position: fixed;
  right: 25px;
  bottom: 25px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s ease;
}

.bola {
  background-color: rgb(77, 76, 146);
  background-image: url(/Assets/bedtime.png);
  background-repeat: no-repeat;
  background-position: 50%;
  padding: 15px;
  position: fixed;
  right: 2em;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}

button.modo-ativo {
  padding: 10px 10px 10px 45px;
  text-align: end;
  background-color: var(--second-color);
  color: var(--back-color);
}

.bol-ativo {
  background-color: var(--back-color);
  background-image: url(/Assets/clear_day.png);
  background-repeat: no-repeat;
  background-position: 50%;
  right: 5.5em;
}

/* CABEÇALHO */
header {
  background-color: var(--back-color);
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  box-shadow: 0px 1px 10px rgba(88, 88, 88, 0.082);
}
nav {
  margin: 0 auto;
}

.menu {
  display: none;
}

button.menu-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: var(--second-color);
}

.fa-solid {
  font-size: 2rem;
}

.logo p {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--second-color);
}

.logo a {
  text-decoration: none;
  color: var(--second-color);
}

.logo p span {
  color: var(--main-color);
}

.topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80vw;
  height: 80px;
}

.links a {
  text-decoration: none;
  color: var(--second-color);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 2px;
  box-shadow: inset 0 0 0 0 var(--second-color);
  margin: -0.05rem;
  padding: 0.2rem 0.95rem;
  transition: all 0.4s ease-out;
}

.links a:hover {
  box-shadow: inset 160px 0 0 0 var(--second-color);
  color: rgb(255, 255, 255);
}

/* PÁGINA PRINCIPAL */
.about-container {
  display: flex;
  align-items: center;
  padding: 90px 50px 0px 50px;
  gap: 85px;
  max-width: 90vw;
  margin: 85px auto;
}

.sobre {
  display: flex;
  flex-direction: column;
  gap: 55px;
  line-height: 40px;
}
.sobre h1 {
  font-size: 3rem;
  color: var(--second-color);
}
.sobre p {
  font-size: 1.5rem;
  color: var(--second-color);
}

.sobre span {
  background-color: #ffb641;
}

.equipe {
  display: grid;
  grid-template-columns: auto auto;
  gap: 25px;
}

.card {
  background-color: var(--back-color);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  width: 400px;
  border-radius: 25px;
  box-shadow: 0px 0px 10px hsla(0, 0%, 0%, 0.2);
  transition: 0.2s ease-in;
}
.card:hover {
  transform: scale(1.03);
  box-shadow: 0px 0px 20px hsla(0, 0%, 0%, 0.5);
}
.perfil {
  color: var(--second-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 10px;
}

.perfil hr {
  width: 145px;
  height: 3px;
  background-color: #ffb641;
  border-color: #ffb641;
}

.perfil i {
  color: #ffb641;
  font-size: 1.5rem;
}
.sobre-mim {
  width: 280px;
}
.sobre-mim p {
  font-size: 1.1rem;
  line-height: 25px;
  color: var(--second-color);
}
/* FOOTER */

.logo p {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--second-color);
}

.logo p span {
  color: var(--main-color);
}

.container-geral {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 70vh;
  z-index: -999;
}

.container-message {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 94vw;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(320deg, #b9842e, var(--main-color));
  padding: 25px;
}

.topic-patro {
  display: flex;
  align-items: center;
  gap: 35px;
}

.message-title {
  font-size: 5rem;
  font-weight: 600;
  color: var(--back-color);
}

.message-text {
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 520px;
  color: var(--back-color);
}

.container-topics {
  width: 94vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 15px;
  padding: 25px;
}

.prev-title {
  color: var(--second-color);
}

.prev-text {
  max-width: 670px;
  color: var(--second-color);
}

.topics-title {
  color: var(--second-color);
}

.topics-item {
  color: var(--second-color);
}

.topics-list {
  list-style: none;
}

.topics-list a {
  text-decoration: none;
  transition: 0.2s ease-in;
}

.topics-list a:hover {
  font-weight: 600;
}

.sublinhadoUp {
  width: 138px;
  height: 15px;
  margin-left: -3px;
  background-color: var(--main-color);
  margin-top: -12px;
}

.sublinhadoDown {
  width: 100px;
  height: 15px;
  background-color: var(--main-color);
  margin-top: -12px;
}

.contacts-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.contacts-footer h2 {
  color: var(--second-color);
}

.img-patrocinadores {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.UpPt {
  display: grid;
  grid-template-columns: auto auto;
}

.social-icon i {
  color: var(--second-color);
}

.fa-instagram {
  color: var(--second-color);
  font-size: 2rem;
}

.division-footer {
  width: 100vw;
  height: 4px;
  margin-top: 40px;
  background-color: var(--main-color);
}

.final-footer {
  display: flex;
  justify-content: space-between;
  padding: 35px;
  width: 94vw;
}

.copy {
  display: flex;
  align-items: center;
}

.copy > p {
  color: var(--second-color);
}

@media (max-width: 1260px) {
  .about-container {
    display: flex;
    flex-direction: column;
  }
  .equipe {
    grid-template-columns: auto;
  }
  .sobre {
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 1100px) {
  .container-message {
    flex-direction: column;
  }
  .container-topics {
    flex-direction: column;
    gap: 55px;
  }
  .topic-patro {
    flex-direction: row;
    justify-content: space-between;
    display: flex;
    width: 90vw;
    align-items: center;
    padding: 15px;
  }
  .contacts-footer {
    flex-direction: row;
  }
  .img-patrocinadores {
    display: flex;
  }
  .logo p {
    font-size: 1.3rem;
  }
  .message-title {
    font-size: 3rem;
    margin-bottom: 15px;
  }
}

@media (max-width: 875px) {
  .links {
    display: none;
  }

  .menu {
    display: block;
  }
  .about-container {
    display: flex;
    flex-direction: column;
  }
  .equipe {
    grid-template-columns: auto;
  }
  .sobre {
    justify-content: center;
    align-items: start;
  }
    .topic-patro {
    flex-direction: column;
  }
}

@media (max-width: 512px) {
  .about-container {
    display: flex;
    flex-direction: column;
  }
  .equipe {
    grid-template-columns: auto;
  }
  .sobre {
    justify-content: center;
    align-items: start;
  }
}

.menu-bar {
  display: block;
  position: fixed;
  right: -300px;
  justify-content: right;
  z-index: 999;
  transition: right 0.3s ease-in;
  top: 80px;
}

.menu-bar.ativo {
  right: 0px;
}

button.menu-close {
  background-color: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
  color: var(--second-color);
  margin-right: 155px;
}

.links-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  background-color: var(--main-color);
  backdrop-filter: blur(10px);
  width: 200px;
  height: 100vh;
}

.links-bar a {
  text-decoration: none;
  color: var(--second-color);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 2px;
  box-shadow: inset 0 0 0 0 var(--second-color);
  margin: -0.05rem;
  padding: 0.2rem 0.95rem;
  transition: all 0.4s ease-out;
  margin-top: 25px;
}

.links-bar a:hover {
  box-shadow: inset 135px 0 0 0 var(--second-color);
  color: rgb(255, 255, 255);
}
