:root {
  --marron: #a88914;
  --verde1: #91a566;
  --verde2: #bed084;
  --verde3: #d8e5ab;
  --redondeado: 0.8em;
  --paddingbasico: 1em;
  --border-rad: 7px;
  --border-styl: none;
  --sombreado: 2px 5px 5px #999;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

header,
nav {
  height: 6rem;
  width: 100%;
}

.imgContainer {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.imgContainer strong {
  font-size: 1.8rem;
}

.imgContainer>img {
  max-width: 100%;
  max-height: 100%;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  padding: 0 10rem;
  background-color: var(--verde2);
  z-index: 2;
}

nav ul {
  list-style: none;
}

nav a {
  text-decoration: none;
  color: black;
}

.main-nav>li>a {
  font-size: 1.4rem;
  padding-left: 1rem;
}

.main-nav>li>ul a {
  font-size: 1.2rem;
}

nav>ul {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .submenu {
  position: absolute;
  /* padding-top: 0.5rem; */
  background-color: var(--verde3);
  line-height: 2rem;
  display: none;
  border-radius: 4px;
}

nav>ul>li>a:hover~.submenu {
  display: block;
}

.submenu:hover {
  display: block;
}

nav .submenu li:first-child {
  border-top: 1px solid var(--verde1);
}

nav .submenu a {
  display: block;
  padding: 0 1rem;
}

nav .submenu a:hover {
  background-color: var(--verde1);
}

nav .submenuSecondLevel {
  display: none;
  background-color: var(--verde3);
  position: absolute;
  left: 100%;
  border-left: 1px solid var(--verde1);
  border-radius: 4px;
}

.submenuDespl:hover~.submenuSecondLevel {
  display: block;
}

.submenuSecondLevel:hover {
  display: block;
}

#submenuHamsters {
  top: 0.5rem;
}

#submenuParrots {
  top: 2.5rem;
}

#submenuFish {
  top: 4.5rem;
}

@keyframes glow {
  from {
    outline: none;
  }

  to {
    outline: none;
    -webkit-box-shadow: 0 0 10px var(--marron);
    -moz-box-shadow: 0 0 10px var(--marron);
    box-shadow: 0 0 10px var(--marron);
  }
}

@keyframes growAndShrink {
  0% {
    height: 2rem;
  }

  50% {
    transform: scale(1.05, 1.05);
  }

  100% {
    transform: scale(1, 1);
  }
}

#searchbar {
  height: 2rem;
  width: 10%;
  padding: 0.5rem 1rem;
  margin: 20px;
  border: 0.5px solid var(--marron);
  border-radius: 0.5rem;
}

#searchbar:focus {
  outline: none;
  animation: glow 0.2s forwards, growAndShrink 0.6s forwards;
}


/* INICIO BANNER */

.slideshow-container {
  max-width: 960px;
  position: relative;
  margin: 20px auto 0 auto;
  padding: 10px 5px;
  background-color: var(--verde2);
}

.mySlides {
  display: none;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: black;
  font-weight: bold;
  font-size: 35px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: var(--verde2);
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

/* FIN BANNER */
section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--paddingbasico);
}

section>* {
  max-width: 960px;
}

button {
  background-color: var(--verde1);
  border: 0 transparent;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-content: center;
  margin-top: 1rem;
  padding: 0.5rem;
  font-size: 18px;
  letter-spacing: 3px;

  border-radius: var(--border-rad);
}

button:hover {
  background-color: #e9e199;
  color: var(--verde1);
  border-radius: var(--border-rad);
  font-size: 18px;
  cursor: pointer;
}

.products {
  margin-top: 10px;
}

.products>h2 {
  margin-bottom: 1%;
}

.products>p {
  margin-left: 14%;
  margin-right: 14%;
  text-align: center;
}

#containerProducts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2em;
}


