:root {
  --primary: #e99401;
  --negro: #262626;
  --blanco: #fff;
  --verde: #31a84f;
  --rojo: rgba(211, 0, 0, 0.815);
  --fuente-principal: "Outfit", sans-serif;
}
html {
  font-size: 62.5%;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  font-size: 2rem;
  font-family: var(--fuente-principal);
  line-height: 1.5;
}
img {
  max-width: 100%;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

[class*="contenedor"] {
  max-width: 120rem;
  margin: 0 auto;
  width: 95%;
}
[class*="heading"] {
  font-size: 4rem;
  text-align: center;
  font-weight: 900;
  color: var(--primary);
  margin: 5rem 0;
}

.header {
  background-image: linear-gradient(
      to right,
      rgb(0 0 0 / 0.7),
      rgb(0 0 0 / 0.7)
    ),
    url(../img/header.jpg);
  background-size: cover;
  background-position: 50%;
  padding: 5rem 0;
  position: relative;
}

.header__guitarra {
  display: none;
}
@media (min-width: 992px) {
  .header__guitarra {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;

    /* animation-name: mostrarImagen;
        animation-duration: 1s;
        animation-delay: 0s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: 1; */

    animation: 1s ease-in-out 0s 1 mostrarImagen;
  }
}

@keyframes mostrarImagen {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0rem);
  }
}

.header__barra {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .header__barra {
    flex-direction: row;
    justify-content: space-between;
  }
}

.header__logo {
  width: 30rem;
}

.barraFondo {
  /* background-color: rgb(233, 148, 1, .8); */
  background-color: rgba(0, 0, 0, 0.3);
}

.barraFondoCard{
  background-color: rgba(0, 0, 0,.9);
  border-radius: 5px 5px 0 0;
  color: var(--primary);
  padding: 10px;
  font-size: 20px;
}

