@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  background-color: black;
}

.dodeca-section {
  position: fixed;
  top: 7vh;
  left: 30vw;
  right: auto;
  bottom: auto;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.dodeca-section canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.OutfitTitulo {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 7vh;
  line-height: 8vh;
}

.OutfitTituloBold {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: bold;
  font-size: 9vh;
  line-height: 9vh;
}

.OutfitTituloFino {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-size: 7vh;
  line-height: 8vh;
}

.OutfitTextoCinza {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 3vh;
  line-height: 4vh;
  color: #605d59;
}

.OutfitTextoBranco {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: italic;
  font-size: 3vh;
  line-height: 4vh;
  color: white;
}

.OutfitTextoDourado {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: italic;
  font-size: 3vh;
  line-height: 4vh;
  color: #cba34d;
}

.second-canvas {
  position: fixed;
  top: -10vh;
  left: 5vh;
  right: 0;
  bottom: 150vh;
  height: 50vh;
  width: 50vw;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.second-canvas canvas {
  width: 100%;
  height: 100%;
}

/* ----CARDS---- */

.card {
  position: relative;
  width: 40vh;
  height: 30vh;
  background: #cba34d;
  border-radius: 1.5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card svg {
  width: 6vh;
  fill: #333;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover {
  transform: rotate(-5deg) scale(1.1);
  box-shadow: 0 1.5vh 3vh rgba(0, 0, 0, 0.2);
}

.card__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 100%;
  height: 100%;
  padding: 3vh;
  box-sizing: border-box;
  background-color: #fff;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .card__content {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 1;
}

.card__title {
  margin: 0;
  font-size: 3vh;
  color: #333;
  font-weight: 700;
}

.card__description {
  margin: 1.5vh 0 0;
  font-size: 1.8vh;
  color: #777;
  line-height: 1.4;
}

.card:hover svg {
  scale: 0;
  transform: rotate(-45deg);
}

@layer utilities {
  @keyframes slide {
    0% {
      transform: translateX(0%);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  .animate-slide {
    animation: slide 20s linear infinite;
  }
}


/* Botao scroll */

.button {
  cursor: pointer;
  border: none;
  background: #cba34d;
  color: #fff;
  width: 11vh;
  height: 11vh;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  display: grid;
  place-content: center;
  transition:
    background 300ms,
    transform 200ms;
  font-weight: 600;
}

.button__text {
  position: absolute;
  inset: 0;
  animation: text-rotation 8s linear infinite;

  >span {
    position: absolute;
    transform: rotate(calc(19deg * var(--index)));
    inset: 7px;
  }
}

.button__circle {
  position: relative;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background: #fff;
  color: #7808d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button__icon--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button:hover {
  background: #000;
  transform: scale(1.05);
}

.button:hover .button__icon {
  color: #000;
}

.button:hover .button__icon:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button:hover .button__icon--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

@keyframes text-rotation {
  to {
    rotate: 360deg;
  }
}

/* Celular */

.card2 {
  width: 210px;
  height: 400px;
  background: #191919;
  border-radius: 35px;
  border: 2px solid #605d59;
  padding: 7px;
  position: relative;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.486);
}

.card-int {
  background-image: linear-gradient(to right bottom,
      #191919,
      #605d59,
      #d1d3d2,
      #cba34d,
      #f8eb94);
  background-size: 200% 200%;
  background-position: 0% 0%;
  height: 100%;
  border-radius: 25px;
  transition: all 0.6s ease-out;
  overflow: hidden;
}

.card2:hover .card-int {
  background-position: 100% 100%;
}

.top {
  position: absolute;
  top: 0px;
  right: 50%;
  transform: translate(50%, 0%);
  width: 35%;
  height: 18px;
  background-color: #191919;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.speaker {
  position: absolute;
  top: 2px;
  right: 50%;
  transform: translate(50%, 0%);
  width: 40%;
  height: 2px;
  border-radius: 2px;
  background-color: #605d59;
}

.camera {
  position: absolute;
  top: 6px;
  right: 84%;
  transform: translate(50%, 0%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.048);
}

.int {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  background-color: rgba(203, 163, 77, 0.4);
  /* dourado transparente */
}

.btn1,
.btn2,
.btn3,
.btn4 {
  position: absolute;
  width: 2px;
}

.btn1,
.btn2,
.btn3 {
  height: 45px;
  top: 30%;
  right: -4px;
  background-image: linear-gradient(to right, #605d59, #cba34d);
}

.btn2,
.btn3 {
  transform: scale(-1);
  left: -4px;
}

.btn2,
.btn3 {
  transform: scale(-1);
  height: 30px;
}

.btn2 {
  top: 26%;
}

.btn3 {
  top: 36%;
}

.hello {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  color: #f8eb94;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 35px;
  height: 100%;
  transition: 0.5s ease-in-out;
}

.hidden {
  display: block;
  opacity: 0;
  transition: all 0.3s ease-in;
}

.card2:hover .hidden {
  opacity: 1;
}

.card2:hover .hello {
  transform: translateY(-20px);
}

/* redes sociais */

.card3 {
  width: fit-content;
  height: fit-content;
  background-color: rgb(238, 238, 238);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 25px;
  gap: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
  border-radius: 10px;
}

.socialContainer {
  width: 52px;
  height: 52px;
  background-color: rgb(44, 44, 44);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: 0.3s;
  border-radius: 10px;
}

/* instagram*/
.containerOne:hover {
  background-color: #d62976;
  transition-duration: 0.3s;
  transform: scale(1.5);
  border-radius: 15px;
}

/* email*/
.containerTwo:hover {
  background-color: red;
  transition-duration: 0.3s;
  transform: scale(1.5);
  border-radius: 15px;
}

/*telefone*/
.containerThree:hover {
  background-color: purple;
  transition-duration: 0.3s;
  transform: scale(1.5);
  border-radius: 15px;
}

/* Whatsapp*/
.containerFour:hover {
  background-color: #25d366;
  transition-duration: 0.3s;
  transform: scale(1.5);
  border-radius: 15px;
}

.socialContainer:active {
  transform: scale(0.9);
  transition-duration: 0.3s;
}

.socialSvg {
  width: 17px;
}

.socialSvg path {
  fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.card:has(.socialContainer:hover) .socialContainer:not(:hover) {
  opacity: 0.1;
}


.Btn2 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: #00d757;
}

.sign {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign svg {
  width: 25px;
}

.sign svg path {
  fill: white;
}

.textW {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: 0.3s;
}

.Btn2:hover {
  width: 150px;
  border-radius: 40px;
  transition-duration: 0.3s;
}

.Btn2:hover .sign {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 10px;
}

.Btn2:hover .textW {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
  padding-right: 10px;
}

.Btn2:active {
  transform: translate(2px, 2px);
}

.textoQuemSomos {
  width: auto;
}


/* Cards carrossel */
@keyframes autoRun3d {
  from {
    transform: perspective(800px) rotateY(-360deg);
  }

  to {
    transform: perspective(800px) rotateY(0deg);
  }
}

@keyframes animateBrightness {
  10% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(0.1);
  }

  90% {
    filter: brightness(1);
  }
}

.card-3d {
  position: relative;
  width: 900px;
  height: 400px;
  transform-style: preserve-3d;
  transform: perspective(800vh);
  animation: autoRun3d 20s linear infinite;
  will-change: transform;
}

.card-3d div {
  position: absolute;
  width: 160px;
  height: 200px;
  /* background-color: rgb(199, 199, 199); */
  background-color: white;
  border: solid 2px lightgray;
  border-radius: 0.5rem;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  animation: animateBrightness 20s linear infinite;
  transition-duration: 200ms;
  will-change: transform, filter;
}

.card-3d img {
  border: white solid 2px;
  border-radius: 0.5rem;
  width: 90%;
  margin: auto;
  margin-top: 5%;
  background-color: white;
}

.card-3d:hover {
  animation-play-state: paused !important;
}

.card-3d:hover div {
  animation-play-state: paused !important;
}

.card-3d div:nth-child(1) {
  transform: translate(-50%, -50%) rotateY(0deg) translateZ(300px);
  animation-delay: -0s;
}

.card-3d div:nth-child(2) {
  transform: translate(-50%, -50%) rotateY(36deg) translateZ(300px);
  animation-delay: -2s;
}

.card-3d div:nth-child(3) {
  transform: translate(-50%, -50%) rotateY(72deg) translateZ(300px);
  animation-delay: -4s;
}

.card-3d div:nth-child(4) {
  transform: translate(-50%, -50%) rotateY(108deg) translateZ(300px);
  animation-delay: -6s;
}

.card-3d div:nth-child(5) {
  transform: translate(-50%, -50%) rotateY(144deg) translateZ(300px);
  animation-delay: -8s;
}

.card-3d div:nth-child(6) {
  transform: translate(-50%, -50%) rotateY(180deg) translateZ(300px);
  animation-delay: -10s;
}

.card-3d div:nth-child(7) {
  transform: translate(-50%, -50%) rotateY(216deg) translateZ(300px);
  animation-delay: -12s;
}

.card-3d div:nth-child(8) {
  transform: translate(-50%, -50%) rotateY(252deg) translateZ(300px);
  animation-delay: -14s;
}

.card-3d div:nth-child(9) {
  transform: translate(-50%, -50%) rotateY(288deg) translateZ(300px);
  animation-delay: -16s;
}

.card-3d div:nth-child(10) {
  transform: translate(-50%, -50%) rotateY(324deg) translateZ(300px);
  animation-delay: -18s;
}

#carrosselProdutos {
  display: none;
}


/* RESPONSIVIDADE */

@media (max-width: 1409px) {
  .card {
    position: relative;
    width: 35vh;
    /* Aproximadamente 300px */
    height: 25vh;
    /* Aproximadamente 200px */
    background: #cba34d;
    border-radius: 1.5vh;
    /* Aproximadamente 10px */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  }
}

@media (max-width: 1280px) {
  .second-canvas {
    display: none;
  }

  #quemSomos .OutfitTextoBranco {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: italic;
    font-size: 2vh;
    line-height: 3vh;
    color: white;
  }

  #quemSomos .OutfitTextoCinza {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 2vh;
    line-height: 3vh;
    color: #605d59;
  }

  #quemSomos .OutfitTextoDourado {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: italic;
    font-size: 2vh;
    line-height: 3vh;
    color: #cba34d;
  }

  #quemSomos .OutfitTituloBold {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: bold;
    font-size: 8vh;
    line-height: 8vh;
  }

  #missao .OutfitTituloBold {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: bold;
    font-size: 7vh;
    line-height: 7vh;
  }

  #missao .OutfitTextoBranco {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: italic;
    font-size: 2.5vh;
    line-height: 3vh;
    color: white;
  }

  .textoQuemSomos {
    max-width: 80vh;
  }
}

