    body {
      font-family: Arial, sans-serif;
      background-image: url(/imgs/bg.png);
      background-color: #f5f0de;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    header {
      width: 100%;
      background-color: #d5cabb;
      padding: 15px;
      color: #fff;
      text-align: center;
      font-weight: medium;
    }

    h2 {
      margin: 20px 0;
      color: #d5cabb;
      font-size: small;
    }

    .container {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .conta{
      display: flex;
    }
    .embreve{
      background-color: #d5cabb;
      opacity: 60%;
    }
    .backicon{
      margin-top: 18px;
      margin-right: 10px;
      width: 20px;
      height: 20px;
    }

    .card {
      width: 200px;
      height: 250px;
      perspective: 1000px;
      cursor: pointer;
    }

    .card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      text-align: center;
      transition: transform 0.8s;
      transform-style: preserve-3d;
    }

    .card.flipped .card-inner {
      transform: rotateY(180deg);
    }

    .card-front, .card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 15px;
      backface-visibility: hidden;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      font-size: 18px;
    }

    .card-front {
      background-size: cover;
      background-position: center;
    }

    .card-back {
      background-color: #d5cabb;
      transform: rotateY(180deg);
      font-size: 14px;
      color: #7e6960;
    }
    .logo-pq{
      size: 10px;
      width: 40x;
      height: 40px;
    }

    .maquiagem { background-image: url('/imgs/teste.jpg'); }
    .noivas { background-image: url('/imgs/services/noiva.jpg'); }
    .unhas { background-image: url('/imgs/services/manicure.jpg'); }
    .terapia { background-image: url('/imgs/services/terapia.jpg'); }
    .cormech { background-image: url('/imgs//services/mechas.jpg'); }
    .corte { background-image: url('/imgs/services/corte.jpg'); }
    .sobrdes { background-image: url('/imgs/services/sobra.jpg'); }

/* Animação inicial */
.card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

/* Keyframes */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delay em cascata */
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }
.card:nth-child(7) { animation-delay: 0.7s; }
.card:nth-child(8) { animation-delay: 0.8s; }
.card:nth-child(9) { animation-delay: 0.9s; }
.card:nth-child(10) { animation-delay: 1s; }
.card:nth-child(11) { animation-delay: 1.1s; }
.card:nth-child(12) { animation-delay: 1.2s; }

@media only screen and (max-width: 430px){
    body{
        font-family: 'Montserrat', sans-serif;
        background-image: url(/imgs/bg-mobile.png);

    }
    .logo-e{
        width: 30px;
        position: absolute;
        margin-left: 250px;
        margin-top: 20px;
    }
    .icon{
    position: absolute;
    width: 12px;
    margin-left: 60px;
    margin-top: 0px;
    }
}