.barraFondo2 {
  /* border: 1px solid blue; */

  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  gap: 5px;
}
@media (max-width: 1200px) and (min-width: 300px) {
  .barraFondo2 {
    /* border: 1px solid blue; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    gap: 5px;
    flex-direction: column;
  }
}
/* label {
  display: inline-block;
  background-color: blue;
  width: 100px;
  text-align: center;
  padding: 10px;
} */

.sombras {
  /* text-shadow: 1px 1px 2px #000; */
  text-shadow: rgb(0, 0, 0) 1px 2px 10px;
}
.sombrasT {
  /* text-shadow: 1px 1px 2px #000; */
  text-shadow: #e99401 10px 20px 10px;
}
.imgSombra {
  opacity: 0.8;
}

.maskOferta {
  text-decoration: none;
}

.logoGuitarraContainer{
  display: flex;
  justify-content: end;
  align-items: end;
}

.logoGuitarra {
  max-width: 80px;
  

}

.grid-guitarra {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5px;
}

.txtBadge {
  display: flex;
  justify-content: end;
  align-items: end;
}

.navegacion {
  color: white;
  display: flex;
  gap: 2rem;
  margin-top: 5rem;
  position: relative;
  padding: 30px 10px;
  z-index: 1;
  font-size: 25px;
}
@media (min-width: 768px) {
  .navegacion {
    margin-top: 0;
  }
}
.navegacion__enlace {
  color: var(--blanco);
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  transition-property: background-color;
  transition-duration: 0.3s;
}
.navegacion__enlace:hover {
  background-color: var(--primary);
}

.comboModelos {
  border: 1px solid #e99401;
  background: transparent;
  font-size: 16px;
  padding: 10px 5px;
  color: #fff;
  width: 150px;
  margin: 10px;
}
.comboModelosLink {
  /* background: #e99401; */
  background: rgb(0, 0, 0, 0.8);
  font-size: 18px;
  color: #fff;
  width: 150px;
}

.comboModelosBtn {
  border: 1px solid #e99401;
  background: transparent;
  font-size: 16px;
  padding: 10px 5px;
  color: #fff;
  width: 150px;
  margin: 10px;
}
.comboModelosBtn:hover {
  cursor: pointer;
  background-color: #e99401;
}

.modelo__nombre {
  font-size: 4rem;
}

.modelo {
  color: var(--blanco);
  margin-top: 5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .modelo__nombre {
    font-size: 6rem;
  }
  .modelo {
    text-align: left;
    width: 80%;
  }
}

@media (min-width: 1200px) {
  .modelo__nombre {
    font-size: 8rem;
  }
  .modelo {
    text-align: left;
    width: 50%;
  }
}

.modelo__precio {
  font-size: 3rem;
  color: var(--primary);
  font-weight: 900;
  line-height: 0;
}
.modelo__enlace {
  margin-top: 2rem;
  text-decoration: none;
  padding: 1rem 5rem;
  border: 2px solid var(--primary);
  color: var(--blanco);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.4rem;
  transition-property: background-color;
  transition-duration: 0.3s;
}
.modelo__enlace:hover {
  background-color: var(--primary);
}

.productos__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .productos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .productos__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.producto {
  display: grid;
  grid-template-columns: 2fr 3fr;
  column-gap: 1rem;
  align-items: end;
  justify-content: space-between;
  /* border: 1px solid #e99401; */
  box-shadow: 5px 5px 10px #262626;
  border-radius: 5px;
  padding: 5px;
}

.producto__contenido{
 margin-bottom: 50px;
}

.productos__heading {
  color: #000;
}
.producto__nombre {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}
.producto__descripcion {
  font-size: 1.6rem;
}
.producto__precio,
.producto__marca {
  color: var(--primary);
  font-size: 3rem;
  font-weight: 900;
  margin: 0;
}
.producto__marca {
  font-size: 3rem;
}

.producto__enlace_cantidad,
.btn_logout,
.btn_login,
.producto__enlace_cancelar,
.producto__enlace_delete,
.producto__enlace,
.producto__comprar {
  margin-top: 1rem;
  display: block;
  text-decoration: none;
  color: var(--negro);
  padding: 1rem 5rem;
  border: 2px solid var(--primary);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  transition-property: background-color;
  transition-duration: 0.3s;
}

.producto__comprar {
  border-radius: 5px;
}

.btn_logout,
.btn_login{
  margin: 5px;
}

.btn-logout{
  padding:  0.2rem 5rem;
}

.producto__enlace{
  width: 177px;
}

.producto__enlace_cantidad{
  max-width: 177px;
  cursor: pointer;
}

.btn_logout,
.producto__enlace_cancelar{
  color: var(--negro);
  border: 2px solid var(--negro);
}


.btn_login:hover,
.producto__enlace_cancelar:hover{
  background-color: var(--verde);
  color: var(--blanco);
}

.producto__enlace:hover {
  background-color: var(--primary);
  color: var(--blanco);
}

.btn_logout:hover,
.producto__comprar:hover,
.producto__enlace_delete:hover  {
  background-color: #ff0000ef;
  color: var(--blanco);
}



.bordesDetalles {
  list-style: none;
  /* border-bottom: 1px solid #22d8f8; */
  border-bottom: 1px solid var(--primary);
  max-width: 90%;
  padding-left: 10px;
}

.cajaDetalle {
  box-shadow: 5px 5px 10px #262626;
}

.cajaSelect {
  font-size: 1.8rem;
}

.producto__formulario {
  display: flex;
  flex-direction: column;
}
.producto__label {
  font-size: 2.2rem;
  margin-right: 1rem;
}
.producto__cantidad {
  border: 2px solid var(--primary);
  padding: 1rem;
  text-align: center;
}
.producto__cantidad:focus-visible {
  outline: 2px solid var(--primary);
  border: none;
}
.producto__agregar-carrito {
  margin-top: 3rem;
  display: block;
  background-color: var(--primary);
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  text-align: center;
  padding: 2rem 5rem;
  color: var(--blanco);
  font-size: 1.8rem;
  font-weight: 700;
  transition-property: background-color;
  transition-duration: 0.3s;
}
.producto__agregar-carrito:hover {
  background-color: var(--negro);
  cursor: pointer;
}
.cursos {
  background-image: linear-gradient(
      to right,
      rgb(0 0 0 / 0.65),
      rgb(0 0 0 / 0.65)
    ),
    url("../img/cursos_bg.jpg");
  padding: 10rem 0;
  margin-top: 10rem;
  background-size: cover;
  background-position: 50%;
}
@media (min-width: 768px) {
  .cursos__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
  }
}
.cursos__contenido {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .cursos__contenido {
    grid-column: 2 / 3;
  }
}

.cursos__texto {
  color: var(--blanco);
  text-align: center;
  font-size: 2.4rem;
}
.cursos__enlace {
  color: var(--blanco);
  margin-top: 2rem;
  display: inline-block;
  border: 2px solid var(--primary);
  text-decoration: none;
  padding: 1rem 5rem;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  transition-property: background-color;
  transition-duration: 0.3s;
}
.cursos__enlace:hover {
  background-color: var(--primary);
  color: var(--blanco);
}

.blog__grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 768px) {
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .blog__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .blog__grid--pagina {
    grid-template-columns: repeat(3, 1fr);
  }
}
.entrada {
  max-width: 80rem;
  margin: 0 auto;
}
.entrada__contenido {
  padding: 2rem;
}
.entrada__titulo {
  font-weight: 400;
  font-size: 2.8rem;
  margin: 0;
  line-height: 1.2;
}
.entrada__fecha {
  font-size: 1.6rem;
  color: var(--primary);
}

