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

}
html{
    font-size: 62.5%;
}
@font-face {
      font-family: 'BLACEB__';
      src: url('../font/BLACEB__.TTF') format('truetype');
      font-weight: normal;
      font-style: normal;
    }
@font-face{
       font-family: 'NewRocker-Regular';
       src: url('../font/NewRocker-Regular.ttf') format('truetype');
       font-weight: normal;
       font-style: normal;
      
}
body{
    font-family: 'NewRocker-Regular', ;
    font-size: 1.6rem;
    line-height: 1.5;
    color: rgb(217, 220, 222);

    display: flex;
    flex-direction: column;
    min-height: 100vh;

    background-image: url('../img/fondo4.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    }
.header{
    background-image: url('../img/header.png');
    background-size: cover;
    background-position: center;
    

    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo{
    padding: 0.5rem;
    margin-left: 2rem;
    
}
.header__logo a img{
    max-width: 120px;
    height: auto;

}
.header__nav{
    padding: 0.5rem;
    margin-right: 2rem;
}
.header__nav ul{
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.header__nav li{
    font-size: 3rem;
    font-weight: bold;

}
.header__nav a{
    font-family: 'BLACEB__', 'NewRocker-Regular';
    color: goldenrod;
    text-decoration: none;
    display: inline-block;
    padding: 1rem;
    text-shadow: 0.8rem black ;
}
.footer{
    background-color: #1c1c1c;
    padding: 3rem 2rem;
    text-align: center;
    color: #f5f5f5;
    font-family: 'almendra', cursive ;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.footer-text{
    margin-bottom: 2rem;
    font-size: 1.6rem;
    color: #ffcc00;
    text-align: center;
    width: 100%;
}

.footer-nav ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}
.footer-nav li{
    display: inline-block;
}
.footer-nav a{
    color:#f5f5f5;
    font-size: 2.5rem;
    transition: color 0.3s ease;
}
.footer-nav a:hover{
    color: #ffcc00;
}
/* -------------------------------------------------------------------------- */
/*                                    HOME                                    */
/* -------------------------------------------------------------------------- */
main{
    width: 90%;
    flex: 1;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.titulo_home{
    font-size: 6rem;
    margin: 0.5rem 0;
    font-family: 'BLACEB__', 'NewRocker-Regular';
    color: #dd0404;
    text-shadow:  2px 2px 4px #000;
    line-height: 1;
}
.subtitulo_home{
     font-size: 4.5rem;
    
    font-family: 'BLACEB__', 'NewRocker-Regular';
    color: #dd0404;
    text-shadow:  2px 2px 4px #000;
    line-height: 1,5;
}
.parrafo_home{
    font-family: 'almendra', cursive;
    font-size: 2rem;
    color: #f5f5f5;
    text-shadow: 2px 2px 4px #000;
    text-align: center;
    margin-bottom: 2rem;
    width: 80%;
    line-height: 1,5;
    
}
.productos_home{
    width: 100%;
}
.productos_home h2{
font-family: 'BLACEB__', 'NewRocker-Regular';
    font-size: 3.5rem;
    text-align: center;
    color: #dd0404;
    text-shadow: 2px 2px 4px #000;
    padding: 1rem;
    margin: 2rem;
}
.contenedor_tarjetas{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;

}
.tarjetas_productos{
    background-color: rgb(2, 36, 31);
    border-radius: 1rem;
    padding: 1rem;
    width: 35rem;
    height: 60%;
    display: flex;
    flex-direction: column;
    align-content: center;
    gap: 1rem;

}
.tarjetas_productos h3{
    font-family: 'BLACEB__';
    font-size: 2.5rem;
    color:  #ffcc00;
    text-shadow: 2rem black;
    text-align: center;
}
.tarjetas_productos p{
    font-family: 'almendra', cursive;
    font-size: 2rem;
    
}

.precio{
    font-family: 'BLACEB__';
    font-size: 2.5rem;
    text-align: center;
    color: #ffcc00;
}  
.tarjetas_productos img{
    width: 100%;
    height: 30rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

 /* -------------------------------------------------------------------------- */
 /*                                  CONTACTO                                  */
 /* -------------------------------------------------------------------------- */
 .seccion-contacto {
  background-color: #1c1c1c;
  color: #f5f5dc;
  padding: 40px 20px;
  border-radius: 1rem;
  font-family: 'almendra', serif;
  font-size: 2rem;
}

.titulo-contacto {
  font-size: 6rem;
  color: #b22222;
  text-align: center;
  margin-bottom: 30px;
  font-family: 'BLACEB__', cursive;
  text-shadow: 2px 2px 4px #000;
}

.form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.campo-contacto label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  background-color: #2a2a2a;
  border: 2px solid #f5f5dc;
  color: #f5f5dc;
  border-radius: 5px;
  font-family: 'almendra', cursive;
 
}

button {
  background-color: #b22222;
  color: #f5f5dc;
  padding: 15px;
  font-size: 2rem;
  font-family: 'almendra', cursive;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #ffcc00;
  color: #dd0404;
}