#containerProducts>div {
  padding: var(--paddingbasico);
  border-radius: var(--redondeado);
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#containerProducts>div>div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#containerProducts>div>div>* {
  margin: 0.3em;
}

.products img {
  width: 100%;
  height: 60%;
  border-radius: var(--redondeado);
  border: 1px solid var(--marron);
}

/* Servicios */
.services>h2 {
  margin-bottom: 1%;
}

.services>div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2em;
}

.services>div>div {
  padding: var(--paddingbasico);
  border-radius: var(--redondeado);
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services>div>div>div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services>div>div>div>* {
  margin: 0.3em;
}

.services img {
  width: 100%;
  height: 60%;
  border-radius: var(--redondeado);
  border: 1px solid var(--marron);
}

/* fin servicios */
.fondoverde {
  background-color: var(--verde2);
}

@keyframes enfasis {
  from {
    box-shadow: none;
    transform: scale(1);
  }

  to {
    box-shadow: var(--sombreado);
    transform: scale(1.1);
  }
}


.nosotros {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  margin-bottom: 50px;
}

.contNosotros {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: justify;
}

.contNosotros img {
  height: 10rem;
  margin: 20px;
}

.contNosotros p {
  height: auto;
  margin: 20px;
  display: flex;
  align-items: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: justify;
}

/* CSS formulario*/

form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

label {
  align-self: flex-start;
}

.form {
  max-width: 600px;
  padding: 1.5rem;
  margin: auto;
  color: var(--verde1);
}

.form h2 {
  letter-spacing: 5px;
}

.form h2,
h3 {
  text-align: center;
}

.form .label {
  display: block;
  margin-left: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.3rem;
  font-size: 18px;
  width: 100%;

}

.form .input,
select {
  padding: 0.3rem;
  padding-left: 0.7rem;
  margin-top: 0.2rem;
  width: 96%;
  border: 1px solid var(--verde1);
  border-radius: var(--border-rad);
}

#nombre,
#apellido {
  text-transform: capitalize;
}

.form .enviar {
  padding: 0.5rem;
  margin-top: 1rem;
  font-weight: bolder;
  background-color: var(--verde1);
  border-radius: var(--border-rad);
  font-size: 18px;
  border-style: var(--border-styl);
  letter-spacing: 2px;
}

.error input,
.error textarea {
  border-color: red !important;
}


.error span {
  font-size: 0.9rem;
  color: red;
  padding-top: 0.4rem;
  display: inline-block;
}

#mensajeEnvio {
  padding: 20px;
  color: blue;
  font-weight: bold;
}

.form select:focus,
.input:focus,
.chec:focus,
input[type]:focus {
  border-color: var(--verde1);
  box-shadow: 0 1px 1px var(--verde1) inset, 0 0 8px var(--verde2);
  outline: 0 none;
}

.form option {
  appearance: none;
  border: 1px solid var(--verde2);
  background-color: var(--verde2);
  color: white;
  font-size: 18px;
}

footer {
  display: flex;
  justify-content: space-around;
  padding: 1em 13em;
  align-items: center;
}

footer p {
  font-weight: bold;
}

.formSubTitle {
  padding-top: 10px;
  padding-bottom: 20px;
}

/* estilo para el modal del carrito */