.entrada__enlace {
  margin-top: 2rem;
  display: block;
  text-decoration: none;
  color: var(--negro);
  padding: 1rem 5rem;
  border: 2px solid var(--primary);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  transition-property: background-color;
  transition-duration: 0.3s;
}
.entrada__enlace:hover {
  background-color: var(--primary);
  color: var(--blanco);
}

.entrada__texto {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  font-size: 1.6rem;
}

.footer {
  margin-top: 5rem;
  background-color: var(--negro);
  padding: 5rem 0;
  color: #fff;
}
@media (min-width: 768px) {
  .footer__contenido {
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
    align-items: center;
  }
}
.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: start;
}
@media (min-width: 768px) {
  .footer__nav {
    flex-direction: row;
    gap: 2rem;
  }
}
.footer__enlace {
  font-size: 2.8rem;
  color: var(--blanco);
  text-decoration: none;
  font-weight: 700;
}
.footer__enlace:hover {
  color: var(--primary);
}
.footer__copyright {
  font-size: 2.8rem;
  color: var(--blanco);
  font-weight: 700;
  text-align: center;
}

.nosotros__grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 768px) {
  .nosotros__grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}
.fotoFooter {
  max-width: 250px;
  max-height: 250px;
  margin: 10px auto;
  border-radius: 20px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
  border: 5px solid var(--primary);
  padding: 10px;
}

.guitarraKK {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: auto;
}
.guitarraKKtxt {
  font-size: 2.8rem;
  color: var(--rojo);
  font-weight: 700;
  text-align: center;
}

.imgTabla{
  max-width: auto;
  max-height: 100px;

}

img {
  
  display: block;
}

a {
  text-decoration: none;
}

.resaltar {
  position: relative;
  display: inline-block;
  color: #000;
  font-weight: 900;
  font-size: 26px;
  transition: transform 0.5s;
  text-align: center;
  z-index: 1;
}

.resaltar1::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 10px;
  left: 0;
  background-color: #22d8f8;
  z-index: -1;
  padding: 0 4px;
  transform: rotate(-2deg) translate(-4px, -2px);
  transition: transform 0.5s;
}

.resaltar2::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 120%;
  height: 100%;
  top: 10px;
  left: -20px;
  background-color: #00acca;
  z-index: -1;
  padding: 0 4px;
  transform: rotate(-2deg) translate(-4px, -2px);
  transition: transform 0.5s;
}


.imgGuitarraAdd{
  max-width: 50px;
  max-height: 50px;
}

.loginUsuario{
  /* background-color: rgb(251, 255, 174); */
  background-color: rgba(232, 147, 0, 0.3);
}

.precioDestacado{
  color: var(--negro);
  font-size: 2.5rem;
  font-weight: 900;

}