@media (max-width: 1025px) {
  .imagemMapa {
    width: 100vh;
    margin-top: 90px;
    margin-left: 50px;
  }

  #missao .OutfitTextoBranco {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: italic;
    font-size: 2.3vh;
    line-height: 3vh;
    color: white;
  }
}

@media (max-width: 920px) {
  .card {
    position: relative;
    width: 28.8vh;
    height: 20vh;
    background: #cba34d;
    border-radius: 1.5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  }
}

@media (max-width: 768px) {
  .dodeca-section {
    display: none;
  }

  .card {
    width: 26vh;
    height: 18vh;
  }

  #MissaoDivContainer {
    flex-direction: column;
  }

  #MissaoDivContainer .OutfitTituloBold {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: bold;
    font-size: 6vh;
    line-height: 6vh;
    padding: 0 0 0 0;
  }

  .svgLampada {
    display: none;
  }

  #missaoDiv,
  #visaoDiv,
  #valoresDiv {
    width: 95%;
    margin: 0;
    text-align: center;
    height: 25%;
  }

  #mvvDiv {
    margin-bottom: 0;
    margin-left: 0;
  }

  .imagemMapa {
    width: 50%;
    margin-top: 20px;
    align-self: center;
    margin: auto;
  }

  #quemSomos .OutfitTextoBranco {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: italic;
    font-size: 2vh;
    line-height: 3vh;
    color: white;
  }

  #quemSomos .OutfitTextoCinza {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 2vh;
    line-height: 3vh;
    color: #605d59;
  }

  #quemSomos .OutfitTextoDourado {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: italic;
    font-size: 2vh;
    line-height: 3vh;
    color: #cba34d;
  }

  #quemSomos .OutfitTituloBold {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: bold;
    font-size: 6vh;
    line-height: 6vh;
  }

  #containerQuemSomos {
    flex-direction: column;
    justify-items: center;
    padding: 10px;
    align-items: center;
    margin: auto;
  }

  .imagemDiv {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
  }
}

