@font-face {
  font-family: "Source Sans Pro";
  src: url(../assets/sourcesanspro-light.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url(../assets/sourcesanspro-regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url(../assets/sourcesanspro-bold.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
* {
  --orange: #cc4700;
  --altorange: #fbc828;
  --blue: #004ecc;
  --color: #222;
  --altcolor: #fff;
  outline: 0;
  box-sizing: border-box;
  font-family: "Source Sans Pro", sans-serif;
  --filterblue: invert(22%) sepia(71%) saturate(3066%) hue-rotate(210deg)
    brightness(85%) contrast(107%);
  --filtergreen: invert(41%) sepia(83%) saturate(419%) hue-rotate(98deg)
    brightness(100%) contrast(100%);
  --filteryellow: invert(55%) sepia(94%) saturate(908%) hue-rotate(10deg)
    brightness(107%) contrast(103%);
  --filterred: invert(28%) sepia(92%) saturate(4329%) hue-rotate(351deg)
    brightness(101%) contrast(72%);
  --filterorange: invert(45%) sepia(64%) saturate(7500%) hue-rotate(18deg)
    brightness(93%) contrast(103%);
  --filterbrightorange: invert(44%) sepia(71%) saturate(3486%) hue-rotate(5deg)
    brightness(98%) contrast(88%);
  --filtergrey: invert(0) opacity(0.8);
}
body {
  margin: 0;
  position: relative;
  height: 100%;
}
section {
  padding: 0 15vw;
}
h1 {
  font-size: 2.75rem;
  margin-block: 0.67em;
}
strong {
  font-weight: 500;
}

#hero {
  background-image:
    url(triscal-hero1_preto.webp),
    linear-gradient(302deg, #004ecc30 0%, #03838740 88%);
  background-size: 100%;
  background-repeat: no-repeat;
  color: var(--altcolor);
  display: grid;
  gap: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-bottom: 2px solid var(--orange);
  position: relative;
}
#hero div {
  display: flex;
  flex-direction: column;
}
#hero .logos {
  align-items: center;
  gap: 3rem;
  grid-area: l1;
}
#hero .txt {
  gap: 2.5rem;
  grid-area: t1;
}
#hero .form {
  grid-area: f1;
  gap: 0;
  background: var(--orange);
  max-width: 320px;
  padding: 1.5rem;
  border-radius: 2rem;
  justify-content: center;
}
#hero .form > p {
  color: var(--altcolor);
  font-size: 1.2rem;
  line-height: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}
#hero #divulgacao > div:first-child {
  gap: 0.7rem;
}
#hero #divulgacao > div:last-child {
  margin-top: 1rem;
  gap: 1.5rem;
}
#hero #divulgacao input {
  padding: 0.6rem 0.8rem;
  border: none;
  border-radius: 0.4rem;
  font-size: 1rem;
}
#hero #divulgacao div.checkboxed {
  flex-direction: row;
  gap: 0.5rem;
}
#hero #divulgacao button {
  background: var(--altorange);
  border: none;
  border-radius: 0.5rem;
  padding: 0.8rem;
  color: var(--color);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  font-size: 1.1rem;
  transition: 200ms;
}
#hero #divulgacao button:hover {
  cursor: pointer;
  background: var(--blue);
  color: var(--altcolor);
  font-size: 1.2rem;
}
#hero #divulgacao button:hover img {
  filter: invert(1);
}
#hero h1 {
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 3.5rem;
  margin: 0;
  margin-block: 0;
  color: #000000;
}
#hero h1 span {
  text-wrap: nowrap;
}
#hero h1 strong {
  font-weight: 500;
}
#hero p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.5rem;
  margin: 0;
}
#hero p strong {
  font-weight: 500;
}
@media screen and (min-width: 1170px) {
  #hero {
    grid-template-areas: "l1 t1 f1";
    grid-template-columns: 11rem auto 20rem;
    align-items: center;
  }
  #hero .logos img {
    display: block;
    margin: 0 auto;
  }
  #hero .logos a img:nth-child(1) {
    width: 90%;
  }
  #hero .logos img:nth-child(2) {
    width: 60%;
  }
}
@media screen and (min-width: 800px) and (max-width: 1169px) {
  #hero {
    grid-template-areas: "l1 l1" "t1 f1";
    grid-template-columns: auto 20rem;
  }
  #hero .logos {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  #hero .logos a {
    width: fit-content;
  }
  #hero .logos img {
    display: block;
    height: 11rem;
    width: auto;
  }
}
@media screen and (max-width: 799px) {
  #hero {
    grid-template-areas: "l1" "t1" "f1";
  }
  #hero .logos {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  #hero .logos img {
    display: block;
    height: 9rem;
    width: auto;
  }
  #hero .form {
    margin: 0 auto;
  }
}

