/* Tarjetas */
  #contenedor {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 10px;
    margin-top: 70px;
    /* espacio para el menú fijo */
  }

  .card {
    width: 170px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-family: sans-serif;
  }

  .card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
  }

  /* Botones de las tarjetas */
  .card button {
    margin-top: 8px;
    padding: 6px 10px;
    border: none;
    background: black;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease,
      background-color 0.25s ease;
    transform-origin: center;
  }

  .card button:hover {
    background-color: #333;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  }

  /* MENÚ FIJO */
  /* Estilos de la barra */
  #menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 10px 24px;
    box-sizing: border-box;
  }

  /* Contenedor horizontal */
  #menu .info {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    /* importante: centra verticalmente */
    justify-content: space-between;
    gap: 16px;
  }

  .logo {
    height: 90px;
    width: auto;
    flex-shrink: 0;
  }

  .acciones {
    display: flex;
    align-items: center;
    /* botones alineados verticalmente */
    gap: 8px;
  }

  /* Subtotal: ancho fijo, sin salto de línea y valor destacado */
  .subtotal {
    min-width: 150px;
    /* ancho fijo para evitar que mueva botones */
    text-align: right;
    white-space: nowrap;
    /* evita que el subtotal salte hacia abajo */
    font-size: 1rem;
    color: #444;
    /* texto "Subtotal:" */
  }

  /* Selector con más especificidad para evitar overrides */
  #subtotalDisplay {
    font-weight: 700;
    color: #222;
    /* gris muy oscuro */
    font-size: 1.1rem;
    font-variant-numeric: tabular-nums;
    display: inline-block;
    /* asegura comportamiento estable */
    line-height: 1;
    /* evita que crezca verticalmente */
  }

  /* BOTÓN del MENÚ */
  #menu button {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease,
      background-color 0.25s ease;
    transform-origin: center;
  }

  #menu button:hover {
    background-color: #ff6b5c;
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(231, 76, 60, 0.6);
  }

  /* Estilo del botón WhatsApp */
  .whatsapp-fijo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25D366;
    /* verde WhatsApp */
    color: white;
    padding: 12px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-family: sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
  }

  .whatsapp-fijo:hover {
    transform: scale(1.05);
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }

  /* Fin estilo del botón WhatsApp que va en el pie de página */
  /* modal */
  /* Fondo translúcido que cubre la pantalla */
  .modal-chat {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }

  /* Ventana flotante tipo chat */
  .modal-contenido {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    width: 320px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 15px 20px;
    animation: aparecer 0.2s ease-out;
    font-family: sans-serif;
  }

  /* Botón de cerrar (la X) */
  .cerrar {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 22px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
  }

  .cerrar:hover {
    color: red;
  }

  /* Botón de WhatsApp dentro del modal */
  .btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 15px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    margin-top: 10px;
    transition: transform 0.2s;
  }

  .btn-whatsapp:hover {
    transform: scale(1.05);
  }

  .btn-whatsapp img {
    width: 22px;
    height: 22px;
  }

  /* Animación de aparición */
  @keyframes aparecer {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* fin modal */