:root {
  --fuenteTitulo: 'Young Serif', serif;
  --fuenteTextos: 'Open Sans', sans-serif;

  --naranja: #F58634;
  --negro: #515151;
  --blanco: #FFFFFF;
  --gris: #7D7D7D;
  --grisClaro: #F0F0F0;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  font-family: var(--fuenteTextos);
  font-size: 1.6rem;
  line-height: 1.8;
  background-color: transparent;
  width: 100%;
}

h1,
h2 {
    font-weight: 700;
    font-family: var(--fuenteTitulo);
    text-transform: uppercase;
}

h1 {
    font-size: 5rem;
    margin: 0;
}

h2 {
    font-size: 4.6rem;
}

a {
    text-decoration: none;
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}

p {
  margin: 0;
  padding: 0;
  color: var(--negro);
  font-family: var(--fuenteTextos);
  font-size: 16px;
}

[class*="contenedor"] {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}

[class*="btn"] {
  text-decoration: none;
  text-align: center;
  display: inline-block;
  width: 100%;
  padding: .5rem;
  border-radius: 1.2rem;
  font-weight: bold;
  font-size: 1.5rem;
}

/** Barra Header **/
.barra {
  width: 100%;
  height: 5rem;
  background-color: var(--naranja);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  z-index: 10;
}

.barra-contacto {
  display: flex;
  align-items: center;
  width: 100%;
}

.barra-contacto p {
  color: var(--blanco);
  font-family: var(--fuenteTextos);
  font-weight: bold;
  font-size: 14px;
}

.barra-telefono {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.barra-telefono img {
  width: 2rem;
}

.barra-telefono p{
  display: flex;
  gap: 1rem;
}

.barra-telefono a{
  color: var(--blanco);
  text-decoration:underline;
}

.barra-telefono a:hover{
  color: white;
}

.barra-redes {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  width: 20%;
  cursor: pointer;
}

.redes-responsive_container{
  background-color: var(--naranja);
  position: fixed;
  z-index: 15;
  padding: 1rem 1rem;
  display: flex;
  gap: 1rem;
  border-radius: 10px 10px 10px 0px;
  outline: 2px solid var(--blanco);
  bottom: 60px;
  left: 10px ;
}

.redes-responsive_container img{
  width: 20px;
  margin-bottom: 1rem;
}

@media (min-width: 768px) { 
  .barra {
    padding: 1rem 3rem;
  }
  
  .barra-contacto {
    justify-content: space-between;
    width: 55%;
  }
  
  .barra-contacto p {
    font-size: 18px;
  }
  
  .barra-contacto .hidden {
    visibility: visible;
  }
  
  .barra-telefono img {
    width: 2rem;
  }
  
  .barra-redes {
    gap: 5rem;
    width: 50%;
  }

  .redes-responsive_container{
    display: none;
  }
}

@media (max-width: 768px) {
  #numero-telefono{
    display: none;
  }

  .barra-redes{
    display: none;
  }

  .barra-contacto{
    display: flex;
    justify-content: space-between;
  }

  .redes-responsive_container{
    display: block;
  }
}

/** Header & Navegacion **/
.header {
  width: auto;
  height: auto;
  padding: 2rem 1rem;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-top: 4rem;
}

.logo{
  width: 340px;
}

.header-navegacion {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 2rem;
}

.header-navegacion a {
  font-family: var(--fuenteTextos);
  font-weight: regular;
  font-size: 20px;
  color: var(--negro);
  cursor: pointer;
}

.header-navegacion a:hover {
  color: var(--naranja);
  font-weight: bold;
  border-bottom: 2px solid var(--naranja);
}

.header-navegacion .activo {
  font-weight: bold;
  border-bottom: 2px solid var(--negro);
}

.header-navegacion .enlace-pedido {
  border: 2px solid var(--naranja);
  padding: .1rem 1.2rem;
  border-radius: 10px;
}

.header-navegacion .enlace-pedido:hover {
  background-color: var(--naranja);
  color: var(--blanco);
  font-weight: bold;
}

.enlace-pedido {
  text-transform: capitalize;
}

@media (min-width: 768px) { 
  .header {
    flex-direction: row;
  }
  .header-logo {
    height: 100%;
  }

  .header-navegacion {
    margin-top: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 2rem;
  }
}

@media (min-width: 1024px) { 
  .header-logo {
    margin-left: 3rem;
  }

  .header-navegacion {
    margin-right: 3rem;
  }
}

/** Hero **/
.hero {
  width: 100%;
  height: auto;
}
.swiper-wrapper {
  margin: 0;
  padding: 0;
  list-style: none;
}
.swiper-slide {
  background-position: center;
  background-size: cover;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.swiper-pagination-bullet {
  background-color: var(--gris);
}

.swiper-pagination-bullet-active {
  background-color: var(--blanco);
}

/** Footer **/
.footer {
  width: 100%;
  background-color: #000000;
}

.footer-contacto {
  background-color: #000000;
  display: grid;
  grid-template-columns: 1fr;
  padding: 2rem;
  justify-content: center;
  align-items: center;
}

.footer-telefonos h4,
.footer-ubicacion h4,
.footer-correos h4 {
  margin: 0;
  color: var(--blanco);
  text-align: center;
}

.telefonos {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.telefonos p,
.direccion p,
.correos p {
  color: var(--blanco);
}

@media (min-width: 768px) { 
  .footer-contacto {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
  }

  .footer-ubicacion,
  .footer-correos {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
}

@media (min-width: 1024px) { 
  .footer-contacto {
    grid-template-columns: repeat(3, 1fr);
  }
}

.copy{
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: end;
  padding: 1rem 0;
  background-color: #313030;
}

.copy p,
.copy a {
  color: var(--blanco);
  text-align: center;
}