.modal {
  display: none;
  position: fixed;
  z-index: 201;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-contenido {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;

}

.cerrar {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.cerrar:hover,
.cerrar:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
/* fin del estilo para el modal del carrito */

/*-------carrito tabla-----*/

.button-carrito {
  font: 400 16px "Roboto", sans-serif;
  cursor: pointer;
}

.container-carrito {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px auto;
  background-color: #d8e5ab;
  border: 2px solid var(--verde2);
  border-radius: 6px;
}

.section-title {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 24px;
}


.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.table-head-item {
  border-bottom: 1px solid var(--verde1);
  padding-bottom: 6px;

}

.col-uno {
  width: 70%;
}


.col-dos,
.col-tres,
.col-cuatro {
  padding: 0 15px;
  text-align: center;
}

.col-dosJS,
.col-tresJS,
.col-cuatroJS {
  padding: 0 5px;
  text-align: center;
}


.product-identification {
  display: flex;
  align-items: center;
}

.cart-product-image {
  width: 120px;
  height: 70px;
  border: 2px solid var(--verde2);
  border-radius: 6px;
  margin: 6px 2px;
}

.cart-product-title {
  margin-left: 16px;
  font-size: 18px;
}

.product-qtd-input {
  width: 48px;
  height: 34px;
  border-radius: 6px;
  border: 2px solid #91a566;
  text-align: center;
  background: #eee;
  margin-left: 30px;
}

.remove-product-button {
  margin-left: 12px;
  background: #a88914;
  color: #fff;
  padding: 10px 8px;
  border: 0;
  border-radius: 6px;
  font-weight: bold;
  transition: filter 0.2s;
}

.remove-product-button:hover {
  filter: brightness(0.8);
}

.cart-total-container {
  border-top: 1px solid var(--verde1);
  font-size: 18px;
  text-align: right;
}
.totalpagar{
  padding-top: 8px;
  font-weight: bold;
  padding-right: 10px;
}

.purchase-button {
  display: flex;
  margin: 24px auto 0;
  background: #91a566;
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 10px 14px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  transition: filter 0.2s;
}

.purchase-button:hover {
  filter: brightness(0.8);
}

.carrito-lista img {
  width: 30px;
}

.show-mobile {
  display: none;
}
@media screen and (max-width: 758px){
  .container-carrito {
    margin:1%;
    width: 98%;
  }

  .hide-mobile {
    display: none;
  }

  .show-mobile {
    display: block;
  }

  .product-identification {
    display: initial;
  } 

  .col-uno {
    width: 30%;
  }
  .col-dosJS {
    text-align: left;
  }

  .cart-product-price{
    margin:0 0 10px 16px;
  }

  .boton-vaciar-carrito{
    margin: 10px auto;
  }
}



/* --------------------------------------css select productos--------------------------------------- */

.products select,
.products option {
  text-align: center;
  width: 110px;
  background-color: var(--verde2);
}

/* --------------------------------------FIN css select productos--------------------------------------- */

.popup {
  display: none;
  position: fixed;
  z-index: 1;
  left: 85%;
  top: 18%;
  transform: translate(-50%, -50%);
  background-color: white;
  border: 2px solid black;
  padding: 20px;
  text-align: center;
}

#mensaje-compra{
  padding: 15px;
  background-color: #8db7c8;
  border-radius: 5px;
}

.button-carrito {
  font: 400 16px "Roboto", sans-serif;
  cursor: pointer;
}

.container-carrito {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px auto;
  background-color: #d8e5ab;
  border: 2px solid var(--verde2);
  border-radius: 6px;
}

.section-title {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* tabla carrito de compras */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.table-head-item {
  border-bottom: 1px solid var(--verde1);
  padding-bottom: 6px;

}

.col-uno {
  width: 70%;
}

.col-dos,
.col-tres,
.col-cuatro {
  padding: 0 15px;
  text-align: center;
}

.col-dosJS,
.col-tresJS,
.col-cuatroJS {
  padding: 0 5px;
  text-align: center;
}


.product-identification {
  display: flex;
  align-items: center;
}

.cart-product-image {
  width: 120px;
  height: 70px;
  border: 2px solid var(--verde2);
  border-radius: 6px;
  margin: 6px 2px;
}

.cart-product-title {
  margin-left: 16px;
  font-size: 18px;
}

.product-qtd-input {
  width: 48px;
  height: 34px;
  border-radius: 6px;
  border: 2px solid #91a566;
  text-align: center;
  background: #eee;
  margin-left: 30px;
}

.remove-product-button {
  margin-left: 12px;
  background: #a88914;
  color: #fff;
  padding: 10px 8px;
  border: 0;
  border-radius: 6px;
  font-weight: bold;
  transition: filter 0.2s;
}

.remove-product-button:hover {
  filter: brightness(0.8);
}

.cart-total-container {
  border-top: 1px solid var(--verde1);
  font-size: 18px;
  text-align: right;
}
.totalpagar{
  padding-top: 8px;
  font-weight: bold;
  padding-right: 10px;
}

.purchase-button {
  display: flex;
  margin: 24px auto 0;
  background: #91a566;
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 10px 14px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  transition: filter 0.2s;
}

.purchase-button:hover {
  filter: brightness(0.8);
}

.carrito-lista img {
  width: 30px;
}

#miBoton {
  width: 145px;
  height: 50px;
  margin: 15px;
  font-size: 15px;
  align-items: center;
}

@media (max-width: 470px) {
  /* .navbar-item{
    margin-left:-20px;
  } */
  .about-movie-image {
    width: 160px;
  }

  .main-footer-container {
    flex-direction: column;
  }

  .movie-title-medium {
    margin-bottom: 16px;
  }
  #searchbar {
    display: none;
  }

  #miBoton {
    width: 100px;
    height: 50px;
    margin-left: 85px;
    font-size: 15px;
    align-items: center;
  }
  
}



