@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
  font-size: 16px;
}

::-webkit-scrollbar {
  width: 5px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: white;
}

::-webkit-scrollbar-thumb {
  background: blue;
}

@media screen and (max-width: 930px) {
  * {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  * {
    font-size: 13px;
  }
}
.rodape {
  min-height: 35vh;
  background-color: white;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.rodape .rodape-final {
  display: none;
}
.rodape .container-rodape {
  margin-top: -100px;
  display: flex;
  align-items: center;
  width: 80%;
  justify-content: space-around;
  z-index: 99;
}
.rodape .container-rodape .contato {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rodape .container-rodape .contato h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #5271ff;
}
.rodape .container-rodape .contato p a {
  color: #5271ff;
}
.rodape .container-rodape .rodape-final {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.rodape .container-rodape .rodape-final img {
  margin: -20px 0;
  width: 150px;
}
.rodape .container-rodape .rodape-final p a {
  color: #5271ff;
}
.rodape .container-rodape .Navegacao {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rodape .container-rodape .Navegacao h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #5271ff;
}
.rodape .container-rodape .Navegacao ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.rodape .container-rodape .Navegacao ul li {
  list-style: none;
}
.rodape .container-rodape .Navegacao ul li a {
  transition: 0.5s;
}
.rodape .container-rodape .Navegacao ul li a:hover {
  color: #5271ff;
}

@media screen and (max-width: 1090px) {
  .rodape .container-rodape {
    width: 95%;
  }
}
@media screen and (max-width: 870px) {
  .rodape {
    gap: 15px;
  }
  .rodape .container-rodape {
    margin-top: -50px;
  }
  .rodape .container-rodape .rodape-final {
    display: none;
  }
  .rodape hr {
    width: 95%;
  }
  .rodape .rodape-final {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
  }
  .rodape .rodape-final img {
    margin: -10px 0;
    width: 120px;
  }
}
@media screen and (max-width: 420px) {
  .rodape .container-rodape {
    margin-top: -10px;
  }
}
@media screen and (max-width: 360px) {
  .rodape .container-rodape {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
}
.contato-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 25px;
  align-items: center;
}
.contato-fixo button {
  border-radius: 50%;
  z-index: 999;
  transition: 0.5s;
}
.contato-fixo button i {
  color: white;
  font-size: 2rem;
  padding: 15px 10px;
  transform: rotate(0);
  transition: transform 0.5s ease-in-out;
}
.contato-fixo button:hover {
  box-shadow: 0 0 15px #5271ff;
}
.contato-fixo .rotate i {
  transform: rotate(360deg);
}
.contato-fixo .atendimento {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translate(200px);
  transition: 0.5s;
  opacity: 0;
}
.contato-fixo .atendimento .tel, .contato-fixo .atendimento .whats {
  background-color: #5271ff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: 0.5s;
}
.contato-fixo .atendimento .tel:hover, .contato-fixo .atendimento .whats:hover {
  transform: scale(0.9);
}
.contato-fixo .atendimento .whats {
  background-color: #25D366;
  border-radius: 50%;
}
.contato-fixo .atendimento i {
  font-size: 1.8rem;
  color: white;
}
.contato-fixo .active {
  transform: translate(0);
  opacity: 1;
}

header.dark-theme {
  background-color: #241818;
  color: white !important;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: white;
  transition: 0.5s;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 9999;
  height: 90px;
  box-shadow: 0 0 15px #5271ff;
}

i {
  color: #130c03;
}

button.ativar .linha:nth-child(1) {
  transform: translateY(10px) rotate(-40deg);
}

button.ativar .linha:nth-child(2) {
  opacity: 0;
}

button.ativar .linha:nth-child(3) {
  transform: translateY(-8px) rotate(40deg);
}

.hamberger {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  right: 20px;
  top: 20px;
  transition: 0.5s;
  z-index: 99;
  display: none;
}
.hamberger .linha {
  width: 30px;
  height: 3px;
  border-radius: 5px;
  background-color: #5271ff;
  display: block;
  margin: 6px auto;
  position: relative;
  transform-origin: center;
  transition: 0.7s;
}

.header-button {
  border: 1px solid #5271ff;
  padding: 8px 24px;
  border-radius: 4px;
  color: #130c03;
  background-color: transparent;
  transition: background-color 0.8s;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo .logo {
  width: 100px;
}

.list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  text-decoration: none;
  list-style: none;
}
.list a button {
  position: relative;
  background-color: #5271ff;
  color: black;
  padding: 8px 30px;
  border-radius: 20px 0 10px 0px;
  box-shadow: 0 0 10px #5271ff;
}
.list a button:hover {
  transform: scale(0.9);
}
.list .header-logo {
  display: none;
}
.list li {
  position: relative;
}
.list li::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 0%;
  left: 0;
  bottom: -10px;
  border-radius: 4px;
  background-color: #5271ff;
  transition: width 0.5s ease;
}
.list li:hover::before {
  /* Aparece no hover */
  width: 100%;
}
.list li a {
  color: #130c03;
  font-size: 1.1rem;
  font-weight: 400;
  transition: 0.5s;
}
.list li a:hover {
  color: #5271ff;
}

@media screen and (max-width: 1050px) {
  .header {
    width: 100%;
  }
  .header .hamberger {
    display: block;
  }
  .header .botao {
    display: none;
  }
  .header .list {
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    width: 60%;
    gap: 30px;
    font-size: 1.3rem;
    opacity: 0;
    transform: translateX(1000px);
    transition: transform 1s;
    z-index: 89;
    background-color: white;
  }
  .header .list .header-logo {
    display: flex;
    text-align: center;
  }
  .header .list .header-logo .logo-mobile {
    width: 150px;
    margin-bottom: -70px;
  }
  .header .active {
    transform: translateX(0);
    opacity: 1;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100vh;
    right: 0;
    top: 0;
  }
}
@media screen and (max-width: 480px) {
  .header {
    height: 80px;
  }
  .header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-logo .logo {
    width: 80px;
  }
}
.home {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../img/img-fundo-home.avif");
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  min-height: 100vh;
  color: white;
  position: relative;
}
.home svg {
  position: absolute;
  bottom: -100px;
  left: 0;
  height: auto;
}
.home .home-info {
  width: 60%;
  margin-left: 15%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home .home-info h1 {
  font-size: 3rem;
  font-weight: 500;
  font-style: italic;
}
.home .home-info h1 span {
  color: #5271ff;
  font-size: 3rem;
}
.home .home-info p {
  font-size: 1.2rem;
}
.home .home-info p span {
  font-size: 0.9rem;
}
.home .home-info .botoes-links {
  display: flex;
  gap: 10px;
}
.home .home-info .botoes-links .botao, .home .home-info .botoes-links .botao-whats {
  padding: 10px 5px;
  color: white;
  font-weight: 400;
  transition: 0.5s;
  font-weight: 500;
}
.home .home-info .botoes-links .botao i, .home .home-info .botoes-links .botao-whats i {
  color: white;
  font-size: 1.3rem;
}
.home .home-info .botoes-links .botao-whats {
  background-color: #25D366;
  padding: 10px;
}
.home .home-info .botoes-links .botao-whats:hover {
  transform: scale(0.9);
}
.home .home-info .botoes-links .botao {
  background-color: #5271ff;
  position: relative;
  display: flex;
  gap: 5px;
}
.home .home-info .botoes-links .botao::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: white;
  transition: width 0.4s ease-in-out;
  z-index: -1;
  border-radius: 4px;
}
.home .home-info .botoes-links .botao:hover::before {
  width: 100%;
}
.home .home-info .botoes-links .botao:hover {
  color: #5271ff;
  gap: 15px;
  transform: scale(1);
}
.home .home-info .botoes-links .botao:hover i {
  color: #5271ff;
}

@media screen and (max-width: 930px) {
  .home .home-info {
    width: 90%;
    margin-left: 5%;
  }
  .home svg {
    bottom: -30px;
  }
}
@media screen and (max-width: 480px) {
  .home .home-info {
    width: 95%;
    margin-left: 0;
  }
  .home svg {
    bottom: 0px;
  }
}
.sobre {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sobre .sobre-info {
  height: 80%;
  width: 95%;
  margin: 30px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.sobre .sobre-info .sobre-img {
  position: relative;
  display: flex;
  justify-content: center;
}
.sobre .sobre-info .sobre-img .rotate-oval {
  width: 68%;
  height: 62%;
  background-color: #5271ff;
  box-shadow: 0 0 40px #5271ff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(5px);
  animation: rotate 10s linear infinite;
}
.sobre .sobre-info .sobre-img .rotate-oval:nth-child(1) {
  transform: translate(-50%, -50%) rotate(60deg);
  background-color: #a1a1a1;
  box-shadow: 0 0 40px #a1a1a1;
  animation-delay: 0s;
}
.sobre .sobre-info .sobre-img .rotate-oval:nth-child(2) {
  transform: translate(-50%, -50%) rotate(300deg);
  background-color: #D8C4B6;
  box-shadow: 0 0 40px #D8C4B6;
  animation-delay: 2s;
}
.sobre .sobre-info .sobre-img .rotate-oval:nth-child(3) {
  transform: translate(-50%, -50%) rotate(180deg);
  background-color: #5271ff;
  box-shadow: 0 0 40px #5271ff;
  animation-delay: 4s;
}
@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
    background-color: #D8C4B6;
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
    background-color: #5271ff;
  }
}
.sobre .sobre-info .sobre-img .videoLogo {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  box-shadow: 0 0 15px #5271ff;
  background-color: white;
  z-index: 10;
}
.sobre .sobre-info .sobre-mim {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.sobre .sobre-info .sobre-mim span {
  font-size: 1rem;
  color: black;
  font-weight: 500;
}
.sobre .sobre-info .sobre-mim hr {
  height: 3px;
  background-color: black;
}
.sobre .sobre-info .sobre-mim h3 {
  font-size: 2rem;
  font-weight: 600;
}
.sobre .sobre-info .sobre-mim h3 span {
  color: #5271ff;
  font-size: 2rem;
}
.sobre .sobre-info .sobre-mim p {
  font-weight: 300;
  font-size: 1.1rem;
}
.sobre .sobre-info .sobre-mim button {
  background-color: #5271ff;
  padding: 10px 20px;
  border-radius: 12px;
  transition: 0.5s;
}
.sobre .sobre-info .sobre-mim button:hover {
  transform: scale(0.95);
}

@media screen and (max-width: 1090px) {
  .sobre {
    min-height: 100vh;
  }
  .sobre .sobre-info {
    grid-template-columns: 1fr;
  }
  .sobre .sobre-info .sobre-img .rotate-oval {
    width: 40%;
    height: 40%;
  }
  .sobre .sobre-info .sobre-img .videoLogo {
    width: 350px;
    height: 350px;
  }
}
@media screen and (max-width: 480px) {
  .sobre .sobre-info .sobre-img .rotate-oval {
    width: 80%;
    height: 60%;
  }
  .sobre .sobre-info .sobre-img .videoLogo {
    width: 250px;
    height: 250px;
  }
}
.portfolio {
  background-image: linear-gradient(to bottom, rgba(6, 18, 30, 0.1), #06121e), url("../img/img-fundo-servicos.avif");
  color: white;
  display: flex;
  justify-content: center;
  min-height: auto;
}
.portfolio .container-servicos {
  margin-top: 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 80%;
  gap: 15px;
  margin-bottom: 20%;
}
.portfolio .container-servicos .servicos-titulo, .portfolio .container-servicos .servicos {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.portfolio .container-servicos .servicos-titulo {
  gap: 30px;
  align-items: flex-start;
  margin-right: 20px;
}
.portfolio .container-servicos .servicos-titulo h2 {
  font-size: 2.8rem;
  color: #5271ff;
  font-style: italic;
  margin: 0;
  text-align: start;
  line-height: 85%;
  font-weight: 700;
}
.portfolio .container-servicos .servicos-titulo p {
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
}
.portfolio .container-servicos .servicos-titulo span {
  width: 100%;
  height: 3px;
  background-color: white;
}
.portfolio .container-servicos .servicos {
  gap: 25px;
}
.portfolio .container-servicos .servicos .container-menor {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.portfolio .container-servicos .servicos .container-menor .icons {
  width: 40px;
}
.portfolio .container-servicos .servicos .container-menor .servicos-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.portfolio .container-servicos .servicos .container-menor .servicos-info h3 {
  font-size: 1.5rem;
  color: #5271ff;
}
.portfolio .container-servicos .servicos .container-menor .servicos-info p {
  font-size: 1rem;
}

@media screen and (max-width: 1090px) {
  .portfolio .container-servicos {
    width: 95%;
  }
  .portfolio svg {
    bottom: -30px;
  }
}
@media screen and (max-width: 650px) {
  .portfolio svg {
    bottom: 0;
  }
  .portfolio .container-servicos {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    gap: 5px;
  }
  .portfolio .container-servicos .servicos-titulo {
    gap: 20px;
    margin-bottom: 20px;
  }
  .portfolio .container-servicos .servicos-titulo span {
    width: 100%;
  }
}
.projetos {
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}
.projetos .titilo-projetos {
  text-align: center;
  line-height: 250%;
}
.projetos .titilo-projetos span {
  font-weight: 200;
  font-size: 1.1rem;
}
.projetos .container-projetos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  width: 70%;
  margin-bottom: 35px;
  gap: 20px;
}
.projetos .container-projetos .img {
  width: 100%;
  position: relative;
  height: 350px;
  overflow-y: auto;
}
.projetos .container-projetos .img:hover i {
  opacity: 0;
}
.projetos .container-projetos .img i {
  position: absolute;
  font-size: 3rem;
  top: 0px;
  z-index: 99;
  top: 50%;
  left: 50%;
  height: 100%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  animation: flutuar 2s ease-in-out infinite;
}
@keyframes flutuar {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}
.projetos .container-projetos .img::-webkit-scrollbar {
  width: 8px; /* Largura vertical */
  height: 8px; /* Altura horizontal */
}
.projetos .container-projetos .img::-webkit-scrollbar-track {
  background: #D8C4B6;
}
.projetos .container-projetos .img::-webkit-scrollbar-thumb {
  background: #5271ff;
}
.projetos .info-final {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10%;
  z-index: 10;
}
.projetos .info-final h3 {
  font-size: 1.5rem;
  font-weight: 500;
}
.projetos .info-final p {
  font-size: 1.1rem;
  font-weight: 200;
  text-align: center;
}
.projetos .info-final button {
  background-color: #5271ff;
  font-size: 1rem;
  color: white;
  padding: 10px 5px;
  animation: piscar 0.5s infinite;
  font-weight: bold;
}
@keyframes piscar {
  from {
    box-shadow: 0 0 25px #5271ff;
  }
}

@media screen and (max-width: 1100px) {
  .projetos .container-projetos {
    width: 95%;
  }
  .projetos .info-final {
    margin-bottom: 18%;
  }
  .projetos svg {
    bottom: -30px;
  }
}
@media screen and (max-width: 650px) {
  .projetos .container-projetos {
    grid-template-columns: 1fr;
    width: 80%;
  }
  .projetos svg {
    bottom: 0px;
  }
}
.planos {
  min-height: 65vh;
  background: linear-gradient(to top, white, #5271ff);
  padding: 0px 0 80px 0;
  text-align: center;
}
.planos h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 30px;
}
.planos .container-planos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.planos .container-planos .plano {
  background-color: white;
  border: 1px solid #D8C4B6;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.planos .container-planos .plano:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.planos .container-planos .plano h3 {
  font-size: 1.8rem;
  color: #5271ff;
  margin-bottom: 10px;
}
.planos .container-planos .plano p {
  font-size: 1rem;
  margin-bottom: 15px;
}
.planos .container-planos .plano ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}
.planos .container-planos .plano ul li {
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.planos .container-planos .plano .preco {
  font-size: 1.5rem;
  font-weight: bold;
  color: black;
  margin-bottom: 15px;
}
.planos .container-planos .plano button {
  background-color: #5271ff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.planos .container-planos .plano button:hover {
  background-color: #1f47ff;
}
.planos .container-planos .destaque {
  background-color: #5271ff;
  color: white;
}
.planos .container-planos .destaque h3, .planos .container-planos .destaque .preco {
  color: white;
}
.planos .container-planos .destaque ul li {
  color: white;
}
.planos .container-planos .destaque button {
  background-color: white;
  color: #5271ff;
}
.planos .container-planos .destaque button:hover {
  background-color: white;
}

.duvidas {
  background-image: linear-gradient(to bottom, rgba(6, 18, 30, 0.1), #06121e), url("../img/fundo-duvidas.avif");
  color: white;
  display: flex;
  justify-content: center;
  padding-top: 10%;
  min-height: 60vh;
}
.duvidas .container-duvidas {
  width: 80%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.duvidas .container-duvidas .titulo-duvidas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
  gap: 20px;
  margin-right: 50px;
}
.duvidas .container-duvidas .titulo-duvidas p {
  font-weight: bold;
}
.duvidas .container-duvidas .titulo-duvidas h2 {
  line-height: 85%;
  font-size: 2.8rem;
}
.duvidas .container-duvidas .titulo-duvidas hr {
  width: 100%;
}
.duvidas .container-duvidas .perguntas {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30%;
}
.duvidas .container-duvidas .perguntas details {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 10;
  border-bottom: 1px solid #D8C4B6;
}
.duvidas .container-duvidas .perguntas details summary {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: bold;
  list-style: none;
  position: relative;
}
.duvidas .container-duvidas .perguntas details summary::after {
  content: "▼";
  color: #D8C4B6;
  font-size: 16px;
  position: absolute;
  right: 10px;
  transform: rotate(-90deg);
  transition: transform 0.3s ease-in-out;
}
.duvidas .container-duvidas .perguntas details[open] summary::after {
  transform: rotate(0deg);
}
.duvidas .container-duvidas .perguntas details p {
  font-weight: 300;
  text-align: justify;
  line-height: 150%;
  margin: 20px 0;
}
.duvidas .container-duvidas .perguntas details p a {
  color: #5271ff;
  font-weight: bold;
}
.duvidas .container-duvidas .perguntas details span {
  font-weight: bold;
}

@media screen and (max-width: 1090px) {
  .duvidas svg {
    bottom: -30px;
  }
  .duvidas .container-duvidas {
    width: 95%;
  }
}
@media screen and (max-width: 600px) {
  .duvidas {
    padding-top: 25%;
  }
  .duvidas svg {
    bottom: 0px;
  }
  .duvidas .container-duvidas {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
}
.depoimentos {
  background: linear-gradient(to top, white, #5271ff);
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0;
}
.depoimentos .container-depoimentos {
  width: 80%;
  text-align: center;
  display: flex;
  justify-content: space-around;
}
.depoimentos .container-depoimentos .titulo-depoimento {
  width: 50%;
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.depoimentos .container-depoimentos .titulo-depoimento p {
  font-weight: bold;
}
.depoimentos .container-depoimentos .titulo-depoimento hr {
  background-color: black;
  width: 90%;
}
.depoimentos .container-depoimentos .titulo-depoimento h2 {
  font-size: 2.5rem;
  color: #5271ff;
  margin-bottom: 30px;
  width: 90%;
}
.depoimentos .container-depoimentos .depoimentos-info {
  display: flex;
  max-width: 400px;
  gap: 20px;
}
.depoimentos .container-depoimentos .depoimentos-info .carrosel-depoimentos {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.depoimentos .container-depoimentos .depoimentos-info .carrosel-depoimentos .depoimento {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 300px;
  height: 200px;
  text-align: center;
}
.depoimentos .container-depoimentos .depoimentos-info .carrosel-depoimentos .depoimento p {
  font-size: 1rem;
  margin-bottom: 15px;
}
.depoimentos .container-depoimentos .depoimentos-info .carrosel-depoimentos .depoimento .estrelas {
  margin-bottom: 10px;
}
.depoimentos .container-depoimentos .depoimentos-info .carrosel-depoimentos .depoimento .estrelas i {
  color: #FFD700;
  margin: 0 2px;
}
.depoimentos .container-depoimentos .depoimentos-info .carrosel-depoimentos .depoimento h3 {
  font-size: 1.2rem;
  color: #5271ff;
}

@media screen and (max-width: 908px) {
  .depoimentos .container-depoimentos {
    width: 95%;
  }
  .depoimentos .container-depoimentos .titulo-depoimento {
    text-align: start;
  }
  .depoimentos .container-depoimentos .titulo-depoimento hr {
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  .depoimentos .container-depoimentos {
    width: 95%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .depoimentos .container-depoimentos .titulo-depoimento {
    width: 100%;
  }
}
@media screen and (max-width: 400px) {
  .depoimentos .container-depoimentos .titulo-depoimento {
    width: 100%;
  }
  .depoimentos .container-depoimentos .depoimentos-info {
    max-width: 250px;
  }
}
header.dark-theme {
  background-color: #241818;
  color: white !important;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: white;
  transition: 0.5s;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 9999;
  height: 90px;
  box-shadow: 0 0 15px #5271ff;
}

i {
  color: #130c03;
}

button.ativar .linha:nth-child(1) {
  transform: translateY(10px) rotate(-40deg);
}

button.ativar .linha:nth-child(2) {
  opacity: 0;
}

button.ativar .linha:nth-child(3) {
  transform: translateY(-8px) rotate(40deg);
}

.hamberger {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  right: 20px;
  top: 20px;
  transition: 0.5s;
  z-index: 99;
  display: none;
}
.hamberger .linha {
  width: 30px;
  height: 3px;
  border-radius: 5px;
  background-color: #5271ff;
  display: block;
  margin: 6px auto;
  position: relative;
  transform-origin: center;
  transition: 0.7s;
}

.header-button {
  border: 1px solid #5271ff;
  padding: 8px 24px;
  border-radius: 4px;
  color: #130c03;
  background-color: transparent;
  transition: background-color 0.8s;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo .logo {
  width: 100px;
}

.list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  text-decoration: none;
  list-style: none;
}
.list a button {
  position: relative;
  background-color: #5271ff;
  color: black;
  padding: 8px 30px;
  border-radius: 20px 0 10px 0px;
  box-shadow: 0 0 10px #5271ff;
}
.list a button:hover {
  transform: scale(0.9);
}
.list .header-logo {
  display: none;
}
.list li {
  position: relative;
}
.list li::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 0%;
  left: 0;
  bottom: -10px;
  border-radius: 4px;
  background-color: #5271ff;
  transition: width 0.5s ease;
}
.list li:hover::before {
  /* Aparece no hover */
  width: 100%;
}
.list li a {
  color: #130c03;
  font-size: 1.1rem;
  font-weight: 400;
  transition: 0.5s;
}
.list li a:hover {
  color: #5271ff;
}

@media screen and (max-width: 1050px) {
  .header {
    width: 100%;
  }
  .header .hamberger {
    display: block;
  }
  .header .botao {
    display: none;
  }
  .header .list {
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    width: 60%;
    gap: 30px;
    font-size: 1.3rem;
    opacity: 0;
    transform: translateX(1000px);
    transition: transform 1s;
    z-index: 89;
    background-color: white;
  }
  .header .list .header-logo {
    display: flex;
    text-align: center;
  }
  .header .list .header-logo .logo-mobile {
    width: 150px;
    margin-bottom: -70px;
  }
  .header .active {
    transform: translateX(0);
    opacity: 1;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100vh;
    right: 0;
    top: 0;
  }
}
@media screen and (max-width: 480px) {
  .header {
    height: 80px;
  }
  .header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-logo .logo {
    width: 80px;
  }
}
header {
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 70px;
  align-items: center;
  background-color: white;
  padding: 0 8%;
}
header img {
  width: 80px;
}
header button {
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}
header button i {
  color: white;
  transition: 0.5s;
}
header button:hover i {
  margin-right: 10px;
}

.contato-formulario {
  background-image: linear-gradient(to bottom, rgba(6, 18, 30, 0.1), #06121e), url("../img/fundo-contato.avif");
  color: white;
  width: 100%;
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: white;
}
.contato-formulario .formulario {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 40px;
  height: 100%;
}
.contato-formulario .formulario .info-contato {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 70px;
  gap: 15px;
  width: 85%;
}
.contato-formulario .formulario .info-contato h1 {
  font-size: 2rem;
}
.contato-formulario .formulario .info-contato p {
  font-size: 1rem;
  font-weight: 200;
  text-align: justify;
}
.contato-formulario .formulario .formulario-contato {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.contato-formulario .formulario .formulario-contato h3 {
  width: 80%;
  text-align: start;
  font-size: 1.2rem;
}
.contato-formulario .formulario .formulario-contato .mensagem {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 80%;
}
.contato-formulario .formulario .formulario-contato .mensagem input, .contato-formulario .formulario .formulario-contato .mensagem textarea {
  background-color: #2a2a2a;
  border-radius: 4px;
  border: 1px solid black;
  padding: 10px 5px;
  color: white;
}
.contato-formulario .formulario .formulario-contato .mensagem textarea {
  max-width: 100%;
}
.contato-formulario .formulario .formulario-contato .mensagem ::-moz-placeholder {
  color: white;
}
.contato-formulario .formulario .formulario-contato .mensagem ::placeholder {
  color: white;
}
.contato-formulario .formulario .formulario-contato .mensagem button {
  padding: 10px 0;
  transition: 0.5s;
}
.contato-formulario .formulario .formulario-contato .mensagem button:hover {
  background-color: rgb(167, 167, 245);
}
.contato-formulario footer {
  padding: 25px 0;
  text-align: center;
}
.contato-formulario footer p {
  line-height: 150%;
}
.contato-formulario footer p a {
  color: #5271ff;
}

@media screen and (max-width: 820px) {
  .contato-formulario .formulario {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  .contato-formulario .formulario .info-contato {
    padding-top: 20px;
    width: 100%;
  }
  .contato-formulario .formulario .formulario-contato h3 {
    width: 95%;
    text-align: start;
    font-size: 1.2rem;
  }
  .contato-formulario .formulario .formulario-contato .mensagem {
    width: 95%;
  }
}
html, body {
  scroll-behavior: smooth;
  scroll-padding: 30px;
}

body {
  font-family: "Sora", sans-serif;
  color: #130c03;
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow-x: hidden;
  background-color: white;
  color: black;
}

section {
  min-height: 100vh;
  width: 100%;
  max-width: 1600px;
  position: relative;
  padding: 0 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

button {
  font-family: "Sora", sans-serif;
  cursor: pointer;
  background-color: #5271ff;
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
  transition: 0.5s;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #130c03;
}

h2 {
  position: relative;
  font-size: 2.2rem;
  color: #5271ff;
  font-style: italic;
}

svg {
  position: absolute;
  bottom: -100px;
  left: 0;
  height: auto;
}

.desativar {
  display: none;
}/*# sourceMappingURL=style.css.map */