/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=SUSE:wght@100..800&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {

  /*========== Colors ==========*/
  --hue: 174;
  --sat: 63%;
  --first-color: hsl(var(--hue), var(--sat), 40%);
  --first-color-alt: hsl(var(--hue), var(--sat), 36%);
  --title-color: hsl(var(--hue), 12%, 15%);
  --text-color: hsl(var(--hue), 8%, 35%);
  --body-color: hsl(var(--hue), 100%, 99%);
  --container-color: #FFF;

  /*========== Font and typography ==========*/
  --h1-font-size: 1.5rem;
  --normal-font-size: .938rem;
  --tiny-font-size: .825rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --h1-font-size: 2.25rem;
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body{
       font-family: "SUSE", sans-serif;
       font-weight:bold;
}

li{
       font-family: "SUSE", sans-serif;
}
html {
  scroll-behavior: smooth;
}


ul {
  list-style: none;
}

.saldo2 {
    display: flex;
    flex-direction: column; /* Coloca el ícono arriba y el texto abajo */
    align-items: center; /* Centra el contenido */
    background-color: grey; /* Color dorado */
    color: white;
    font-weight: 500;
    margin: 20px 0;
    padding: 5px;
    border-radius: 10px;
    text-decoration: none; /* Quita el subrayado del enlace */
}

.icon-circle {
    display: flex;
    justify-content: center; /* Centra el ícono horizontalmente */
    align-items: center; /* Centra el ícono verticalmente */
    width:50px; /* Ancho del círculo */
    height: 50px; /* Alto del círculo */
    background-color: #FFD700; /* Color dorado */
    border-radius: 50%; /* Hace que el contenedor sea un círculo */
    margin: 10px; /* Margen alrededor */
    color:black;
}

.icon-circle i {
    font-size: 20px; /* Tamaño del ícono */
    color: black; /* Color del ícono */
}

.circular--square2 {
  border-top-left-radius: 50% 50%;
  border-top-right-radius: 50% 50%;
  border-bottom-right-radius: 50% 50%;
  border-bottom-left-radius: 50% 50%;
  width:30px;
  height:30px;
}


.linea{
    padding-top:5px;
    opacity:0;
}




.saldo2 {
    display: flex;
    flex-direction: column; /* Coloca el ícono arriba y el texto abajo */
    align-items: center; /* Centra el contenido */
    background-color: grey; /* Color dorado */
    color: grey;
    font-weight: 500;
    margin:10px 0;
    padding: 5px;
    border-radius: 10px;
    text-decoration: none; /* Quita el subrayado del enlace */
}

.icon-circle {
    display: flex;
    justify-content: center; /* Centra el ícono horizontalmente */
    align-items: center; /* Centra el ícono verticalmente */
    width:40px; /* Ancho del círculo */
    height: 40px; /* Alto del círculo */
    background-color: #FFD700; /* Color dorado */
    border-radius: 50%; /* Hace que el contenedor sea un círculo */
    margin: 4px; /* Margen alrededor */
    color:black;
}

.icon-circle i {
    font-size: 20px; /* Tamaño del ícono */
    color: black; /* Color del ícono */
}


.pedidos {
    display: flex;
    flex-direction: column; /* Coloca el ícono arriba y el texto abajo */
    align-items: center; /* Centra el contenido */
    background-color: #e30052;/* Color dorado */
    color: white;
    font-weight: 500;
    margin: 10px 0;
    padding: 5px;
    border-radius: 10px;
    text-decoration: none; /* Quita el subrayado del enlace */
    width: 80px; /* Ancho fijo para consistencia */
    transition: background-color 0.3s; /* Efecto al pasar el ratón */
}

.pedidos:hover {
    display: flex;
    flex-direction: column; /* Coloca el ícono arriba y el texto abajo */
    align-items: center; /* Centra el contenido */
    background-color: red; /* Color dorado */
    color: white;
    font-weight: 500;
    margin: 10px 0;
    padding: 5px;
    border-radius: 10px;
    text-decoration: none; /* Quita el subrayado del enlace */
    width: 90px; /* Ancho fijo para consistencia */
    transition: background-color 0.3s; /* Efecto al pasar el ratón */
}

.margenes
{
    margin-left:5px;
}

.cart{
    display: flex;
    flex-direction: column; /* Coloca el ícono arriba y el texto abajo */
    align-items: center; /* Centra el contenido */
    background-color: green;/* Color dorado */
    color: white;
    font-weight: 500;
    padding: 5px;
    border-radius: 10px;
    text-decoration: none; /* Quita el subrayado del enlace */
    width: 80px; /* Ancho fijo para consistencia */
    transition: background-color 0.3s; /* Efecto al pasar el ratón */
}


.saldo2 span {
    font-size:10px; /* Tamaño de fuente para el texto */
    margin-top: 5px; /* Espacio entre el ícono y el texto */
}


   
.modalmask {
    position: fixed;
    font-family: Arial, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}
.modalmask:target {
    opacity:1;
    pointer-events: auto;
}

/*Formato de la ventana*/
.modalbox{
    width: 400px;
    position: relative;
    padding: 5px 20px 13px 20px;
    background: black;
    border-radius:3px;
    -webkit-transition: all 500ms ease-in;
    -moz-transition: all 500ms ease-in;
    transition: all 500ms ease-in;
     
}

.titulo{
    color:white;
}

/*Movimientos*/
.movedown {
    margin: 0 auto;
}
.rotate {
    margin: 10% auto;
    -webkit-transform: scale(-5,-5);
    transform: scale(-5,-5);
}
.resize {
    margin: 10% auto;
    width:0;
    height:0;
 
}

.pencil{
    font-size:10px;
    background-color:#e30052;
    color:white;
    border-radius:5px;
    padding:2px;
}

.modalmask:target .movedown{       
    margin:10% auto;
}
.modalmask:target .rotate{     
    transform: rotate(360deg) scale(1,1);
        -webkit-transform: rotate(360deg) scale(1,1);
}
 
.modalmask:target .resize{
    width:200px;
    height:auto;
}

/*Boton de cerrar*/
.close2 {
    background: #606061;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: 1px;
    text-align: center;
    top: 1px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius:3px;
 
}
 
.close2:hover {
    background: #FAAC58;
    color:#222;
}


/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  text-align: center;
  margin-bottom: 1.5rem;
}

