 body {
            margin: 0;
            font-family: Arial, sans-serif;
           background: linear-gradient(66deg, #0a0a0a 0%, #0e0d0d 20%, #201c1c 40%, #0b0909 60%, #000000 80%, #1a0d0d 100%);
            background-attachment: fixed;
            color: #dad2c6 !important;
            text-align: center;
        }
        .hero {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
        }
.logo{
             
    top: -40px;
    position: relative;
             background: url("../img/banner.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;

    height: 60vw;
    text-align: left;
         }
        .logo img {
            width: 30%;
        }
        h1 {
            margin: 10px 0;
            font-size: 2.5em;
        }
        p.slogan {
            font-size: 1.2em;
            margin-bottom: 30px;
        }
        .contact {
            margin: 20px 0;
            font-size: 1.1em;
        }
        .qr {
            margin: 20px 0;
        }
        .social {
            margin-top: 30px;
            font-size: 0.9em;
        }
  #burgerCarousel .carousel-inner {
    display: flex;
  }
  #burgerCarousel img {
    object-fit: cover;
    min-height:200px;
  }
         
         .bg-special{
             background: #160601 !important;
         }
         
         
         footer{
            background: linear-gradient(
  66deg,
  #1f1b1b 0%,
  #000 20%,
  #000 40%,
  #000 60%,
  #000 80%,
  #1f1b1b 100%
);
         }

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b954;
}


.flip-card {
  perspective: 1000px;
    margin-bottom: 20px;
    cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* mantiene cuadrado */
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}

.flip-card .title{
    margin-top:-30px !important;
}

.flip-card .content{
    font-size:0.8em !important;
}

.flip-card-back {
  background: #160601;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
    flex-direction: column;
}

.card{
    position: relative;
}

.card .row, .card .col-auto{
    position: unset;
}

.card .card-price{
    
    position: absolute;
    bottom: 0;
    right: 20px;
    font-size: 2em;
    padding: 0;
    margin: 0;
}

.pan-container {
    /* width: 400px; */
    height: 346px;
    overflow: hidden;
    overflow: hidden;
    position: relative;
}

.pan-container img {
  width: 600px;       /* más grande que el contenedor */
  height: auto;
  animation: pan 15s linear infinite alternate;
}

@keyframes pan {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200px); /* desplaza a la izquierda */
  }
}
