/** HEADER*/
header {
        position: relative;
        background-image: url('./assets/images/68ad791977819.png');
        /* Cambia la imagen si deseas */
        background-size: cover;
        background-position: center;
        color: white;
        padding: 40px 20px;
    }

    header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #040404 ;
        z-index: 0;
    }

    .nav-container {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 0 auto;
    }

    .logo {
        font-size: 4em;
        font-weight: bold;
        color: #e88915ff;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    nav {
        display: flex;
        gap: 20px;
    }

    nav a {
        color: white;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s, border-bottom 0.3s;
        border-bottom: 2px solid transparent;
        padding-bottom: 2px;
        font-size: 1.1em;
    }

    nav a:hover {
        color: #e88915ff;
        border-bottom: 2px solid #e88915ff;
    }

    .menu-toggle {
        display: none;
        font-size: 2em;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
    }

    @media (max-width: 768px) {
        nav {
            display: none;
            flex-direction: column;
            width: 100%;
            margin-top: 10px;
            background-color: rgba(0, 0, 0, 0.7);
            border-radius: 8px;
            padding: 10px 0;
        }

        nav a {
            padding: 10px 20px;
            border-top: 1px solid #004aad;
        }

        nav.show {
            display: flex;
        }

        .menu-toggle {
            display: block;
        }
    }


/**BODY*/
body {
    font-family: Arial, sans-serif;
    background: white;
    margin: 0;
}

h1 {
    text-align: center;
    color: #f15e28ff ;
}

.form-filtro {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

input[type=text],
select {
    padding: 10px;
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    background: #f15e28ff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #f15e28ff;
}

.catalogo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: rgb(245, 245, 245);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 15px;
    width: 250px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card h2 {
    color: #f15e28ff;
    margin: 10px 0;
}

.card p {
    padding: 0 10px;
}

.btn-pay {
    background: #004aad;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    margin: 10px 0;
    display: inline-block;
    transition: background 0.3s;
}

.btn-pay:hover {
    background: #003080;
}

 #whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 12px 16px;
    border-radius: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    z-index: 9999;
    transition: all 0.3s ease;
  }

  #whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.05);
  }

  #whatsapp-float img {
    width: 32px;
    height: 32px;
    margin-right: 12px;
  }

  .czm-button-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }

  .czm-button-content-title {
    font-weight: bold;
    font-size: 15px;
  }

  .czm-button-content-description {
    font-size: 13px;
    opacity: 0.9;
  }

  .czm-button-content-online-offline-text {
    font-size: 12px;
    color: #e0ffe0;
    font-style: italic;
  }
  
  
  
  .marcas-container img {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .marcas-container img:hover {
        transform: scale(1.1) rotate(1deg);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

  @media (max-width: 600px) {
    #whatsapp-float {
      padding: 10px;
      border-radius: 30px;
    }

    .czm-button-content-title {
      font-size: 14px;
    }

    .czm-button-content-description,
    .czm-button-content-online-offline-text {
      font-size: 12px;
    }

    #whatsapp-float img {
      width: 28px;
      height: 28px;
      margin-right: 8px;
    }
  }








