@charset "UTF-8";

:root {
  --color-tx: #e3104f;
  --second-color: #7d092c;
  --text-sec: #6b7280;
  --first-text: #8b8b8b;
  --background: #000000;
  --color-white: #c0c0c0;
  --second-background: #121212;
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: #c0c0c0;
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-margin-top: var(--header-height);
  overflow-x: hidden;
}

::selection {
  background-color: #c0c0c0;
  color: #e3104f;
}

.midiasocials {
  display: flex;
  right: 1rem;
  gap: 1rem;
}

svg {
  color: white;
}

header {
  display: flex;
  border-bottom: 1px solid var(--second-background);
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
  padding: 1.4rem;
  font-weight: 550;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--background);
  height: var(--header-height);
}

nav {
  display: flex;
  gap: 1rem;
  width: auto;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  left: 1rem;
  height: 30px;
}

main {
  background: var(--background);
}

main>section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 75dvh;
  padding: 3rem;
}

a {
  text-decoration: none;
  color: var(--first-text);
}

a:hover {
  color: var(--color-tx);
}

.ourpartners {
  display: flex;
  justify-content: center;
  margin-top: 9%;
  gap: 1rem;
  align-items: center;
  flex-direction: column;
}

.partnerscompany {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  -webkit-user-select: none;
  user-select: none;
}

.prtn {
  color: #8b8b8b;
}

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

.title {
  padding: 1rem;
  width: auto;
  max-width: 80%;
}

.prt {
  filter: brightness(30%);
}

.prt:hover {
  filter: none;
  cursor: pointer;
}

.color {
  color: #e3104f;
}

.apresentation {
  justify-content: center;
  align-content: center;
  display: flex;
  flex-direction: column;
  /* -webkit-user-select: none;
    user-select: none; */
}

.contactbtn {
  color: var(--color-white);

  &:hover {
    color: var(--color-white);
  }
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 50px;

  &:hover {
    border: 1px solid var(--second-color);
    background: var(--color-tx);
    color: var(--color-white);
  }
}

.textini {
  margin-top: 10%;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 1rem;
  flex-direction: column;
}

.pricipaltx {
  font-size: 2.5rem;
}

.subtext,
.subtextserv {
  font-size: 1rem;
  color: var(--text-sec);
  text-align: justify;
}

#services {
  justify-content: center;
  align-content: center;
  display: flex;
  flex-direction: column;
}

.titleproduct {
  font-size: 2rem;
  text-align: center;
}

.colorw {
  text-decoration: underline;
}

.colorwi {
  color: var(--color-white);
}

u:hover {
  color: var(--color-tx);
}

section.to-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1000;
}

section.to-top button {
  background-color: var(--color-tx);
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
}

section.to-top button:hover {
  background-color: var(--second-color);
}

.contente {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-flow: row wrap;
}

.contents {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  background-color: var(--second-background);
  padding: 32px;
  border-radius: 25px;
  border: 1px solid #c0c0c02d;
  color: var(--first-text);
  width: 20%;
  height: 100%;
}

.contents:hover {
  background-color: #7d092c18;
  border: 1px solid var(--color-tx);
  transform: scale(1.01);
  transition: all 0.6s ease;
}

.contents:hover .icontent {
  background-color: #7d092c33;
  transform: scale(1.01);
  filter: invert(16%) sepia(89%) saturate(6054%) hue-rotate(338deg) brightness(89%) contrast(92%);
}

.contents:hover .description {
  color: var(--text-sec);
  transform: scale(1.01);
}

.contents:hover h3 {
  color: var(--color-tx);
  transform: scale(1.01);
}

.description {
  display: flex;
  flex-direction: column;
  align-items: left;
}

.description p {
  color: var(--first-text);
  font-size: 0.9rem;
  max-width: 80%;
}

.icontent {
  width: 70px;
  height: 70px;
  padding: 0.6rem;
  border-radius: 15%;
  background-color: #292929;
}

.titledev {
  padding: 1rem;
  width: auto;
  max-width: 80%;
}

.contentedev {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  -webkit-user-select: none;
  user-select: none;
}

