body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .menu-lateral {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #f4f4f4;
    padding: 1em;
    transition: left 0.3s ease;
    z-index: 1000;
  }
  
  .menu-lateral ul {
    list-style: none;
    padding: 0;
  }
  
  .menu-lateral ul li {
    margin: 1em 0;
  }
  
  .menu-lateral ul li a {
    text-decoration: none;
    color: white;
  }
  
  .menu-lateral.show {
    left: 0;
  }
  
  .contenido {
    padding: 2em;
    margin-top: 60px;
  }
  .logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
  }
  
  .bienvenida {
    position: relative;
    width: 100%;
    height: 700px; /* o el alto que quieras */
    overflow: hidden;
  }
  
  .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }


  header {
    max-width: 60%;
    margin: 0 auto;
    padding: 10px 20px;
    box-sizing: border-box;
  }


  main.contenido {
    max-width: 60%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
  }
  
  @media (max-width: 992px) {
    main.contenido {
      max-width: 100%;
      padding: 10px;
    }
  }
  
  /* El menú lateral siempre en el borde izquierdo */
  .menu-lateral {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    background-color: #222;
    color: white;
    padding: 1rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  .menu-lateral.show {
    transform: translateX(0);
  }
  
  .menu-lateral ul {
    list-style: none;
    padding: 0;
  }
  
  .menu-lateral ul li {
    margin: 1em 0;
  }
  
  .menu-lateral a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
  }
  
  .menu-lateral a:hover {
    text-decoration: underline;
  }

  main.contenido > section {
    margin-bottom: 40px;        /* centra horizontalmente */
  }


  /*TARJETA PRODUCTOS*/
  .card-img-top {
    height: 400px;
    object-fit: cover;
  }


  /* GALERIA */

  /*SWIPPER*/
  .galeria-slider .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  /*WHATSAPP ICON*/
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
  }
  
  .whatsapp-float img {
    width: 35px;
    height: 35px;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
  }


  /*BTN Styles*/

  .btn-primary {
    background-color: #80251F; /* Color nuevo (ej: naranja) */
    border-color: #d35400;
  }
  
  .btn-primary:hover {
    background-color: #DB0000; /* Color al pasar el cursor */
    border-color: #e67e22;
  }

  /*HEADER SCROLL*/

  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white; /* o el color que uses */
    z-index: 999;
    padding: 10px 20px;
    max-width: 60%;
    margin: 0 auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  main.contenido {
    margin-top: 80px; /* para que no se solape con el header fijo */
  }
  section {
    scroll-margin-top: 100px; /* o la altura exacta de tu header */
  }
  html {
    scroll-behavior: smooth;
  }