#intro {
  padding-top: 4rem;
  padding-bottom: 3rem;
  text-align: justify;
  display: flex;
  align-items: center;
  gap: 3rem;
}
#intro .intro-img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 30vw;
  width: 100%;
  /*background-color: linear-gradient(0deg,#555555,#cccccc);*/
  align-self: stretch;
  background-image:
    url(/fabric/assets/fabric-ui.png),
    linear-gradient(0deg, aqua, rgba(220, 220, 255, 255));
  background-image: linear-gradient(
    90deg,
    rgb(250, 250, 255),
    rgb(230, 230, 255)
  );
  /*background-size: 90%;
  background-position: center center;
  background-color: aqua;*/
  background-repeat: no-repeat;
  border-radius: 1.2rem;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
  position: relative;
}
#intro .intro-img:before {
  content: "";
  display: block;
  width: 30%;
  height: 45%;
  background-image: linear-gradient(0, #fff6dc1a, #fff6dc99);
  position: absolute;
  left: 0;
  bottom: 0;
}
#intro .intro-img img {
  max-width: 30vw;
  width: 85%;
  object-fit: contain;
  display: block;
}
#intro h2 {
  position: absolute;
  padding: 0 0 1rem 1.5rem;
  font-weight: 400;
  font-size: 1.75rem;
  text-align: left;
  bottom: 0;
  left: 0;
  margin: 0;
}
#intro h2 span {
  font-weight: 500;
}
#intro p {
  font-size: 1.1rem;
}
#intro p.destacado {
  font-size: 1.4rem;
  padding: 1.2rem;
  background: var(--altorange);
  background-color: #fff6dc;
  color: var(--color);
  border-radius: 1.2rem;
  text-align: center;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}

#como {
  padding-top: 4rem;
  padding-bottom: 6rem;
  /*  background: linear-gradient(90deg,aliceblue,#fff6dc);*/
  background: linear-gradient(35deg, aliceblue, #fff6dc);
}
#como h2 {
  text-align: center;
  font-size: 2.2rem;
  margin: 0 0 2.5rem;
  font-weight: 400;
}
#como h2 span {
  text-wrap: nowrap;
  color: var(--orange);
  font-weight: 500;
}
#como .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin: 1rem 0;
  gap: 2rem;
}
#como .cards div {
  text-align: justify;
  overflow: hidden;
  border-radius: 1.2rem;
  background: var(--altcolor);
  box-shadow: 1px 1px 3px #ccc;
  padding: 1.75rem;
  align-self: stretch;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
}
#como .cards div .align-center{
  align-items: center;
}
@media screen and (min-width: 1400px) {
  #como .cards div {
    width: 21vw;
  }
}
@media screen and (min-width: 770px) and (max-width: 1399px) {
  #como .cards div {
    width: 47%;
  }
}
@media screen and (max-width: 770px) {
  #como .cards div {
    width: 90%;
  }
}
#como .cards div h3 {
  margin: 0;
  color: var(--color);
  text-align: center;
  font-weight: 500;
  font-size: 1.3rem;
}
#como .cards div h3:before {
  content: "";
  display: block;
  margin: 0 auto 1.5rem auto;
  width: 48px;
  height: 48px;
  box-sizing: content-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  background-size: 100%;
  background-repeat: no-repeat;
  filter: var(--filterblue);
}
#como .cards div:nth-child(1) h3:before {
  background-image: url("/fabric/assets/fabric.svg");
}
#como .cards div:nth-child(2) h3:before {
  background-image: url("/fabric/assets/compliance.svg");
}
#como .cards div:nth-child(3) h3:before {
  background-image: url("/fabric/assets/adocao_IA.svg");
}
#como .cards div:nth-child(4) h3:before {
  background-image: url("/fabric/assets/integration.svg");
}
#como .cards div:nth-child(5) h3:before {
  background-image: url("/fabric/assets/cost.svg");
}
#como .cards div:nth-child(6) h3:before {
  background-image: url("/fabric/assets/scalability.svg");
}