.contentsdev {
  display: flex;
  background: linear-gradient(90deg, #e3104f1e 0%, #7d092c57 100%);
  padding: 15px;
  width: auto;
  border-radius: 10px;
  border: 1px solid var(--color-tx);
  color: var(--first-text);
  -webkit-user-select: none;
  user-select: none;
}

.contentsdev:hover {
  background-color: #e3104f52;
  border: 1px solid var(--color-tx);
  transform: scale(1.04);
  transition: all 0.6s ease;
}

.steps {
  font-weight: 300;
}

.titleabout {
  font-size: 3rem;
  font-weight: 550;
  text-align: center;
  width: auto;
  max-width: 80%;
}

.subtx {
  color: var(--text-sec);
  font-weight: 200;
  font-size: 1rem;
}

.cards {
  display: flex;
  flex-flow: row wrap;
  width: auto;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  margin: 1rem 0;
}

.cardperson {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  width: 20%;
}

.cardperson:hover {
  transform: scale(1.02);
  transition: all 0.6s ease;
}

.cardperson h3 {
  color: #fff;
  max-width: 80%;
  font-weight: 550;
  font-size: 1.2rem;
}

.cardperson p.function {
  max-width: 60%;
  color: var(--color-tx);
  font-size: 0.9rem;
  font-weight: 400;
}

.desc {
  color: var(--first-text);
  max-width: 70%;
}

.collaborators {
  width: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  border-radius: 20px;
  border: 1px solid var(--text-sec);
  -webkit-user-select: none;
  user-select: none;
}

.contentet {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-flow: row wrap;
}

.contentsproj {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  flex-flow: wrap;
  margin-top: 3%;
  background-color: var(--second-background);
  padding: 22px;
  border-radius: 25px;
  border: 1px solid #c0c0c02d;
  color: var(--first-text);
  width: 30%;
  height: auto;

  &:hover {
    background-color: #7d092c18;
    border: 1px solid var(--color-tx);
    transform: scale(1.01);
    transition: all 0.6s ease;
  }
}

.contentsproj:hover .icontents {
  background-color: #7d092c33;
  transform: scale(1.01);
  filter: invert(16%) sepia(89%) saturate(6054%) hue-rotate(338deg) brightness(89%) contrast(92%);
}

.contentsproj:hover .description {
  color: var(--text-sec);
  transform: scale(1.01);
}

.contentsproj:hover h3 {
  color: var(--color-tx);
  transform: scale(1.01);
}

.descriptionproj {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: left;
}

.btnproj {
  text-decoration: underline;
  border: 1px solid var(--color-tx);
  align-self: flex-start;
  text-align: center;
  border-radius: 16px;
  padding: 0.3rem;
  width: 100px;

  &:hover {
    background-color: var(--color-tx);
    color: var(--color-white);
    border: 1px solid var(--color-tx);
  }
}

.descriptionproj p {
  color: var(--first-text);
  font-size: 0.9rem;
  max-width: 80%;
}

.icontents {
  width: auto;
  height: 50px;
  padding: 0.6rem;
  border-radius: 15%;
  background-color: #292929;
}

#contact {
  height: 150dvh;
}

.titlecontact {
  display: flex;
  flex-direction: column;
  font-size: 3rem;
  text-align: center;
  align-items: center;
  width: auto;
  max-width: 80%;
  margin: 1rem;
}

.subform {
  display: flex;
  flex-flow: wrap;
  color: var(--text-sec);
  font-size: 1rem;
  text-align: justify;
}

.contactform {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
}

form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
  width: auto;
}

input {
  background-color: var(--second-background);
  border: 1px solid var(--text-sec);
  color: var(--first-text);
  padding: 0.5rem;
  display: block;
  width: auto;
  border-radius: 10px;
}

.submitbtn {
  color: var(--color-white);
  background-color: var(--color-tx);
  border: 1px solid var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 16px;
  width: 100px;
  align-self: flex-start;

  &:hover {
    border: 1px solid var(--second-color);
    background: var(--color-white);
    color: var(--color-tx);
  }
}

textarea {
  background-color: var(--second-background);
  border: 1px solid var(--text-sec);
  color: var(--first-text);
  padding: 0.5rem;
  display: block;
  block-size: 200px;
  width: auto;
  border-radius: 10px;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
  background-color: var(--second-background);
}

footer>section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
}

.logoandname {
  display: flex;
  max-width: 70%;
  flex-direction: row;
  align-items: center;
  gap: 1.3rem;
  padding: 4rem;
  margin-top: 5%;
}

.titlefoot {
  font-size: 1.5rem;
  font-weight: 550;
}

.subfoot {
  color: var(--text-sec);
  font-weight: 200;
  font-size: 1rem;
  max-width: 80%;
}

.logofoot {
  width: 80px;
  height: auto;
}

.containergenerlinkandname {
  height: 85%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footercontent {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.allinks {
  display: flex;
  gap: 4rem;
  flex-direction: row;
}

.linha {
  border-bottom: 1px dashed var(--text-sec);
  display: flex;
  align-items: center;
  margin: 1rem auto;
  width: 70%;
}

.copyright {
  text-align: center;
  color: var(--text-sec);
  font-size: 0.9rem;
}

@media screen and (max-width: 990px) {
  header {
    gap: 0.5rem;
    height: auto;
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  .contents {
    width: 100%;
  }

  .cardperson {
    width: 100%;
  }

  .contentsproj {
    width: 100%;
  }
}