@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  
}
 .top-banner {
      background-color: #263fd3;
      color: white;
      text-align: center;
      font-size: 14px;
      padding: 4px 0;
      z-index: 1;
      position: relative;
    }

/*---Formato para todo el encabezado---*/


    header {
    width: 100%;
    position: static;
    padding-top: 10px;
    background-color: #ffff;
    }
  .header-row {
      display: flex;
      align-items: center;
      padding: 5px 20px;
    }
     .header-top {
      justify-content: space-between;
    }

    .header-left,
    .header-right {
      display: flex;
      gap: 15px;
    }

    .header-left a,
    .header-right a {
      color: #0c257a;
      text-decoration: none;
      font-size: 18px;
    }

    .header-center {
     flex-grow: 1;
      display: flex;
      justify-content: center;
    }

    .logo {
    max-width: 200px;
    }

.nav-list {
    list-style-type: none;
    display: flex;
    gap: 1rem;
}

.nav-list li a {
    text-decoration: none;
    color: #1c1c1c;
    
}

.abrir-menu,
.cerrar-menu {
    display: none;
}

.mobile-menu {
  display: none;
}
.product-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  padding: 15px;
  border-radius: 8px;
  height: 100%;
  position: relative;
}

.badge-descuento {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #c00;
  color: white;
  font-size: 13px;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: bold;
}

.product-title {
  font-size: 15px;
  font-weight: 600;
  min-height: 48px;
}
.carrito-panel {
      position: fixed;
      top: 0;
      right: -100%;
      width: 400px;
      height: 100vh;
      background-color: #fff;
      box-shadow: -2px 0 5px rgba(0,0,0,0.2);
      transition: right 0.3s ease;
      z-index: 1050;
      overflow-y: auto;
      padding: 30px 20px;
    }

    .carrito-panel.visible {
      right: 0;
    }
.footer-bar {
  background-color: #111;
  color: white;
  padding: 10px;
  font-size: 14px;
  text-align: left;
  /*position: fixed;*/
  bottom: 0;
  width: 100%;

}

.carousel-item img {
  max-height: 500px;
  object-fit: cover;
}
/* clase boton*/
.boton {
  background-color: black;
  color: white;
  border: 1px solid black;
  padding: 12px 20px; /* Puedes ajustar para hacerlo más cuadrado */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.boton:hover {
  background-color: white;
  color: black;
  border: 1px solid black;
}
.disabled-link {
  pointer-events: none;
  background-color: #ccc !important;
  color: #666 !important;
  cursor: not-allowed;
  text-align: center;
  display: inline-block;
  padding: 0.5rem;
  text-decoration: none;
  border-color: #666;
}


@media screen and (max-width: 768px) {
    .hero{
         background: url('../img/slider1-movil.png') center/cover no-repeat;
    }
    .abrir-menu,
    .cerrar-menu {
        display: block;
        border: 0;
        font-size: 1.25rem;
        background-color: transparent;
        cursor: pointer;
        
        
    
    }

    .abrir-menu {
        color: #1c1c1c;
    }

    .cerrar-menu {
        color: #111336;
    }

    .nav {
        opacity: 0;
        visibility: hidden;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: fixed;
        top: 0;
        left: 0;
        width: 60%;
        bottom: 0;
        background-color: #f8f8f8;
        padding: 8px 0;
        box-shadow: 0 0 0 100vmax rgba(0, 0, 0, .5);
        border-bottom: 1px solid #ddd;
        z-index: 9999;
    }

    .nav.visible {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-list li a {
        color: #111010ec;
    }
    .logo{
       max-height: 120px;
    }
    .desktop-menu {
    display: none;
  }
  .mobile-menu {
  display: flex;
  flex-direction: column;
  background-color: #f8f8f8;
  padding: 10px 20px;
  border-top: 1px solid #ccc;
}
.mobile-menu a {
  text-decoration: none;
  color: #272728;
  padding: 2px 0;
  margin: 10px;
  font-size: 16px;
  border-bottom: 1px solid #ddd;
}
.head_movil{
   /* position: fixed;*/
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white; 
}
.texto_head a {
    display: block;
    margin-bottom: 0px;
    text-decoration: none;
    color: inherit;
    padding-left: 10px;
}
.carusel {
  max-height: 9000px;
  
}
}