@media screen and (max-width: 576px) {
  #containerProducts {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    margin: 25px auto 0 auto;
  }

  .services>div {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    margin-left: -100%;
    transition: all 0.2s linear;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.7);
  }

  .main-nav>li {
    margin-top: 36px;
  }

  .main-nav>li>a {
    font-size: 1.8rem;
  }

  .main-nav.show {
    margin-left: 0;
  }

  .nav-links {
    background-color: var(--verde3);
    display: flex;
    flex-direction: column;
    width: 85%;
    height: 100%;
    align-items: center;
    justify-content: flex-start;
  }

  .link-item {
    margin-top: 2rem;
    color: black;
    text-decoration: none;
    font-weight: bold;
    position: relative;
  }



  .button-menu {
    z-index: 200;
    width: 40px;
    height: 40px;
    border: none;
    display: flex;
    background: none;
    flex-direction: column;
    /* Pondrá un span debajo del otro*/
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    left: -140px;
  }

  /* 
    Dibujamos una línea recta por cada span creando el tipico menu hamburguesa
  */

  .button-menu span {
    width: 50px;
    height: 6px;
    margin-bottom: 5px;
    position: relative;
    background: #444444;
    border-radius: 3px;
    transform-origin: 4px 0px;
    transition: all 0.2s linear;
  }

  /* 
    con los span dibujamos un icono de cerrar 
    para mostrar cuándo la navegación este abierta 
  */

  .button-menu.close span {
    opacity: 1;
    transform: rotate(45deg) translate(0px, 0px);
    background: black;

  }

  .button-menu.close span:nth-child(2) {
    transform: rotate(-45deg) translate(-15px, 5px);
  }

  .button-menu.close span:nth-child(3) {
    display: none;
  }

  .imgContainer {
    position: relative;
    left: -110px;
  }

  .products>h2 {
    font-size: 2.2rem;
  }

  .products>p {
    margin-top: 4px;
    font-size: 1.4rem;
  }

  .services>h2 {
    font-size: 2.2rem;
  }

  .listaProductos>div {
    margin-top: -26px;
  }

  footer {
    padding: 1rem 1rem;
  }

  footer p {
    font-weight: bold;
  }

  .listaProductos h3,
  .listaProductos span,
  .services h3,
  .services span {
    font-size: 1.5rem;
  }

  #containerProducts>div {
    border: 2px solid var(--marron);
  }

  nav .submenu {
    background-color: var(--verde2);
    z-index: 150;
    border: solid 1px;
  }

  nav .submenuSecondLevel {
    background-color: var(--verde2);
    border-left: 1px solid var(--verde1);
    border: solid 1px;
  }
  .navbar-item{
    margin-left:-120px;
  }
}