#advantages0 {
  padding-bottom: 6rem;
  padding-top: 4rem;
  /*  background: linear-gradient(90deg,aliceblue,#fff6dc);*/
  background: linear-gradient(330deg, #fff6dc, aliceblue);
}
#advantages0 h2 {
  text-align: center;
  font-size: 2.2rem;
  margin: 0 0 2.5rem;
  font-weight: 400;
}
#advantages0 h2 span {
  text-wrap: nowrap;
  color: var(--orange);
  font-weight: 500;
}
#advantages0 .columns {
  display: flex;
  gap: 2rem;
  width: 100%;
  flex-direction: column;
}
#advantages0 .columns .txt {
  /*width: 24rem;*/
  flex: 1;
}
#advantages0 .columns .txt h3 {
  margin: 0;
  font-weight: 500;
  padding: 0 0 1em 0;
  position: relative;
}
#advantages0 .columns .txt p {
  margin: 0;
  font-weight: 400;
  transition: all 0.5s;
  padding: 0;
  overflow: hidden;
  max-height: 0;
  font-size: 1.1rem;
  z-index: 5;
  position: relative;
}
#advantages0 .columns .txt .adv_block {
  transition: all 0.5s;
  border-left: 3px solid transparent;
  position: relative;
}
#advantages0 .columns .txt .adv_block:before {
  content: "";
  position: absolute;
  display: block;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0);
  top: 0;
  bottom: 0;
  right: 0;
  transition: all 0.5s;
}
#advantages0 .columns .txt .adv_block:not(.active):hover {
  cursor: pointer;
}
#advantages0 .columns .txt .adv_block:not(.active):hover:before {
  background-color: rgba(0, 0, 0, 0.15);
  background-color: #fff6dc;
}
#advantages0 .columns .txt div.active p {
  padding: 1rem 0;
  max-height: fit-content;
}
#advantages0 .columns .image {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fdfbf7;
  padding: 0 0.5rem;
  border-radius: 1.2rem;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  /*  flex: 1;
  width: 825px;*/
}
#advantages0 .columns .image img {
  /*  box-shadow: 1px 1px 2px rgba(0,0,0,0.25);
  width: 100%;
  max-width: 50rem;*/
  display: block;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  #advantages0 .columns {
    flex-direction: row;
  }
  #advantages0 .columns .txt .adv_block {
    padding: 1rem 1rem 1rem 1.5rem;
  }
  #advantages0 .columns .txt .adv_block::before {
    left: 1rem;
  }
  #advantages0 .columns .txt .adv_block:not(:last-child):after {
    content: "";
    /*width: 100%;*/
    position: absolute;
    display: block;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.2);
    bottom: 0;
    left: 1rem;
    right: 0;
  }
  #advantages0 .columns .txt div.active {
    border-left: 3px solid red;
  }
  #advantages0 .columns .image {
    width: 50%;
  }
  #advantages0 .columns .image img.mobile {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  #advantages0 .columns {
    flex-direction: column;
  }
  #advantages0 .columns .txt .adv_block {
    padding: 1rem;
  }
  #advantages0 .columns .txt div.active {
    border-top: 3px solid red;
    border-bottom: 3px solid red;
    background-color: #fefdf9;
  }
  #advantages0 .columns .txt .adv_block::before {
    left: 0;
  }
  #advantages0 .columns .txt h3,
  #advantages0 .columns .txt p {
    text-align: center;
  }
  #advantages0 .columns .image {
    width: 100%;
  }
  #advantages0 .columns .image img.desktop {
    display: none;
  }
}