@media (max-width: 500px) {

  html,
  body {
    overflow-x: hidden;
  }

  .OutfitTitulo {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 5vh;
    line-height: 5vh;
  }

  .OutfitTituloBold {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: bold;
    font-size: 9vh;
    line-height: 9vh;
  }

  .OutfitTituloFino {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-size: 5vh;
    line-height: 5vh;
  }

  .OutfitTextoCinza {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 2.7vh;
    line-height: 2.5vh;
    color: #605d59;
  }

  .OutfitTextoBranco {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: italic;
    font-size: 3vh;
    line-height: 4vh;
    color: white;
  }

  .OutfitTextoDourado {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: italic;
    font-size: 3vh;
    line-height: 4vh;
    color: #cba34d;
  }

  .logo {
    width: 40%;
    margin-left: 0vh;
  }

  #home br {
    display: none;
  }

  #home button {
    margin-top: 2vh;
  }

  #menu-button {
    margin-right: 1.5vh;
  }

  .card {
    position: relative;
    width: 20vh;
    height: 15vh;
    background: #cba34d;
    border-radius: 1.5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  }

  .card__title {
    margin: 0;
    font-size: 2vh;
    color: #333;
    font-weight: 700;
  }

  .card__description {
    display: none;
  }

  #MissaoDivContainer {
    width: 95%;
    padding: 0 0 0 0;
  }

  #MissaoDivContainer .OutfitTextoBranco {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: italic;
    font-size: 2vh;
    line-height: 3vh;
    color: white;
  }

  #missaoDiv {
    width: 40vh;
    margin: auto;
    margin-bottom: 1vh;
    border: 4px solid white;
    border-radius: 7%;
  }

  #visaoDiv {
    width: 40vh;
    margin: auto;
    margin-bottom: 1vh;
    border: 4px solid #cba34d;
    border-radius: 7%;
  }

  #valoresDiv {
    width: 40vh;
    margin: auto;
    border: 4px solid #605d59;
    border-radius: 7%;
  }

  nav img {
    margin: 0 0 0 0;
  }

  nav div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 0 0 0;

  }

  #map {
    width: 95%;
    margin: auto;
  }

  .card-3d {
    position: relative;
    width: 450px;
    height: 200px;
    transform-style: preserve-3d;
    transform: perspective(800vh);
    animation: autoRun3d 20s linear infinite;
    will-change: transform;
    border: 2px solid red;
    height: 50vh;
  }

  .card-3d div {
    position: absolute;
    width: 130px;
    height: 150px;
    background-color: white;
    border: solid 2px lightgray;
    border-radius: 0.5rem;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    animation: animateBrightness 20s linear infinite;
    transition-duration: 200ms;
    will-change: transform, filter;
  }

  .card-3d img {
    border: white solid 2px;
    border-radius: 0.5rem;
    width: 90%;
    margin: auto;
    margin-top: 5%;
    background-color: white;
  }

  #produtos {
    height: 150vh;
    padding: 7vh 0;
  }

  #missao {
    height: 120vh;
    padding: 5vh 0;
  }

  #quemSomos {
    height: 125vh;
    padding: 2vh 2vh;
  }

  #home{
    height: 90vh
  }

  #estamosCrescendo{
    height: 110vh;
    padding: 2vh 2vh;
  }
  

  .card-3d {
    display: none;
  }

  #carrosselProdutos {
    display: flex;
  }

  footer p br {
    display: none;
  }

  #divFooter {
    display: block;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    margin-right: 0;
  }

  #divFooter div {
    margin-bottom: 20px;
  }

  footer {
    padding: 0 0 0 0;
    height: 40vh;
  }

  .imagemDiv {
    height: 30vh;
    margin-top: 6vh;
  }

  .imagemMapa{
    width: 100%;
  }


}

@media (max-width: 378px) {
  .card {
    width: 15vh;
    height: 12vh;
  }

}