:root {

  --color-gray: #9CA3AF;
  --color-black: #1F2937;
  --card-size: 23rem;
}



.section_home{
  position: relative;
  width: 100%;
  height: 725px;
  display: flex;
  flex-direction: row-reverse;
  padding-top: 70px;
  gap: 150px;
  background-color: #5c3620;
  
}

.img_home{
  width: 40%;
  align-items: center;
  justify-content: center;
  text-align: center;

}

.img_home img{
  width: 90%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 1px;
  padding-left: 84px;
}

.logo_hometc img{
  width: 70%;
  height: 30%;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 1px;
  padding-left: 84px;
}

.app{
  display: flex;
  flex-direction: column;
  width: 40%;
  justify-items: center;
  text-align: center;
  position: relative;
  align-items: center;
}

.labelApp{
  position: relative;
  align-items: center;
  padding-top: 80px;
  width: 50%;
  height: 15%;
  color: white;
  left: 30px;
  font-size: 22px;
  margin: 0;

}

.labelApp h1{
  padding-top: 90px;
}


.card-container button{
  width: 800px;
}


.carouselHome {
  position: relative;
  width: var(--card-size);
  height: var(--card-size);
  perspective: 500px;
  transform-style: preserve-3d;
  align-items: center;
  justify-content: center;
  justify-items: center;
  padding-top: 40px;
}

.card-container {
  position: absolute;
  width: 100%;
  height: 100%;
  transform:
    rotateY(calc(var(--offset) * 50deg))
    scaleY(calc(1 + var(--abs-offset) * -0.4))
    translateZ(calc(var(--abs-offset) * -30rem))
    translateX(calc(var(--direction) * -5rem));
  filter: blur(calc(var(--abs-offset) * 1rem));
  transition: all 0.3s ease-out;
}



.card {
  width: 100%;
  height: 75%;
  margin-top: 70px;
  padding: 2rem;
  background-color: hsl(30deg, 30%, calc(90% - var(--abs-offset) * 50%));
  border-radius: 1rem;
  color: var(--color-gray);
  text-align: justify;
  transition: all 0.3s ease-out;
  transform: scale(1);
  padding-bottom: 12px;
}

.card:hover {
  transform: scale(1.05);
  z-index: 10;
}

.card h2 {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 0.7em;
  color: var(--color-black);
}

.card p,
.card h2 {
  transition: all 0.3s ease-out;
  opacity: var(--active);
}

.nav {
  color: white;
  font-size: 5rem;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 65%;
  z-index: 2;
  cursor: pointer;
  user-select: none;
  background: unset;
  border: unset;
}

.nav.left {
  transform: translateX(-100%) translateY(-50%);
  left: -9px;
}

.nav.right {
  left: 385px;
  transform: translateX(100%) translateY(-50%);
}


.title2 h2 {
  color: #C89663;
  background: -webkit-linear-gradient(right, white, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Savate", sans-serif;    
  font-size: 80px;
  font-style: normal;
  line-height: 50px;
  text-align: center;
  margin-bottom: 80px;
}







/* MOBILE */
@media screen and (max-width: 1276px) {

  :root {

    --color-gray: #9CA3AF;
    --color-black: #1F2937;
    --card-size: 16rem;
  }


  .carouselHome {
    margin-top: -40px;
    }

  .section_home{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background-image: linear-gradient(to right, #58331c, #58311d);
    padding-bottom: 5px;
    
  }

  .img_home{
    width: 100%;
    height: 60%;
    align-items: center;
    justify-content: center;
    text-align: center;
  
  }
  
  .img_home img{
    width: 100%;
    height: 700px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 20px;
    padding-left: 10px;

  }

  .logo_hometc img{
    width: 105%;
    height: 110%;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -68px;
    padding-left: 1px;
  }


  
  .app{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-items: center;
    text-align: center;
    position: relative;
    align-items: center;

    
  }
  
  .labelApp{
    position: relative;
    align-items: center;
    padding-top: 0;
    width: 100%;
    height: 100%;
    color: white;
    left: 0;
    font-size: 22px;
    margin: 0;
    display: none;
  
  }

  
  
  
  .card-container button{
    width: 800px;
  }
  
  
  .carouselHome {
    position: relative;
    width: var(--card-size);
    height: var(--card-size);
    perspective: 500px;
    transform-style: preserve-3d;
    align-items: center;
    justify-content: center;
    justify-items: center;
    padding-top: 10px;
  }
  
  .card-container {
    position: absolute;
    width: 100%;
    height: 100%;
    transform:
      rotateY(calc(var(--offset) * 50deg))
      scaleY(calc(1 + var(--abs-offset) * -0.4))
      translateZ(calc(var(--abs-offset) * -30rem))
      translateX(calc(var(--direction) * -5rem));
    filter: blur(calc(var(--abs-offset) * 1rem));
    transition: all 0.3s ease-out;
  }
  

  
  .card {
    width: 100%;
    height: 100%;
    margin-top: 0;
    padding: 2rem;
    background-color: hsl(30deg, 30%, calc(90% - var(--abs-offset) * 50%));
    border-radius: 1rem;
    color: var(--color-gray);
    text-align: justify;
    transition: all 0.3s ease-out;
    transform: scale(1);
    padding-bottom: 2px;
    margin-left: -34px;
  }
  
  .card:hover {
    transform: scale(1.05);
    z-index: 10;
  }
  
  .card h2 {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 0.7em;
    color: var(--color-black);
  }

  .card p {
    font-size: 12px;
  }
  
  
  .card p,
  .card h2 {
    transition: all 0.3s ease-out;
    opacity: var(--active);
  }
  
  .nav {
    color: white;
    font-size: 5rem;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 45%;
    z-index: 2;
    cursor: pointer;
    user-select: none;
    background: unset;
    border: unset;
  }
  
  .nav.left {
    transform: translateX(-100%) translateY(-50%);
    margin-left: -24px;
  }
  
  .nav.right {
    transform: translateX(100%) translateY(-50%);
    left: 230px;
  }


  .title2 h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 30px;
  margin-top: -70px;
  font-family: "Bebas Neue", sans-serif;
  padding-bottom: 13px;
  

}

  .title2 h3 {
  font-size: 40px;
  line-height: 40px;
  font-weight: 500;
  margin-bottom: 30px;
  margin-top: -100px;
  font-family: "Bebas Neue", sans-serif;
  padding: 10px;
  text-align: center;
  color: white;
  padding-top: 30px;




}




}



@media screen and (max-width: 413px) {
  .card {
    width: 85%;
    height: 80%;
    padding: 2rem;
    background-color: hsl(30deg, 30%, calc(90% - var(--abs-offset) * 50%));
    border-radius: 1rem;
    color: var(--color-gray);
    text-align: justify;
    transition: all 0.3s ease-out;
    transform: scale(1);
    padding-bottom: 1px;
    margin-left: -15px;
  }
  

  .card h2 {
    font-size: 16px;
  }

  .card p {
    font-size: 12px;
  }


  .nav {
    color: white;
    font-size: 3rem;
    top: 45%;
  }

  .nav.left {
    transform: translateX(-100%) translateY(-50%);
    margin-left: -8px;
  }

  .nav.right {
    transform: translateX(100%) translateY(-50%);
    left: 230px;
  }



}