html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

/*Globales*/
body {
  background-color: #e6e6e6 !important;
}
img {
  width: 100%;
  margin: 0 auto;
}
a {
  text-decoration: none;
}
p {
  margin: 0;
}

/*Utilidades*/
.banner-desk {
  display: none;
}
@media (min-width: 768px) {
  .banner-desk {
    display: block;
  }
  .banner-mob {
    display: none;
  }
}

/*Video*/
.contenedor-video {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
  margin-left: 0;
}
#my-video {
  background: #dd281e;
  margin: auto;
  width: 100%;
  height: 80vh;
}
@media (max-width: 1024px) {
  #my-video {
    height: 65vh;
  }
}

@media (max-width: 780px) {
  #my-video {
    width: 95%;
    margin: auto;
  }
}

@media (max-width: 600px) {
  #my-video {
    height: 55vh;
  }
}
@media (max-width: 400px) {
  #my-video {
    height: 40vh;
  }
}
@media (max-width: 330px) {
  #my-video {
    height: 35vh;
  }
}
@media (max-width: 290px) {
  #my-video {
    height: 32vh;
  }
}

/*Banner Principal*/
.banner-principal-septiembre {
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
}

/*Categorias colores*/
.contenedor-categorias-patrio {
  width: 100%;
  margin: 10px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.categoria-patrio {
  flex: 0 0 calc(33.3% - 5px);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.patrio-verde {
  background-color: #009e54;
}
.patrio-rojo {
  background-color: #df2926;
}
.patrio-verde .categoria-patrio-titulo,
.patrio-rojo .categoria-patrio-titulo {
  color: #ffff;
}
.patrio-blanco {
  background-color: #fff;
}
.patrio-blanco .categoria-patrio-titulo {
  color: #393636;
}
.categoria-patrio-titulo {
  padding: 10px 0;
  text-align: center;
  font-weight: bold;
  font-size: 0.8em;
  font-family: 'Roboto';
}
@media (min-width: 330px) {
  .categoria-patrio-titulo {
    font-size: 1em;
  }
}
@media (min-width: 468px) {
  .categoria-patrio-titulo {
    font-size: 1.1em;
  }
}
@media (min-width: 648px) {
  .categoria-patrio-titulo {
    font-size: 1.3em;
  }
}
@media (min-width: 768px) {
  .categoria-patrio {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
  .categoria-patrio-img {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .categoria-patrio-titulo {
    font-size: 1.6em;
  }
}
@media (min-width: 1400px) {
  .categoria-patrio-titulo {
    font-size: 1.8em;
  }
}

/*Contenedor grid*/
.contenedor-grid {
  width: 100%;
  margin: 0 auto;
}
.grid-container {
  width: 100%;
  margin: 5px auto 10px;
  display: grid;
  grid-auto-columns: 1fr;
  gap: 0.5em;
  grid-template-areas:
    'a a'
    'b c'
    'b d'
    'e g'
    'f g'
    'h i'
    'h j'
    'k k'
    'l m'
    'l n'
    'o p';
}
@media (min-width: 600px) {
  .grid-container {
    grid-template-areas:
      'a a k k'
      'b c e g'
      'b o f g'
      'h p l m'
      'h j l n'
      'i i d d';
  }
  .grid-item:nth-child(4) .catego-img,
  .grid-item:nth-child(9) .catego-img {
    width: 30%;
  }
}
@media (min-width: 900px) {
  .grid-container {
    grid-template-areas:
      'a a b c k k'
      'e g b o h p'
      'f g l m h j'
      'i i l n d d';
  }
}
.grid-item {
  font-weight: bold;
  color: black;
  background-color: #ffff;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.grid-item:nth-child(1) {
  grid-area: a;
}
.grid-item:nth-child(2) {
  grid-area: b;
}
.grid-item:nth-child(3) {
  grid-area: c;
}
.grid-item:nth-child(4) {
  grid-area: d;
}
.grid-item:nth-child(5) {
  grid-area: e;
}
.grid-item:nth-child(6) {
  grid-area: f;
}
.grid-item:nth-child(7) {
  grid-area: g;
}
.grid-item:nth-child(8) {
  grid-area: h;
}
.grid-item:nth-child(9) {
  grid-area: i;
}
.grid-item:nth-child(10) {
  grid-area: j;
}
.grid-item:nth-child(11) {
  grid-area: k;
}
.grid-item:nth-child(12) {
  grid-area: l;
}
.grid-item:nth-child(13) {
  grid-area: m;
}
.grid-item:nth-child(14) {
  grid-area: n;
}
.grid-item:nth-child(15) {
  grid-area: o;
}
.grid-item:nth-child(16) {
  grid-area: p;
}
.info-catego,
.catego-img {
  width: 50%;
  margin: 0 auto;
}
.info-catego {
  z-index: 1;
  padding: 5px;
  line-height: 1;
}
.grid-vertical {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.grid-vertical .catego-img {
  width: 85%;
}
.grid-vertical .info-catego {
  flex: 0 0 calc(15% - 5px);
  padding: 0;
}
.grid-grande {
  justify-content: center;
}
.grid-grande .info-catego {
  flex: 0 0 calc(40% - 5px);
}
.grid-grande .catego-img {
  flex: 0 0 calc(60% - 5px);
}
.catego-gral {
  font-family: 'Roboto';
  margin-bottom: 4px;
  font-size: 0.9em;
  color: #393636;
}
.catego-linea {
  width: 28px;
  margin-bottom: 10px;
  border-bottom: 3px solid #d2261e;
}
.catego-descuento-hasta {
  text-transform: uppercase;
  font-family: 'Roboto';
  color: #d2261e;
  font-size: 0.4em;
}
.catego-descuento-porcentaje {
  font-family: 'Roboto';
  color: #d2261e;
  font-size: 1.8em;
}
.catego-descuento-porcentaje span {
  font-family: 'Roboto';
  font-size: 0.6em;
}
.catego-desecuento-desc {
  text-transform: uppercase;
  font-family: 'Roboto';
  color: #d2261e;
  font-size: 0.4em;
}
@media (min-width: 330px) {
  .catego-gral {
    font-size: 1em;
  }
  .catego-descuento-hasta {
    font-size: 0.5em;
  }
  .catego-descuento-porcentaje {
    font-size: 1.9em;
  }
  .catego-descuento-porcentaje span {
    font-size: 0.7em;
  }
  .catego-desecuento-desc {
    font-size: 0.5em;
  }
}
@media (min-width: 448px) {
  .catego-gral {
    font-size: 1.2em;
  }
  .catego-descuento-hasta {
    font-size: 0.6em;
  }
  .catego-descuento-porcentaje {
    font-size: 2em;
  }
  .catego-descuento-porcentaje span {
    font-size: 0.7em;
  }
  .catego-desecuento-desc {
    font-size: 0.6em;
  }
}
@media (min-width: 600px) {
  .catego-gral {
    font-size: 1em;
  }
  .catego-descuento-hasta {
    font-size: 0.5em;
  }
  .catego-descuento-porcentaje {
    font-size: 1.8em;
  }
  .catego-descuento-porcentaje span {
    font-size: 0.5em;
  }
  .catego-desecuento-desc {
    font-size: 0.5em;
  }
}
@media (min-width: 768px) {
  .catego-gral {
    font-size: 1.1em;
  }
  .catego-descuento-hasta {
    font-size: 0.6em;
  }
  .catego-descuento-porcentaje {
    font-size: 1.9em;
  }
  .catego-descuento-porcentaje span {
    font-size: 0.6em;
  }
  .catego-desecuento-desc {
    font-size: 0.6em;
  }
}
@media (min-width: 900px) {
  .catego-gral {
    font-size: 0.9em;
  }
  .catego-descuento-hasta {
    font-size: 0.4em;
  }
  .catego-descuento-porcentaje {
    font-size: 1.8em;
  }
  .catego-descuento-porcentaje span {
    font-size: 0.5em;
  }
  .catego-desecuento-desc {
    font-size: 0.4em;
  }
}
@media (min-width: 1200px) {
  .catego-linea {
    width: 30px;
    margin-bottom: 12px;
    border-bottom: 4px solid #d2261e;
  }
  .catego-gral {
    font-size: 1.2em;
  }
  .catego-descuento-hasta {
    font-size: 0.6em;
  }
  .catego-descuento-porcentaje {
    font-size: 2.9em;
  }
  .catego-descuento-porcentaje span {
    font-size: 0.6em;
  }
  .catego-desecuento-desc {
    font-size: 0.6em;
  }
}

/*Contenedor marcas*/
.contenedor-marcas {
  width: 100%;
  padding: 10px 0;
  margin: 0 auto;
  background-color: #ffff;
}
.marcas-titulo {
  width: 100%;
  margin: 0 auto 30px;
  padding: 25px 0 5px;
}
.marcas-titulo p {
  text-align: center;
  font-weight: bold;
  color: black;
  font-size: 1em;
}
.cuadrante-marcas {
  width: 96%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.marca-destacada {
  background-color: #fff;
  margin: 10px auto;
  border: 2px solid #cacaca;
  flex: 0 0 calc(33.3% - 20px);
  -webkit-box-shadow: 5px 5px 0px 0px #e2241b;
  -moz-box-shadow: 5px 5px 0px 0px #e2241b;
  box-shadow: 5px 5px 0px 0px #e2241b;
}
@media (min-width: 330px) {
  .marcas-titulo p {
    font-size: 1.1em;
  }
}
@media (min-width: 448px) {
  .marcas-titulo p {
    font-size: 1.2em;
  }
  .cuadrante-marcas {
    width: 94%;
  }
}
@media (min-width: 600px) {
  .contenedor-marcas {
    padding: 15px 0;
  }
  .marcas-titulo p {
    font-size: 1.3em;
  }
  .cuadrante-marcas {
    width: 92%;
  }
  .marca-destacada {
    flex: 0 0 calc(25% - 20px);
  }
}
@media (min-width: 768px) {
  .contenedor-marcas {
    padding: 20px 0;
  }
  .marcas-titulo p {
    font-size: 1.5em;
  }
  .cuadrante-marcas {
    width: 90%;
  }
  .marca-destacada {
    flex: 0 0 calc(20% - 20px);
  }
}
@media (min-width: 900px) {
  .contenedor-marcas {
    padding: 25px 0;
  }
  .marcas-titulo p {
    font-size: 1.7em;
  }
  .cuadrante-marcas {
    width: 88%;
  }
  .marca-destacada {
    flex: 0 0 calc(14% - 20px);
  }
}
@media (min-width: 1200px) {
  .contenedor-marcas {
    padding: 30px 0;
  }
  .marcas-titulo p {
    font-size: 2.2em;
  }
  .cuadrante-marcas {
    width: 83%;
  }
  .marca-destacada {
    flex: 0 0 calc(10.2% - 15px);
    margin: 10px 5px;
  }
}

/*Banner de abajo*/
.banner-recoge-en-tienda,
.banner-envio {
  width: 99%;
  margin: 5px auto;
}
