*{
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  flex-direction: column;
  display: flex;
  justify-content: flex-start;
  min-height: 100vh;

  color: #efefef;
  text-align: center;
  padding: 4em 0;
  background-color: #212123;
  font-family: Arial, Helvetica, sans-serif;
  
}
nav{
    position: fixed;
    width: 100%;
    padding: 0;
    top: 0;
 }
.a{
    display: flex;
    height: 60px;
    background-color: #201c1b;
    color: #09aba0;
    padding:10px;
    width: auto;
    
}
.c{
    padding-top: 15px;
    align-items: center;
    margin-left: 25%;
    font-size: 30px;
}
.d {
    display: flex;
    background-color: #09aba0;
    width: auto;
    justify-content: center;
    padding: 5px;
    gap: 35px; 
   
}

.d ul li a{
    color: #201c1b;
    text-decoration: none;
    
}
ul{
    display: flex;
    flex-direction: row;
    list-style: none;
}
.d ul{
    gap: 30px;
  }
  .d ul a:hover{
    color: white;
    transform: scale(1.1);
  }

.conteudo__geral {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  
  flex-grow: 1;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1d1e22;
}

.i {
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-carrossel {
  --widthItem: 300px; /* Increased width */
  --heightItem: 200px; /* Increased height */
  width: var(--widthItem);
  height: var(--heightItem);
  perspective: 1000px;
}


.carrossel {
  --rotatey: 0;
  font-size: 4rem;
  position: relative;
  transform: rotatey(var(--rotatey));
  transform-style: preserve-3d;
  user-select: none;
  cursor: grab;
}

.carrossel-item {
  opacity: 0.5;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: opacity 0.5s;
}

.carrossel-item:hover {
  opacity: 1;
}

.carrossel,
.carrossel-item {
  width: 100%;
  height: 100%;
}
/* background: linear-gradient(-229deg, #642B73, #C6426E); */

.carrossel-item:nth-child(1) {
  --rotatey: 0;
  transform: rotatey(var(--rotatey)) translatez(var(--tz));
  background: linear-gradient(-229deg, #fbd52d, #ef3a7b);
}

.carrossel-item:nth-child(2) {
  --rotatey: 0;
  transform: rotatey(var(--rotatey)) translatez(var(--tz));
  background: linear-gradient(-229deg, #ff70af, #5fa8f5);
}

.carrossel-item:nth-child(3) {
  --rotatey: 0;
  transform: rotatey(var(--rotatey)) translatez(var(--tz));
  background: linear-gradient(-229deg, #0cebeb, #29ffc6);
}
.carrossel-item:nth-child(4) {
  --rotatey: 0;
  transform: rotatey(var(--rotatey)) translatez(var(--tz));
  background: linear-gradient(-229deg, #88f7f9, #048fff);
}

.carrossel-item:nth-child(5) {
  --rotate: 0;
  transform: rotatey(var(--rotatey)) translatez(var(--tz));
  background: linear-gradient(-229deg, #0093e9, #80d0c7);
}

.carrossel-item:nth-child(6) {
  --rotatey: 0;
  transform: rotatey(var(--rotatey)) translatez(var(--tz));
  background: linear-gradient(-229deg, #cf91ff, #5782f5);
}
footer{
  margin-top: 0;
  text-align: center;
  
}


@media screen and (min-width: 576px) {
  .container-carrossel {
    --widthItem: 450px;
    --heightItem: 300px;
  }

}
.aaaa{
  font-size: 35px;
}
.mobile-design {
  display: none; /* Hide on PC */
}
@media (max-width:500px){
  .a{
      width:500px;
      height:60px;
      
  }
  footer{
    margin-top: auto;
    text-align: center;
    
  }
  .b{
      height:40px;
      
  }
  .aaaa{
      font-size: 20px;
  }
  .d{
    padding: 5px;
    font-size: 15px;
  }
  .a{
    font-size: 10px;
    padding: 5px;
  }
  b{
    margin-left: 0%;
  }
  .c{
      font-size: 15px;
      margin-left: 20px;
      margin-right: 0px;
      margin-bottom: 20px;
      flex-grow: inherit;
  }
  .conteudo__geral {
    display: none;
  }
  .mobile-design {
    display: block; /* Show on mobile */
    margin-top: 50px;
}
/* Mobile-specific design */
.mobile-gallery {
    display: grid;
    gap: 10px;
    padding: 10px;
    
}
.mobile-gallery .gallery-item {
    width: 100%;
}
.mobile-gallery .gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
}
