.main {
  display: flex;
  flex-direction: column;
}

.img-logo {
  width: 278px;
  height: 84px;
  object-fit: cover;
}

.contenedor-barra-menu-responsive {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%; /* estirado al 100% */
  display: flex;
  justify-content: space-around; /* o space-between, según tu diseño */
  flex-wrap: wrap; /* importante si hay posibilidad de overflow */
  padding: 15px 12px;
  box-sizing: border-box; /* importante para que padding no cause overflow */

  background: #fff;
  box-shadow: 0px -60px 100px -15px rgba(0, 0, 0, 0.25);
  border-radius: 40px 40px 0 0;
}

/* Overlay (fondo oscuro) */
.menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 999;
}

/* Drawer lateral */
.menu-drawer{
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 280px;
  background: #fff;
  transform: translateX(-100%);
  transition: transform .25s ease;
  z-index: 1000;
  padding: 16px;
  box-shadow: 10px 0 30px rgba(0,0,0,.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-drawer__header{
  display:flex;
  align-items:center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.menu-close{
  background: transparent;
  border: 0;
  font-size: 18px;
  cursor: pointer;
}

.menu-link{
  text-decoration:none;
  color:#111;
  padding: 10px 8px;
  border-radius: 10px;
}
.menu-link:hover{
  background: rgba(0,0,0,.06);
}

/* Estado abierto */
.menu-open .menu-drawer{
  transform: translateX(0);
}
.menu-open .menu-overlay{
  opacity: 1;
  pointer-events: auto;
}

/* Evita scroll cuando está abierto */
.menu-open{
  overflow: hidden;
}

.contenedor-item-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contenedor-menu-responsive-relleno {
  height: 60px;
}

.menu{
  display: flex;
  padding: 7px 10px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  background: #678F73;
}

.img-logo-vianelle{
  width: 100px;
  height: auto;
}

.img-logo-menu{
  width: 50px;
  height: auto;
}

.contenedor-logo-menu{
  background: none;
}
footer {
  display: flex;
  justify-content: center;
}

@media (min-width: 960px) {
  .main {
    justify-content: center;
    align-items: center;
    padding: 32px;
  }

  .card {
    width: 100%;
  }

  .contenedor-principal {
    max-width: 960px;
  }
}

@media (min-width: 960px) {
  .contenedor-nav {
    display: flex;
    position: fixed;
    width: 100%; /* estirado al 100% */
    display: flex;
    justify-content: space-around; /* o space-between, según tu diseño */
    flex-wrap: wrap; /* importante si hay posibilidad de overflow */
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #b2675e;
  }

  .contenedor-opciones {
    display: flex;

    align-items: center;
    gap: 50px;
  }

  .contenedor-barra-menu-responsive {
    display: none;
  }

  .contenedor-menu-responsive-relleno {
    display: none;
  }

  .contenedor-h69 {
    height: 69px;
  }

  footer {
    padding-top: 20px;
  }
}

@media (min-width: 480px) and (max-width: 719px) {
  .contenedor-nav {
    display: none;
  }

  .contenedor-opciones {
    display: none;
  }
}

@media (max-width: 959px) {
  .contenedor-nav {
    display: none;
  }

  .contenedor-opciones {
    display: none;
  }
}

@media (min-width: 320px) and (max-width: 479px) {
  body {
    min-width: 320px;
    max-width: 480px;
  }

  .main {
    width: 100%;
  }

  footer {
    display: none;
  }
}

.menu-desktop {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-direction: row;
  background: #678F73;
  padding: 20px 30px;
}

.links-menu-desktop {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  background: #678F73;
  align-self: stretch;
  padding: 10px 20px;
  color: white;
}

@media (min-width: 960px) {
  .menu {
    display: none;
  }
}

@media (max-width: 959px) {
  .menu-desktop {
    display: none;
  }
}