#advantages {
  padding-top: 4rem;
  padding-bottom: 4rem;
  /*! background:#f3f3f3; */
  /*! background-image:url(fabric-bg.webp); */
  /*! background-attachment:fixed; */
  /*! background-position:center; */
  /*! background-repeat:no-repeat; */
  /*! background-size:cover */
  background: linear-gradient(90deg, aliceblue, #fff6dc);
}
#advantages h2 {
  text-align: left;
  font-size: 2.2rem;
  margin: 0 0 2.5rem;
  font-weight: 400;
}
#advantages h2 span {
  text-wrap: nowrap;
  color: var(--orange);
  font-weight: 500;
}
#advantages .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 1rem 0;
  row-gap: 2.5rem;
}
#advantages .cards div {
  text-align: justify;
  overflow: hidden;
  border-radius: 1.2rem;
  background: var(--altcolor);
  box-shadow: 1px 1px 3px #ccc;
  padding: 1.75rem;
  align-self: stretch;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 1400px) {
  #advantages .cards div {
    width: 21vw;
  }
}
@media screen and (min-width: 770px) and (max-width: 1399px) {
  #advantages .cards div {
    width: 47%;
  }
}
#advantages .cards div h3 {
  /*! background:var(--orange); */
  margin: 0;
  color: var(--color);
  /*padding:1rem;*/
  text-align: left;
  font-weight: 500;
}
#advantages .cards div h3:before {
  content: "";
  display: block;
  margin: 0 0 1.5rem 0;
  width: 48px;
  height: 48px;
  box-sizing: content-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  background-size: 100%;
  background-repeat: no-repeat;
  filter: invert(65%);
}
#advantages .cards div:nth-child(1) h3:before {
  background-image: url("/fabric/assets/AI.svg");
}
#advantages .cards div:nth-child(2) h3:before {
  background-image: url("/fabric/assets/compliance.svg");
}
#advantages .cards div:nth-child(3) h3:before {
  background-image: url("/fabric/assets/agility.svg");
}
#advantages .cards div:nth-child(4) h3:before {
  background-image: url("/fabric/assets/integration.svg");
}
#advantages .cards div:nth-child(5) h3:before {
  background-image: url("/fabric/assets/cost.svg");
}
#advantages .cards div:nth-child(6) h3:before {
  background-image: url("/fabric/assets/scalability.svg");
}
#advantages .cards div p {
  /*! padding:0 1rem 1rem; */
  text-align: left;
  font-size: 1.1rem;
}
footer {
  padding: 0 15vw;
  background: var(--blue);
  background: linear-gradient(302deg, #004eccff 0%, #0241a6ff 88%);
  background-image: linear-gradient(302deg, #004ecc30 0%, #03838740 88%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .line {
  padding-top: 4rem;
  padding-bottom: 3rem;
  display: flex;
  gap: 4rem;
  align-items: center;
}
footer .line h2 {
  text-align: center;
  font-size: 2.3rem;
  margin: 0;
  color: var(--altcolor);
  font-weight: 400;
  max-width: 50rem;
  color: #000000;
}
footer .line h2 span {
  text-wrap: nowrap;
  font-weight: 500;
}
footer .line p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--altcolor);
  text-align: center;
  line-height: 1.8rem;
}
footer .line > div {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 1.5rem 24px;
  align-items: center;
}
footer .line a.btn,
footer .line a.btn:visited {
  background: var(--altorange);
  border: none;
  border-radius: 10rem;
  padding: 1rem;
  color: var(--color);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  font-size: 1.1rem;
  transition: 200ms;
  text-decoration: none;
  margin-top: 0.5rem;
}
footer .line a.btn:hover,
footer .line a.btn:active {
  cursor: pointer;
  background: var(--orange);
  color: var(--altcolor);
  font-size: 1.2rem;
}
footer .line a.btn:hover img,
footer .line a.btn:active img {
  filter: invert(1);
}
footer .line .left img.logo {
  max-width: 200px;
  margin: 0 0 0.5rem;
}
footer .line .left div {
  display: flex;
  flex-direction: column;
}
footer .line .left div a {
  display: flex;
  text-decoration: none;
  gap: 0.4rem;
  font-size: 1.1rem;
  color: #000000;
  border-radius: 10rem;
  padding: 0.4rem 1rem;
  transition: 250ms;
  white-space: nowrap;
}
footer .line .left div a:hover {
  background: var(--orange);
}
footer .line .left div a img {
  filter: invert(44%) sepia(71%) saturate(3486%) hue-rotate(5deg)
    brightness(98%) contrast(88%);
  zoom: 0.8;
}
footer .line .left div a:hover img {
  filter: invert(1);
}
footer .subline {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 3rem;
}
footer .subline p {
  margin: 0;
  font-size: 0.9rem;
  color: #000000;
}
footer .subline a {
  outline: 0;
  text-decoration: none;
}
footer .subline a img {
  filter: invert(0);
}
@media screen and (max-width: 1320px) {
  section {
    padding: 0 10vw;
  }
}
@media screen and (max-width: 1050px) {
  #hero h1 {
    font-size: 2.6rem;
    line-height: 3rem;
  }
  footer .subline {
    flex-direction: column;
    gap: 1rem;
  }
  footer .subline p {
    text-align: center;
  }
}
@media screen and (max-width: 850px) {
  #hero h1 {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }
  #hero p {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #intro {
    flex-direction: column;
  }
  #intro img {
    max-width: max-content;
  }
  /*  #advantages .cards div {
    max-width:35vw
  }*/
  footer .line {
    flex-direction: column-reverse;
    gap: 5rem;
  }
}
@media screen and (max-width: 660px) {
  #hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  section {
    padding: 0 1rem;
  }
  #advantages .cards div {
    max-width: 43vw;
  }
}
@media screen and (max-width: 480px) {
  #hero {
    padding: 1.5rem 1.2rem 2rem;
  }
  #hero h1 {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
  #hero p {
    font-size: 1.1rem;
    line-height: 1.5rem;
  }
  #hero > div:first-child {
    gap: 1.5rem;
  }
  #hero > div:last-child {
    max-width: 320px;
  }
  #intro {
    padding: 2rem 1.2rem;
    gap: 1.5rem;
  }
  #advantages {
    padding: 2rem 1.2rem;
  }
  #advantages .cards div {
    max-width: 100%;
  }
  footer {
    padding: 2rem 1.2rem;
    gap: 3rem;
  }
  footer .line h2 {
    font-size: 1.8rem;
  }
  footer .line img.logo {
    max-width: 80%;
  }
}
.popMessage {
  position: fixed;
  width: 100vw;
  top: 0;
  height: 100vh;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000000d9;
  z-index: 99999;
}
.popMessage .flexed {
  max-width: 450px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.popMessage .flexed p.title {
  background: var(--blue);
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  margin: 0;
  text-align: center;
}
.popMessage.warn .flexed p.title {
  background: var(--orange);
}
.popMessage .flexed p {
  color: var(--color);
  font-size: 1.1rem;
  width: 100%;
  padding: 0.7rem 1.2rem;
  text-align: center;
}
.popMessage .flexed button {
  border-radius: 10rem;
  border: 1px solid var(--blue);
  background: var(--blue);
  padding: 0.5rem 2rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  max-width: fit-content;
  color: var(--altcolor);
  cursor: pointer;
  transition: 200ms;
  letter-spacing: 0.2rem;
  margin: 0 0 1rem;
}
.popMessage .flexed button:hover {
  background: transparent;
  color: var(--blue);
}
.popMessage.warn .flexed button {
  border: 1px solid var(--orange);
  background: var(--orange);
}
.popMessage.warn .flexed button:hover {
  background: transparent;
  color: var(--orange);
}
