* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Merriweather", serif;
}

.container {
  height: 100vh;
  width: 100%;
  background-image: url(../images/background.png);
  background-position: center;
  background-size: cover;
  padding-left: 5%;
  padding-right: 5%;
  position: relative;
}

.navbar {
  width: 100%;
  height: 15vh;
  margin: auto;
  display: flex;
  align-items: center;
  /* justify-content: space-between; elimina esta línea */
  justify-content: flex-start; /* que todo quede alineado a la izquierda */
  gap: 40px; /* espacio entre logo y nav */
  position: relative;
  padding-right: 20px; /* para que quede espacio a la derecha para íconos */
}

.logo {
  width: 160px;
  cursor: pointer;
}

.cart {
  width: 40px;
  cursor: pointer;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
}

.content {
  margin-left: 10%;
  margin-top: 5%;
}

.content .btn {
  display: inline-block;
  background: linear-gradient(45deg, #87adfe, #ff77cd);
  border-radius: 6px;
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
  box-shadow: 3px 8px 22px rgba(94, 28, 68, 0.15);
}

.content h1 {
  font-size: 60px;
  font-weight: 100;
  margin-top: 24px;
  margin-bottom: 15px;
  color: #232d60;
}

.content p {
  font-size: 20px;
  color: #6a7199;
}

.arrow-icons {
  margin-top: 40px;
  display: flex;
  gap: 25px;
}

.arrow-icons img {
  width: 40px;
}

.feature-img {
  height: 90%;
  position: absolute;
  bottom: 0;
  right: 160px;
  transition: all 0.3s ease;
}

.social-links {
  transform: rotate(-90deg);
  position: absolute;
  left: -80px;
  bottom: 180px;
}

.social-links a {
  text-decoration: none;
  color: #6a7199;
  padding-right: 20px;
  font-size: 14px;
  text-transform: uppercase;
}

/* ---------------------- SLIDE MENU ---------------------- */
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
  color: #232d60;
  z-index: 1001;
}

.slide-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  width: 250px;
  background: linear-gradient(180deg, #87adfe, #ff77cd);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: right 0.3s ease;
  z-index: 1000;
}

.slide-menu.open {
  right: 0;
}

.slide-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slide-menu li {
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

.slide-menu a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  display: block;
  width: 100%;
}

/* ---------------------- MEDIA QUERIES ---------------------- */
@media (max-width: 1240px) {
  .feature-img {
    height: 70%;
    right: 100px;
  }
}

@media (max-width: 992px) {
  nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .feature-img {
    height: 55%;
    right: 60px;
  }
}

@media (max-width: 768px) {
  .feature-img {
    height: 40%;
    right: 30px;
  }
}

@media (max-width: 576px) {
  .feature-img {
    height: 30%;
    right: 10px;
  }
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 10px; /* espacio entre cart y hamburguesa */
  margin-left: auto; /* empuja el contenedor a la derecha */
}