.section__height {
  height: 100vh;
}

/*=============== LAYOUT ===============*/
.container {
  max-width: 968px;
  margin-left: 1rem;
  margin-right: 1rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #232422;
  z-index: 500; /* Asegúrate de tener el z-index adecuado */
  transition: background-color 0.4s, box-shadow 0.4s; /* Especificar las propiedades que deben tener transición */
  box-shadow: 0 1px 12px green; /* Cambio a sombra hacia abajo */
  text-align: center;
}

.modaltitulo{
    color:white;
}
.clic {
    color: white;
    background-color: #007bff; /* Un azul más suave que resalta bien */
    border-radius: 3px;
    padding: 3px;
}

.clic:hover{
    color:white;
    background-color:#007bff;
    border-radius:3px;
    padding:3px;
    font-size:35px;
}

.header li ul {
    display: none;
    position: absolute;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color:white;
    background-color: green;
    border-radius:10px;
     text-decoration: underline 3px;
      font-family: "SUSE", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}


.header li:hover ul {
    display: block;
    color:white;
    background-color: green;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__item{
    padding-top:10px;
}


.boton-azul{
background: blue;
border-color: blue;
text-align:center;
color:white;
border-radius:10px;
margin-bottom:5px;
padding:7px;
}


.boton-verde{
color:white;
}

.boton-verde:hover {
font-size:35px;

}

.perfil{
border-color: green;
text-align:center;
color:white;
border-radius:10px;
margin-bottom:5px;
padding:10px;
font-weight:bold;
}

.boton-rojo{
    background:#e30052;
    border-color: black;
    text-align:center;
    color:white;
    border-radius:10px;
      margin-bottom:5px;
      padding:7px;
}

.boton-red{
    background:red;
    border-color: black;
    text-align:center;
    color:white;
    border-radius:10px;
      margin-bottom:5px;
      padding:7px;
}

.boton-naranja{
    background:#FC762F;
    border-color: white;
    text-align:center;
    color:black;
    border-radius:10px;
      margin-bottom:5px;
      padding:7px;
}

.boton-compra{
    background:#FC762F;
    border-color: black;
    text-align:center;
    color:black;
    border-radius:5px;
      margin-bottom:1px;
      padding:2px;
}

.boton-compra:hover{
    background:#21b921;
    border-color: black;
    text-align:center;
    color:black;
    border-radius:5px;
      margin-bottom:1px;
      padding:3px;
}

.boton-pedidos{
    background:#e30052;
    border-color: black;
    text-align:center;
    color:white;
    border-radius:10px;
    margin-bottom:5px;
    padding:7px;
}

.boton-pedidos:hover{
    background:black;
    border-color: black;
    text-align:center;
    color:white;
    border-radius:5px;
      margin-bottom:1px;
      padding:3px;
}

.nav__img {
  width: 32px;
  border-radius: 50%;
}

.nav__logo {
  color: var(--title-color);
  font-weight: 600;
}

.nav a:hover{
    font-size:18px;
  
}

.nav__name{
    font-size:15px;
}

.nav__name:hover{
font-size:18px;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    bottom:0;
    left: 0;
    box-shadow: 0 -1px 12px green;
    width: 100%;
    background-color: #232422;
    display: grid;
    align-content: center;
    transition: .4s;
  }
  
  .nav__item{

}
}

.nav__list, 
.nav__link {
  display: flex;
}

.nav__links {
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  color: white;
  font-weight: 600;
    position: relative;
}

.nav__linksotros {
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
 color:#e30052;
  font-weight: 600;
    position: relative;
}

.nav__linksclas{
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
 color:#67c776;
  font-weight: 600;
    position: relative;
}

.nav__list {
  justify-content: space-around;
}

.nav__name {
  font-size: var(--tiny-font-size);
  /* display: none;*/ /* Minimalist design, hidden labels */
}


.nav__icon {
  font-size:35px;
  color:;
  
}

.nav__item{
    padding-bottom:10px;
}

/*Active link*/
.active-link {
  position: relative;
  color: #67c776;
  transition: .3s;
}

/* Minimalist design, active link */
/* .active-link::before{
  content: '';
  position: absolute;
  bottom: -.5rem;
  width: 4px;
  height: 4px;
  background-color: var(--first-color);
  border-radius: 50%;
} */

/* Change background header */
.scroll-header {
  box-shadow: 0 1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
/* Remove if you choose, the minimalist design */
@media screen and (max-width: 320px) {
  .nav__name {
    display: none;
  }
   .social {
           opacity: 0;
}
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .nav__list {
    justify-content: center;
    column-gap: 3rem;
  }
   .social {
           opacity: 0;
}
}

@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
   .social {
           opacity: 0;
}
}



