/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*margin: 0;
    background: #0097d7;
    color: white;
    font-family: 'Open Sans', sans-serif;*/
    
    
    width: 100%;
    height: 100%;
    color: #fff;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    background: #0097d7;
    font-weight: 400;
}


.menu {
  padding: 40px 20px;
}

.menu-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.menu-col h2 {
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.menu-section {
  margin-bottom: 30px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.section-header h3 {
  font-size: 16px;
  letter-spacing: 1px;
}

.section-header span {
  font-size: 13px;
  opacity: 0.8;
}

.item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.name {
  font-size: 15px;
  margin: 0;
}

/* Nombre del producto en una línea */
.item .nameprod {
  font-size: 15px; 
  
  display: inline-block;
  margin-right: 6px; /* Espacio entre nombre y gramaje */
}

/* Gramaje con tamaño diferente */
.item .gramprod {
  font-size: 12px; /* Tamaño diferente para el gramaje */
  opacity: 0.7;
  display: inline-block;
}

.desc {
  font-size: 12px;
  opacity: 0.7;
  margin: 2px 0 0;
}

.price {
  font-size: 14px;
  white-space: nowrap;
}

/* ðŸ“± RESPONSIVE */
@media (max-width: 768px) {
  .menu-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .menu-col h2 {
    margin-top: 20px;
  }
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
}

.header_int {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 60px;
}

/* DESKTOP MENU */
.desktop-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.desktop-menu a {
    text-decoration: none;
    color: black;
    font-weight: 600;
}

/* MOBILE BUTTON */
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

/* OVERLAY */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background: white;
    padding: 30px;
    transition: 0.3s ease;
    z-index: 1001;
}

.mobile-menu ul {
    list-style: none;
    margin-top: 40px;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu a {
    text-decoration: none;
    font-size: 18px;
    color: black;
}

/* CLOSE BUTTON */
.close-menu {
    background: none;
    border: none;
    font-size: 28px;
    position: absolute;
    top: 15px;
    right: 15px;
}

/* ACTIVE STATES */
.mobile-menu.active {
    right: 0;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* SLIDER *
.slider {
    width: 100%;
}

.slide {
    height: 60vh;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}*/


/* RESET Ãºtil para evitar espacios raros */
body, h1, h2, h3, p {
    margin: 0;
}

/* HEADER sin margen inferior */
.header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
}

/* SLIDER FIX */
.slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
}

/* Quita scrollbar (opcional) */
.slider::-webkit-scrollbar {
    display: none;
}

/* Cada slide ocupa toda la pantalla */
.slide {
    flex: 0 0 100%;
    height: 60vh;
    scroll-snap-align: start;
    position: relative;
}

/* Imagen bien contenida */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* RESPONSIVE */
@media (max-width: 768px) {

    .desktop-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

.footer {
    background: #0097d7;
    color: white;
    /*font-family: 'Open Sans', sans-serif;*/
}

/* TOP */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    gap: 20px;
}

.footer-texto {
    max-width: 600px;
    line-height: 1.6;
}

.footer-pez img {
    max-width: 120px;
}

/* INFO */
.footer-info {
    display: flex;
    justify-content: space-between;
    padding: 40px 60px;
    gap: 40px;
}

.footer-info .col {
    flex: 1;
    font-size: 14px;
}

.footer-info h4 {
    margin: 15px 0 10px;
    font-weight: 700;
}

.footer-info a {
    color: white;
    text-decoration: none;
}

/* FACTURACIÃ“N */
.facturacion {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.3);
    padding: 15px 60px;
    font-size: 13px;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

/*  MOBILE */
@media (max-width: 768px) {

    .footer-top {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .footer-pez img {
        margin-top: 20px;
    }

    .footer-info {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .footer-info .col {
        margin-bottom: 25px;
    }

    .facturacion {
        margin-top: 10px;
    }

    .footer-bottom {
        text-align: center;
        padding: 15px 20px;
    }
}

.footer a:hover {
    text-decoration: underline;
    opacity: 0.8;
}