@media screen and (min-width: 577px) and (max-width: 758px) {
  #containerProducts {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    margin: 25px auto 0 auto;
  }

  .services>div {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
  }

  #containerProducts>div {
    border: 2px solid var(--marron);
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    margin-left: -100%;
    transition: all 0.2s linear;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.7);
  }

  .main-nav>li {
    margin-top: 65px;
  }

  .main-nav>li>a {
    font-size: 2.1rem;
  }

  .main-nav.show {
    margin-left: 0;
  }

  .nav-links {
    background-color: var(--verde3);
    display: flex;
    flex-direction: column;
    width: 85%;
    height: 100%;
    align-items: center;
    justify-content: flex-start;
  }

  .link-item {
    margin-top: 2rem;
    color: black;
    text-decoration: none;
    font-weight: bold;
    position: relative;
  }

  .button-menu {
    z-index: 200;
    width: 40px;
    height: 40px;
    border: none;
    display: flex;
    background: none;
    flex-direction: column;
    /* Pondrá un span debajo del otro*/
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    left: -140px;
  }

  /* 
    Dibujamos una línea recta por cada span creando el tipico menu hamburguesa
  */

  .button-menu span {
    width: 50px;
    height: 6px;
    margin-bottom: 5px;
    position: relative;
    background: #444444;
    border-radius: 3px;
    transform-origin: 4px 0px;
    transition: all 0.2s linear;
  }

  /* 
    con los span dibujamos un icono de cerrar 
    para mostrar cuándo la navegación este abierta 
  */

  .button-menu.close span {
    opacity: 1;
    transform: rotate(45deg) translate(0px, 0px);
    background: black;

  }

  .button-menu.close span:nth-child(2) {
    transform: rotate(-45deg) translate(-15px, 5px);
  }

  .button-menu.close span:nth-child(3) {
    display: none;
  }

  .imgContainer {
    position: relative;
    left: -110px;
  }

  .products>h2 {
    font-size: 2.2rem;
  }

  .products>p {
    margin-top: 4px;
    font-size: 1.4rem;
  }

  .services>h2 {
    font-size: 2.2rem;
  }

  .listaProductos>div {
    margin-top: -28px;
  }

  footer {
    padding: 1rem 1rem;
  }

  footer p {
    font-weight: bold;
  }

  .listaProductos h3,
  .listaProductos span,
  .services h3,
  .services span {
    font-size: 1.5rem;
  }

  nav .submenu {
    background-color: var(--verde3);
    z-index: 150;
    border: solid 1px;
  }

  nav .submenuSecondLevel {
    background-color: var(--verde3);
    border-left: 1px solid var(--verde1);
    border: solid 1px;
  }

  #searchbar {
  display: none;
}

.container-carrito {
  margin:1%;
  width: 98%;
}

.hide-mobile {
  display: none;
}

.show-mobile {
  display: block;
}

.product-identification {
  display: initial;
} 

.col-uno {
  width: 30%;
}
.col-dosJS {
  text-align: left;
}

.cart-product-price{
  margin:0 0 10px 16px;
}

.boton-vaciar-carrito{
  margin: 10px auto;
}

 /* Responsividad carrito de compras */
 .movie-title-large {
  font-size: 36px;
}

.schedule-item {
  flex-wrap: wrap;
  text-align: center;
}

.schedule-item + .schedule-item {
  margin-top: 12px;
}

.show-date,
.show-place {
  width: 32%;
  padding: 4px;
}

.show-city {
  width: 33%;
  padding: 4px;
}

.buy-ticket-button {
  width: 60%;
  margin-top: 12px;
  padding: 12px 2px;
}


.products-container {
  justify-content: center;
}

.product-identification {
  flex-direction: column;
  align-items: flex-start;
}

.cart-product-title {
  margin-top: 6px;
}

