body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    background: #f9ced527;
    color: #333;
    text-align: center;
  }
  @font-face {
    font-family: 'Baloo';
    src: url('../fonts/Baloo-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  header {
    background: #b9ccb0;
    padding: 2rem 1rem;
  }
  
  .productos h2 {
    margin-top: 2rem;
    font-size: 2rem;
    font-family: 'Baloo', sans-serif;
    color:#335F5D ;
  }
  .pedido h2 {
    margin-top: 2rem;
    font-size: 2rem;
    font-family: 'Baloo', sans-serif;
    color:#335F5D ;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .card {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .card img {
    width: 100%;
    border-radius: 8px;
  }
  
  footer {
    background: #b9ccb0;
    padding: 1rem;
    margin-top: 2rem;
  }
  .card {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
  }
  .boton {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    color: #fff;
    background-color: #25d366;
  }
  
  .boton-secundario {
    background-color:#335F5D ;
    color: #fff;
    border: none;
  }
  
  .boton-secundario:hover {
    background-color: #b9ccb0;
    transform: scale(1.05);
  }
  @keyframes cookieCrunch {
    0% { transform: scale(1); }
    20% { transform: scale(1.05) rotate(-1deg); }
    40% { transform: scale(0.95) rotate(1deg); }
    60% { transform: scale(1.02) rotate(-1deg); }
    80% { transform: scale(0.98); }
    100% { transform: scale(1); }
  }
  
  .boton-crunch {
    animation: cookieCrunch 0.4s ease-in-out;
  }
  .boton-secundario:hover {
    background-color: #b9ccb0;
    animation: cookieCrunch 0.4s ease-in-out;
  }
  .boton-secundario {
    cursor: grab; /* puedes usar 'pointer', 'grab', o... */
  }
  
  .boton-secundario:hover {
    cursor: url('https://em-content.zobj.net/source/apple/391/cookie_1f36a.png'), auto;
  }
  .boton {
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  .boton-secundario:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  }
  .swiper {
    width: 100%;
    height: 400px;
  }
  
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }   
  
  .card:nth-child(2) { animation-delay: 0.1s; }
  .card:nth-child(3) { animation-delay: 0.2s; }
  .card:nth-child(4) { animation-delay: 0.3s; }

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #335f5d;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: #8B4513;
  }
  .logo img{
    max-width: 100%;
    width: 100px;
  }

  nav {
    display: flex;
    gap: 1rem;
  }

  nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
  }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
  }
  .boton-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: white;
    font-weight: bold;
    padding: 12px 34px;
    font-size: 18px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
  }
  
  .boton-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  }
  
  .boton-whatsapp::after {
    content: "👉";
    position: absolute;
    right:10px;
    animation: moverDedito 1s infinite;
  }
  
  @keyframes moverDedito {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
  }
  

  @media (max-width: 768px) {
    nav {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      right: 0;
      background-color: #335F5D;
      padding: 1rem;
      width: 100%;
    }

    nav.active {
      display: flex;
    }

    .menu-toggle {
      display: block;
      color:#fff;
    }
  }
  
  @keyframes fadeUp {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
    