body {
  background: #fff;
  font-family: 'Roboto', sans-serif;
  color: #000;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
  /* color: #000; */
}
a:hover, a:active {
  text-decoration: none;
  color: #fc9804;
}

.FullBackground{
  width:100%; 
  background: #f5e283;
}

.Encabezado{
  margin: 0 auto;
  margin-top: 20px;
  /* width: 1500px; */
  /* background: red; */
}

.Opcion{
  font-size: 2.7rem;
  color: #f5e283;
}

.opcionTexto{
  font-size: 0.7rem;
  color: #000;
}

.containerMenu{
  margin: 0 auto;
  background: #f5e283;
  width: 100%;
  /* padding: 0.5em 0; */
  position: relative;
}
.containerMenu::after{
  content: '';
  clear: both;
  display: block;
}


.menuNav{
  top: 100%;;
  right:0;
  position: absolute;
  background: #464655;
  clip-path: circle(0px at top right);
  transition: clip-path ease-in-out 0ms;
}

.menuNav-Open{
  clip-path: circle(150% at top right);
}
.menuNav ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.menuNav li{
  border-bottom: 1px solid #575766;
}

.menuNav li:last-child{
  border-bottom: none;
}

.menuNav a{
  color: #000;
  display: block;
  padding: 0.5em 1em;
  background: #f5e283;
  /* text-transform: uppercase; */
  text-decoration: none;
}

.menuNav a:hover,
.menuNav a:focus{
  background: #fc9804;
  color: #464655;
}

.menuNav--icon{
  display: inline-block;
  font-size: 1.5em;
  margin-right: 0.5rem;
  /* width: 1em; */
  text-align: right;
  /* color: rgba(255, 255, 255, .4); */
  color: #05050567;
  /* color: rgb(9, 68, 196); */
}

.menuToggle{
  padding: 1em;
  position: absolute;
  /* top: .5em; */
  right: .5em;
}

.menu-Open .Hamburguesa{
  transform: rotate(45deg);
}
.menu-Open .Hamburguesa::before{
  opacity: 0;
}
.menu-Open .Hamburguesa::after{
  transform: translateY(-5px) rotate(-90deg);
}
.Hamburguesa,
.Hamburguesa::before,
.Hamburguesa::after{
  content: '';
  display: block;
  background: #000;
  height: 5px;
  width: 1.75em;
  border-radius: 3px;
  transition: all ease-in-out 100ms;
}
.Hamburguesa::before{
  transform: translateY(-10px);
}
.Hamburguesa::after{
  transform: translateY(5px);
}



@media (min-width: 768px){
  .Encabezado, .containerMenu, .Body, .footerContainer {
    width: 100%;
  }

  .menuLogo{
    display: none;
  }

  .menuToggle{
    display: none;
  } 

  .menuNav{
      height: auto;
      position: relative;
      background: transparent;
      float: right;
      /* margin-right: 10px; */
      clip-path: initial;
  } 
  .menuNav li{
      display: inline-block;
      border: none;
  }

  .menuNav a{
      /* padding: 0; */
      /* margin-left: 1em; */
  }
  .menuNav--icon{
      display: none;
  }
  .menuNav a:hover,
  .menuNav a:focus{
      /* background: transparent; */
      background: #fc9804;
  }
}

@media (min-width: 992px){
  .Encabezado, .containerMenu, .Body, .footerContainer {
      width: 960px;
  }
}

@media (min-width: 1200px){
  .Encabezado, .containerMenu, .footerContainer, .Body {
    width: 1100px;
  }
}

/* @media (min-width: 1600px){
  .Encabezado {
      width: 1500px;
  }

} */

@media (max-width: 768px){
  .Encabezado{
    padding: 1em 0;
  }
  .encabezadoLogo{
    display: none;
  }
  .Busqueda{
    width: 80%;
  }
  .containerMenu{
    padding: 0.5em 0;
    justify-content: left!important;
  }
}

section {
  min-height: 400px;
}

.Body {
  padding: 2rem 0;
}

.footerContainer{
  padding: 2rem 0;
}

.Suscribir{
  padding: 1rem 0;
  background: #fc9804;
}


.precio{
    padding: .2rem .4rem;
    font-size: 100%;
    color: #fff;
    background-color: #146b2aa6;
    border-radius: .3rem;
    font-weight: bold;
}

.precio-anterior{
  padding: .2rem .4rem;
  font-size: 100%;
  color: #fff;
  background-color: #ff0000bf;
  border-radius: .3rem;
  text-decoration: line-through;
}


input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

input[type=date]::-webkit-inner-spin-button, 
input[type=date]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

input{
    text-transform: uppercase;
}
  
textarea{
    text-transform: uppercase;
}






.pagination {
  /* display: inline-block; */
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

.pagination>li:first-child>a, .pagination>li:first-child>span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.pagination>li>a, .pagination>li>span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

