    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
   header{

    height: 150px;
    width: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;


   }

   .logo{

    width: 200px;
    

    

   }

   nav{

  
    width: 100%;
    background-color: rgb(255, 255, 255);
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 25px;

   } 


   a.enlace-menu{

    text-decoration: none;
    color: black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bolder;

    }

    a.enlace-menu:hover{
        color: rgb(223, 89, 0);
        animation: myAnim 1s ease 0s 1 normal forwards;
    }

    @keyframes myAnim {
        0% {
            transform: scale(1);
        }
    
        100% {
            transform: scale(0.8);
        }
    }


    div.banner{

        background-image: url(/FOTOS/BANNER.jpg);
        width: 100%;
        height: 550px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;


    }

    .productos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 0 0px 50px 0;
      }
      
      
  
      .producto {
        background: white;
        border-radius: 12px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
        width: 260px;
        height: 280px;
        padding: 20px;
        text-align: center;
        transition: transform 0.2s;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }
  
      .producto:hover {
        transform: scale(1.03);
      }
  
      .producto img {
        width: 100%;
        height: 80%;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 10px;
      }
  
      .marca {
        font-weight: bold;
        font-size: 1.2rem;
        margin-bottom: 6px;
      }
  
      .precio {
        color: green;
        font-size: 1rem;
      }
  
      .ver-mas {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: #007BFF;
        font-weight: bold;
        text-decoration: none;
        height: 100%;
      }
  
     a{ 
        text-decoration: none;
     }
  
      /* Responsive */
      @media (max-width: 768px) {
        .producto {
          width: 45%;
        }
      }
  
      @media (max-width: 480px) {
        .producto {
          width: 100%;
        }
      }

      h3{
        padding: 30px 50px;
       
        color:rgb(141, 0, 0);
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-weight: bolder;
        font-size: 35px;
      }


      .bannerPromociones{
   
        width: 100%;
        height: 150px;
        display: flex;
        justify-content: center;
        align-items: center;
        
        
    }

    .img-banner{

        width: 98%;
        height: 150px;
    }

    footer {
        background-color: #222;
        color: #eee;
        padding: 20px 10px;
        margin-top: 40px;
        text-align: center;
      }
      
      .footer-container {
        max-width: 900px;
        margin: 0 auto;
      }
      
      .footer-links {
        margin-top: 10px;
      }
      
      .footer-links a {
        color: #aaa;
        text-decoration: none;
        margin: 0 10px;
        font-size: 0.95rem;
        transition: color 0.2s;
      }
      
      .footer-links a:hover {
        color: #fff;
      }