:root {
    --primario: #000000;
    --primarioOscuro: #b80c23;
    --secundario: #ffce00;
    --secudarioOscuro: rgb(255, 204, 0, 0.8);
    --blanco: #fff;
    --negro: #000;

    --fuentePrincipal: 'Staatliches', cursive;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
}

*,
*:before,
*after {
    box-sizing: inherit;
}

/** Globales**/

body {
    background-color: var(--primario);
    font-size: 1.6rem;
    line-height: 1.5;
}

p {
    font-size: 1.8rem;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--blanco);
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    border-radius: 17px;
}

.contenedor {
    max-width: 120rem;
    margin: 0 auto;
}

h1,
h2,
h3 {
    text-align: center;
    color: var(--secundario);
    font-family: var(--fuentePrincipal);
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3.2rem;
}

h3 {
    font-size: 2.4rem;
}

/** HEADER **/
.header {
    display: flex;
    justify-content: center;
}


.header__logo {
    margin: 3rem 0;
}

.producto__imagen{
    width: 280px;
    height: 280px;
    margin: 0 auto;
    overflow: hidden;
}
.producto__imagen img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
}

/**Grid**/
.grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
    padding-left: 4%;
    padding-right: 4%;

}

@media(min-width: 768px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/**Productos**/

.producto {
    background-color: var(--primarioOscuro);
    padding: 1rem;
    cursor: pointer;
    border-radius: 17px;
    box-shadow: 0 4px 17px rgba(228, 253, 1, 0.986);
}

.producto__nombre {
    font-size: 4rem;
}

.producto__precio {
    font-size: 2.8rem;
    color: var(--secundario);
}

.producto__nombre,
.producto__precio {
    text-align: center;
    margin: 0.7rem 0;
    font-family: var(--fuentePrincipal);
}

.producto__descripcion {
    font-size: 1.8rem;
    color: var(--blanco);
    text-align: center;
}



.whatsapp-icon{

    padding-right: 10px;
}

.pedido__link{
    color: var(--blanco);
    font-size: 2rem;
    text-decoration: none;
}
.pedido{
    display: flex;
    margin: 12px;
    border-radius: 10px;
    color: var(--blanco);
    background: rgba(6, 247, 38, 0.8);
    align-items: center;
    justify-content: center;
}
@keyframes saltar {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  .boton-saltando {
    animation: saltar 0.6s ease infinite;
  }
  
  .boton-saltando:active {
    transform: translateY(2px);
  }

  @media (max-width:991px) {

    html {
        font-size: 55%;
    }

}

  @media (max-width:450px) {

    html {
        font-size: 50%;
    }
}