.product-qtd-input {
  display: block;
  margin: 0 auto;
}

.remove-product-button {
  display: block;
  margin: 8px auto 0;
}

}

@media screen and (min-width: 759px) and (max-width: 992px) {
  #containerProducts {
    margin: 25px auto 0 auto;
  }

  #containerProducts>div {
    border: 2px solid var(--marron);
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    margin-left: -100%;
    transition: all 0.2s linear;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.7);
  }

  .main-nav>li {
    margin-top: 65px;
  }

  .main-nav>li>a {
    font-size: 2.1rem;
  }

  .main-nav.show {
    margin-left: 0;
  }

  .nav-links {
    background-color: var(--verde3);
    display: flex;
    flex-direction: column;
    width: 85%;
    height: 100%;
    align-items: center;
    justify-content: flex-start;
  }

  .link-item {
    margin-top: 2rem;
    color: black;
    text-decoration: none;
    font-weight: bold;
    position: relative;
  }

  .button-menu {
    z-index: 200;
    width: 40px;
    height: 40px;
    border: none;
    display: flex;
    background: none;
    flex-direction: column;
    /* Pondrá un span debajo del otro*/
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    left: -130px;
  }

  /* 
    Dibujamos una línea recta por cada span creando el tipico menu hamburguesa
  */

  .button-menu span {
    width: 50px;
    height: 6px;
    margin-bottom: 5px;
    position: relative;
    background: #444444;
    border-radius: 3px;
    transform-origin: 4px 0px;
    transition: all 0.2s linear;
  }

  /* 
    con los span dibujamos un icono de cerrar 
    para mostrar cuándo la navegación este abierta 
  */

  .button-menu.close span {
    opacity: 1;
    transform: rotate(45deg) translate(0px, 0px);
    background: black;

  }

  .button-menu.close span:nth-child(2) {
    transform: rotate(-45deg) translate(-15px, 5px);
  }

  .button-menu.close span:nth-child(3) {
    display: none;
  }

  .imgContainer {
    position: relative;
    left: -100px;
  }

  .products>h2 {
    font-size: 2.2rem;
  }

  .products>p {
    margin-top: 4px;
    font-size: 1.4rem;
  }

  .services>h2 {
    font-size: 2.2rem;
  }

  footer {
    padding: 1rem 1rem;
  }

  footer p {
    font-weight: bold;
  }

  .listaProductos h3,
  .listaProductos span,
  .services h3,
  .services span {
    font-size: 1.5rem;
  }

  nav .submenu {
    background-color: var(--verde3);
    z-index: 150;
    border: solid 1px;
  }

  nav .submenuSecondLevel {
    background-color: var(--verde3);
    border-left: 1px solid var(--verde1);
    border: solid 1px;
  }

}

