@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: inherit;
}

body{
	min-height: 100vh;
	box-sizing: border-box;
}
  h1{
  text-align: center;
  padding: 10px;
  color: #000000;
  background-color: #fff;
  letter-spacing: 10px;
  font-size: 30px;
  }
  h3{
    font-size: 20px;
  }
  
  :root {
    --primary-color: #fcfcfc;
    --background-color: #000000;
    --second-color: #000000;
  
  }
  
  html {
    font-size: 62.5%;
    font-family: 'Poppins', sans-serif;
  }
  
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .header{
    background-color: var(--second-color);
    padding: 0px 0%;
    justify-content: space-between;
    z-index: 1000;
    display: flex;
    padding-top: 15px;
    text-align: center;
  }
  .logo{
    display: flex;
  }

  .container-hero {
    background-color: var(--segundo-color);
  }
  .menu{
    width: 45px;
    height: 45px;
  }
  
  *
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
  }
.container-user {
	display: flex;
	gap: 1rem;
	cursor: pointer;
}

.container-user .fa-user {
	font-size: 2rem;
	color: var(--primary-color);
	padding-right: 1.5rem;
	border-right: 1px solid #ffffff;
}

.container-user .fa-cart-shopping{
	font-size: 2rem;
	color: var(--primary-color);

}

.content-shopping-cart {
	display:flex;
	flex-direction: column;
  padding-right: 30px;
  font-size: 12px;
}

  .navigation {
      order: -1; /* Coloca el menú a la izquierda */
  }
  
  .navigation ul{
    list-style: none;
    padding-bottom: 0;
  }
  
  .header .navigation ul li{
    position: relative;
    display: inline-block; /* Cambiado a inline-block */
  }
  
  .header .navigation ul li a{
    font-size: 16px;
    font-weight:450;
    color: var(--primary-color);
    text-decoration: none;
    padding: 15px;
    display: block;
    transition: all .2s ease;
    letter-spacing: 4px;
    margin: 0;
  }
  .header .navigation ul li:hover a {
    padding: 15px;
    background-color: var(--primary-color); /* Cambiado para aplicar el color de fondo al enlace */
    color: var(--segundo-color)/* Cambiado para cambiar el color del texto */
    }
    
    .header .navigation ul li:hover {
    background-color: var(--tercer-color); /* Cambiado para aplicar el color de fondo al elemento li */
    color: var(--second-color); /* Cambiado para cambiar el color del texto */
    }
  
  .header .navigation ul li a:hover > ul{
    background-color: #fff;
    display: block; /* Cambiado de 'initial' a 'block' */
    color: var(--segundo-color);
    padding: 15px;
  }
  
  .header .navigation ul li ul{
    position: absolute;
    top: 100%; /* Ajustado a 100% */
    left: 0;
    background-color: var(--primary-color);
    display: none;
    padding: 0; /* Ajustado el padding */
  }
  .header .navigation ul li ul li {
    position: relative; /* Cambiado de absolute a relative */
    width: 100%;
  }
  
  .header .navigation ul li ul li a{
    font-size: 15px;
    text-transform: capitalize;
    color: #743737;
  }
  
  .header .navigation ul li ul li a:hover{
    color: var(--primary-color);
    background-color: var(--second-color);
  }
  .header .navigation ul li ul li ul{
    position: absolute;
    top: 0;
    right: 300px;
  }
  
  .header .navigation ul li ul li{
    margin: 0;
    width: 100%;
    letter-spacing: 4px;
  }
  
  .header .navigation ul li:hover > ul{
    display: initial
  }
  
  #toggle,
  .header label{
    display: none;
    cursor: pointer;
  }
  
  .menu{
    width: 45px;
    height: 45px;
    position: fixed;
    top: 0;
    z-index: 999;
  }
  
  .lista{
    font-size: 18px;
  }

  main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  
  }
  
  section {
    margin-bottom: 30px;
  }
  
  section h2 {
    color: #000000;
    text-align: center;
    font-size: 24px;
  }
  
  section p {
    text-align: justify;
    color: #000000;
    font-size: 18px;
  }
 
  
  ul {
    list-style-type: disc;
    margin-left: 20px;
    font-size: 18px;
  }
  
  footer p {
    text-align: center;
    margin: 0;
    color: #000000;
    padding: 20px;
    background-color: #fcfcfc;
  }
  
  /* ********************************** */
/*               FOOTER               */
/* ********************************** */

.footer {
	padding-top: 250x;
	background-color: var(--background-color);
}

.container-footer {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	padding: 3rem;
}

.menu-footer {
	display: grid;
	grid-template-columns: repeat(2, 1fr) 20rem;
	gap: 10rem;
	justify-items: center;
}

.title-footer {
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
  background-color: #000;
  color: #fff;
}

.contact-info,
.information,
.my-account,
.newsletter {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-info ul,
.information ul,
.my-account ul {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-info ul li,
.information ul li,
.my-account ul li {
	list-style: none;
	color: #ffffff;
	font-size: 15px;
	font-weight: lighter;
}

.information ul li a,
.my-account ul li a {
	text-decoration: none;
	color: #ffffff;
	font-weight: bolder;
}

.information ul li a:hover,
.my-account ul li a:hover {
	color: #eb7a10;
}

.social-icons {
	display: flex;
	gap: 1.5rem;
	text-decoration: none;
	padding-left: 45px;
}

.social-icons span {
	border-radius: 50%;
	width: 3rem;
	height: 3rem;

	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.social-icons span i {
	color: #fff;
	font-size: 1.2rem;
	text-decoration: none;
}

.link{
	text-decoration: none;
}

.facebook {
	background-color: #3b5998;
}

.twitter {
	background-color: #00acee;
}

.youtube {
	background-color: #c4302b;
}

.pinterest {
	background-color: #c8232c;
}

.instagram {
	background: linear-gradient(
		#405de6,
		#833ab4,
		#c13584,
		#e1306c,
		#fd1d1d,
		#f56040,
		#fcaf45
	);
}

.whatsapp{
	background-color: #25D366;
}

.content p {
	font-size: 1.4rem;
	color: #000000;
	font-weight: 300;
}

.content input {
	outline: none;
	background: none;
	border: none;
	border-bottom: 2px solid #d2b495;
	cursor: pointer;
	padding: 0.5rem 0 1.2rem;
	color: var(--dark-color);
	display: block;
	margin-bottom: 3rem;
	margin-top: 2rem;
	width: 100%;
	font-family: inherit;
}

.content input::-webkit-input-placeholder {
	color: #eee;
}

.content button {
	border: none;
	background-color: #000;
	color: #fff;
	text-transform: uppercase;
	padding: 1rem 3rem;
	border-radius: 2rem;
	font-size: 1.4rem;
	font-family: inherit;
	cursor: pointer;
	font-weight: 600;
}

.content button:hover {
	background-color: var(--background-color);
	color: var(--primary-color);
}

.copyright {
	display: flex;
	justify-content: space-between;
	padding-top: 2rem;

	border-top: 1px solid #ffffff;
}

.copyright p {
	font-weight: 400;
	font-size: 1.6rem;
  background-color: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .menu-footer {
      display: flex;
      flex-direction: column;
      gap: 20px; /* Espacio entre los elementos internos */
  }

  .contact-info,
  .information {
      text-align: center;
  }

  .social-icons {
      display: flex;
      justify-content: center;
      gap: 10px; /* Espacio entre los íconos sociales */
  }

  .information ul {
      padding-left: 0;
  }

  .copyright {
      text-align: center;
      margin-top: 20px; /* Espacio superior */
  }
}