@media screen and (min-width: 993px) and (max-width: 1200px) {
  #containerProducts {
    margin: 25px auto 0 auto;
  }

  #containerProducts>div {
    border: 2px solid var(--marron);
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    margin-left: -100%;
    transition: all 0.2s linear;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.7);
  }

  .main-nav>li {
    margin-top: 65px;
  }

  .main-nav>li>a {
    font-size: 2.1rem;
  }

  .main-nav.show {
    margin-left: 0;
  }

  .nav-links {
    background-color: var(--verde3);
    display: flex;
    flex-direction: column;
    width: 85%;
    height: 100%;
    align-items: center;
    justify-content: flex-start;
  }

  .link-item {
    margin-top: 2rem;
    color: black;
    text-decoration: none;
    font-weight: bold;
    position: relative;
  }

  .button-menu {
    z-index: 200;
    width: 40px;
    height: 40px;
    border: none;
    display: flex;
    background: none;
    flex-direction: column;
    /* Pondrá un span debajo del otro*/
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    left: -115px;
  }

  /* 
    Dibujamos una línea recta por cada span creando el tipico menu hamburguesa
  */

  .button-menu span {
    width: 50px;
    height: 6px;
    margin-bottom: 5px;
    position: relative;
    background: #444444;
    border-radius: 3px;
    transform-origin: 4px 0px;
    transition: all 0.2s linear;
  }

  /* 
    con los span dibujamos un icono de cerrar 
    para mostrar cuándo la navegación este abierta 
  */

  .button-menu.close span {
    opacity: 1;
    transform: rotate(45deg) translate(0px, 0px);
    background: black;

  }

  .button-menu.close span:nth-child(2) {
    transform: rotate(-45deg) translate(-15px, 5px);
  }

  .button-menu.close span:nth-child(3) {
    display: none;
  }

  .imgContainer {
    position: relative;
    left: -100px;
  }

  .imgContainer strong {
    font-size: 2.2rem;
  }

  .products>h2 {
    font-size: 2.2rem;
  }

  .products>p {
    margin-top: 4px;
    font-size: 1.4rem;
  }

  .services>h2 {
    font-size: 2.2rem;
  }

  footer {
    padding: 1rem 1rem;
  }

  footer p {
    font-weight: bold;
  }

  .listaProductos h3,
  .listaProductos span,
  .services h3,
  .services span {
    font-size: 1.5rem;
  }
}

nav .submenu {
  background-color: var(--verde3);
  z-index: 150;
  border: solid 1px;
}

nav .submenuSecondLevel {
  background-color: var(--verde3);
  border-left: 1px solid var(--verde1);
  border: solid 1px;
}

@media screen and (min-width: 1201px) and (max-width: 1600px) {

  .hidden {
    display: none;
  }

  #containerProducts>div {
    border: 2px solid var(--marron);
  }

  #containerProducts {
    margin: 25px auto 0 auto;
  }

  .products>h2 {
    font-size: 2.2rem;
  }

  .products>p {
    margin-top: 4px;
    font-size: 1.4rem;
  }

  .services>h2 {
    font-size: 2.2rem;
  }

  footer {
    padding: 1rem 1rem;
  }

  footer p {
    font-weight: bold;
    font-size: 1.2rem;
  }

  .nosotros h2 {
    font-size: 2.2rem;
  }

  .contNosotros {
    font-size: 1.4rem;
  }

  .main-nav>li>a {
    font-size: 1.9rem;

  }

  .main-nav>li>ul a {
    font-size: 1.5rem;
  }

  .listaProductos h3,
  .listaProductos span,
  .services h3,
  .services span {
    font-size: 1.5rem;
  }

  .imgContainer strong {
    font-size: 2rem;
  }

}

/* Responsividad carrito de compras */
@media (max-width: 584px) {
  .movie-title-large {
    font-size: 36px;
  }

  .schedule-item {
    flex-wrap: wrap;
    text-align: center;
  }

  .schedule-item + .schedule-item {
    margin-top: 12px;
  }

  .show-date,
  .show-place {
    width: 32%;
    padding: 4px;
  }

  .show-city {
    width: 33%;
    padding: 4px;
  }

  .buy-ticket-button {
    width: 60%;
    margin-top: 12px;
    padding: 12px 2px;
  }


  .products-container {
    justify-content: center;
  }

  .product-identification {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-product-title {
    margin-top: 6px;
  }

  .product-qtd-input {
    display: block;
    margin: 0 auto;
  }

  .remove-product-button {
    display: block;
    margin: 8px auto 0;
  }
}

@media (max-width: 470px) {
  .about-movie-image {
    width: 160px;
  }

  .main-footer-container {
    flex-direction: column;
  }

  .movie-title-medium {
    margin-bottom: 16px;
  }
  .navbar-item{
    margin-left:-115px;
  }
  #searchbar {
    display: none;
  }

  #miBoton {
    width: 100px;
    height: 50px;
    margin-left: 85px;
    font-size: 15px;
    align-items: center;
  }
}






