@charset "utf=8";

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  font-family: 'Ubuntu', sans-serif;
}

body {
  background-color: #f3ece9;
}


/* HEADER */

#header {
  display: flex;
  justify-content: space-between;
  outline: 2;
  border: 3px solid #000000;
  border-radius: 6px;
  font-size: 16px;
  gap: 8px;
  line-height: 1.5;
  padding: 12px 16px;
  box-shadow: 4px 4px 0 #000000;
  margin: 0 1em;
  vertical-align: middle;
  align-items: center;
}

/* SACAR BOX SHADOW DEL HEADER */

#logo img {
  width: 100%;
  width: 7em;
}


/* MENU */


/* TRANSICIÓN MENÚ HAMBURGUESA */

.visuallyHidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1em;
  width: 1em;
}

.hamburger {
  margin: 0 auto;
  width: 1.45em;
  height: 1.45em;
  position: relative;
}

.hamburger .bar {
  padding: 0;
  width: 1.45em;
  height: 4px;
  background-color: #000000;
  display: block;
  border-radius: 6px;
  transition: all .1s ease-in-out;
  position: absolute;
}

.bar1 {
  top: 0;
}

.bar2,
.bar3 {
  top: 0.65em;
}

.bar3 {
  right: 0;
}

.bar4 {
  bottom: 0;
}

.hamburger3 .bar1 {
  transform-origin: 5%;
}

.hamburger3 .bar4 {
  transform-origin: 5%;
}

.checkbox3:checked+label>.hamburger3>.bar1 {
  transform: rotate(45deg);
  height: 4px;
  width: 42px;
}

.checkbox3:checked+label>.hamburger3>.bar3 {
  transform: rotate(45deg);
  height: 4px;
  background-color: transparent;
}

.checkbox3:checked+label>.hamburger3>.bar2 {
  transform: rotate(-45deg);
  height: 4px;
  background-color: transparent;
}

.checkbox3:checked+label>.hamburger3>.bar4 {
  transform: rotate(-45deg);
  height: 4px;
  width: 42px;
}


/* FIN TRANSICIÓN MENÚ HAMBURGUESA */

#menuhamburguesa {
  display: flex;
  flex-direction: row;
}

#menuhamburguesa .hamburguesa {
  padding: 1em;
  font-size: 1.3em;
  position: relative;
  z-index: 9999;
  color: #000000;
}

#menuhamburguesa #menu-btn {
  margin: 1em;
  display: none;
  z-index: 9999;
}

.menu {
  width: 50%;
  height: fit-content;
  padding-top: 5em;
  margin-right: 1.2em;
  margin-top: 1.2em;
  position: fixed;
  right: -100%;
  transition: 0.1s;
  z-index: 8000;
  top: 0%;
  background-color: #f3ece9;
  ;
  box-shadow: 4px 4px 0 #000000;
  border-radius: 4px;
}

.menu li {
  display: block;
  text-align: right;
  color: #000000;
  border: solid 1.5px #000000;
}

#redondeo {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.menu li a {
  color: #000000;
  font-weight: bolder;
  display: block;
  padding: .7em;
}

.menu li a:hover {
  color: #ec622e;
  background-color: #000000;
}

#menu-btn:checked~.menu {
  right: 0;
}

#menuhamburguesa .hamburguesa:hover {
  z-index: 9999;
  position: relative;
}

#menuvisible {
  display: none;
}

@media (width >=576px) {
  #menuhamburguesa {
    display: none;
  }

  #menuvisible {
    display: flex;
  }

  #menuvisible .menu_btns {
    display: flex;
    justify-content: space-around;
  }

  .menu_btns li {
    padding-left: .9em;
    margin-top: .6em;
  }

  .menu_btns a {
    color: #000000;
    font-weight: bold;
  }
}

/* FIN MENU */

/* FIN HEADER */


/* NOSOTROS */


#nosotros {
  position: relative;
  width: 100%;
  
  overflow: hidden;
  z-index: 1;
  padding: 1.5em 0em;
}

#nosotros ul {
  overflow: hidden;
  height: 100%;
  white-space: nowrap;
  animation: scrollText 70s infinite linear;
  margin: 0;
  font-size: 0;
  display: flex;
  justify-content: space-between;
  width: fit-content;

}

#nosotros ul li img {
  height: 200px;
  width: auto;
}

@keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-80%);
  }
}

/* FIN NOSOTROS */


/* SEGUIR VIENDO */

#videos {
  margin: 1em;
}

hr {
  margin: .5em 1em;
}

#videos {
  padding: 1em;
}

#videos li {
  padding: 1em;
}

@media (width >=576px) {
  #videos {
    display: flex;
  }

  #videos li {
    padding-inline-end: .5em;
  }
}


/* IMAGENES FIGCAPTION */

figure {
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 6px 6px 0 #000000;
  border-radius: 4px;
}

figure img {
  object-fit: cover;
  object-position: left center;
  width: 100%;
  height: 100%;
  display: block;
}

figcaption {
  background-color: #00000070;
  color: #f3ece9;
  padding: .5em;
  line-height: 1em;
  text-transform: uppercase;
  font-weight: 700;
  position: absolute;
  inset: 0;
  transform: translateY(calc(100% - 2em));
  transition: all .6s ease;
}

@media only screen and (width >=576px) {
  figcaption {
    transform: translateY(calc(100% - 3em));
  }
}

@media only screen and (width >=768px) {
  figcaption {
    transform: translateY(calc(100% - 2em));
  }
}

figure:hover figcaption {
  background-color: #00000070;
  transition: all .3s ease;
  transform: translateY(0);
  display: grid;
  text-align: center;
  place-items: center;
  place-content: center;
  padding-inline: 2em;
  color: #ec622e;
}

figcaption span {
  display: block;
  font-size: .75em;
  color: #f3ece9;
  margin-block-start: .5em;
  text-transform: none;
  text-transform: uppercase;
}

/* FIN IMAGENES FIGCAPTION */

/* FIN SEGUIR VIENDO */


/* BANNERS */

#banner {
  position: relative;
  width: 100%;
}

#banner img {
  padding: 1em 0em;
}

.image1 {
  display: block;
  width: 100%;
}

.image2 {
  display: none;
}

@media only screen and (width >=576px) {

  .image1,
  .image3 {
    display: none;
  }

  .image2 {
    display: block;
    width: 100%;
  }
}

.image3 {
  display: none;
}

@media only screen and (width >=768px) {

  .image1,
  .image2 {
    display: none;
  }

  .image3 {
    display: block;
    width: 100%;
  }
}

#boton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  outline: 0;
  grid-gap: 8px;
  align-items: center;
  background: 0 0;
  border: 2px solid #000000;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 16px;
  gap: 8px;
  justify-content: center;
  line-height: 1.5;
  overflow: hidden;
  padding: 12px 16px;
  text-decoration: none;
  text-overflow: ellipsis;
  transition: all .14s ease-out;
  white-space: nowrap;
  box-shadow: 6px 6px 0 #000000;
}

#boton {
  color: #000000;
  font-weight: bold;
  text-transform: capitalize;
}

#boton:hover {
  color: #ec622e;
  background-color: #000000;
}

#boton:focus-visible {
  outline-offset: 1px;
}

/* FIN BANNERS */


/* CATEGORÍAS */

.index {
  color: #000000;
  margin-left: 1em;
  text-transform: capitalize;
}

#categoria {
  margin: 2em;
}

#categoria li {
  margin: auto;
  padding: 1em;
}

#categoria li p {
  font-weight: bold;
  text-align: center;
  text-transform: capitalize;
  padding: .5em;
}

#categoria li img {
  width: 100%;
  border: solid 2px #000000;
  border-radius: 6px;
  box-shadow: 4px 4px 0 #000000;
}

#categoria li a {
  color: #000000;
}

#categoria li a:hover {
  color: #ec622e;
}

@media only screen and (width >=576px) {
  #categoria {
    display: flex;
  }
}

/* FIN CATEGORÍAS */


/* FOOTER */

footer {
  text-align: center;
  padding: 1em;
  font-size: x-small;
  background-color: black;
  color: white;
  width: auto;
}

#menufooter {
  display: flex;
}

.menunovo {
  margin: auto;
  margin-top: 3em;
}

footer ul li {
  list-style: none;
  color: white;
  padding: 0.2em;
}

ul li a:hover {
  color: #ec622e;
}

footer ul li a {
  color: white;
  text-decoration: none;
}

h6 {
  text-transform: uppercase;
  font-size: small;
}

footer img {
  width: 30%;
  margin-top: 3em;
  padding: auto;
}

footer p {
  margin-top: 1em;
  margin-bottom: 1em;
}

@media only screen and (width >=768px) {

  footer ul li {
    font-size: medium;
  }

  footer img {
    padding: 2em;
    width: 20%;
  }

}

/* ELECTRODOMÉSTICOS.HTML / VEHICULOS.HTML / ELECTRONICOS.HTML */

#contenedor {
  display: flex;
  align-items: center;
  margin: 1.5em 1em;
}

#contenedor img {
  display: block;
  width: .5em;
  margin-right: .5em;
}

#ruta p {
  font-weight: bold;
  color: #ec622e;
  text-transform: uppercase;
  text-align: center;
}

#ruta p a {
  color: #000000;
}

#ruta p a:hover {
  color: #ec622e;
}

.titulos {
  display: block;
  width: 100%;
  margin: 2em 3em 0em 0em;
  padding: .7em;
  background-color: #ec622e;
  color: #f3ece9;
  text-align: left;
  text-transform: uppercase;
  font-weight: bolder;
  font-size: larger;
}

.titulosverdes {
  display: block;
  width: 100%;
  margin: 1em 0em 1em 0em;
  padding: .7em;
  background-color: #66b170;
  color: #f3ece9;
  text-align: left;
  text-transform: uppercase;
  font-weight: bolder;
  font-size: larger;
}

.titulosverdes p {
  margin: 0em 1em;
}



/* HELADERAS */

#modelosa1050 {
  padding: 1em 1em;
  text-transform: uppercase;
}

img {
  width: 100%;
}

/* ACORDEON */

.accordion {
  margin: auto;
  width: 100%;
}

.accordion input {
  display: none;
}

.box {
  position: relative;
  background: #66b170;
  height: 64px;
  transition: all .15s ease-in-out;
  margin: 2em 1em;
  border-radius: 4px;
}

.box-title {
  width: calc(100% - 40px);
  height: 64px;
  line-height: 64px;
  padding: 0 20px;
  display: inline-block;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-transform: uppercase;
  font-weight: bolder;
  color: #000000;
}

.box::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  border: solid 2px #000000;
  border-radius: 6px;
  box-shadow: 4px 4px 0 #000000;
}

.box-content {
  width: 100%;
  padding: 30px 20px;
  font-size: 11pt;
  color: rgba(0, 0, 0, .54);
  display: none;
  background-color: #f3ece9;
}

.box-close {
  position: absolute;
  height: 64px;
  width: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  display: none;
}

input:checked+.box {
  height: auto;
  margin: 1em;
}

input:checked+.box .box-title {
  border-bottom: 1px solid rgba(0, 0, 0, .18);
}

input:checked+.box .box-content,
input:checked+.box .box-close {
  display: inline-block;
}

.arrows section .box-title {
  padding-left: 44px;
  width: calc(100% - 64px);
}

.arrows section .box-title:before {
  position: absolute;
  display: block;
  content: '\203a';
  font-size: 18pt;
  left: 20px;
  top: -2px;
  transition: transform .15s ease-in-out;
  color: #000000;
}

input:checked+section.box .box-title:before {
  transform: rotate(90deg);
}

.tiempoestimado {
  display: flex;
}

.tiempoestimado img {
  width: 1em;
  margin-right: .5em;
}

#imagenprobar {
  margin: 1.5em 0em;
}

#imagenprobar img {
  width: 9em;
  margin-right: 1em;
  border: 2px solid #000000;
  border-radius: 6px;
  padding: 12px 16px;
  box-shadow: 4px 4px 0 #000000;
}

@media only screen and (width >=768px) {
  #imagenprobar img {
    max-width: 9em;
  }
}

.tiempo {
  text-transform: uppercase;
  font-weight: bold;
  color: #ec622e;
}

.pdc {
  text-transform: uppercase;
  font-weight: bold;
  color: #ec622e;
  margin: 1em 0em;
}

.pdcul a {
  color: #000000;
  font-weight: bolder;
  display: block;
  padding: .2em 0em;
}

.pdcul a:hover {
  color: #ec622e;
}

h4 {
  color: #000000;
  font-size: medium;
  text-transform: uppercase;
  margin: 1em 1em;
}

.opciones {
  color: #ec622e;
  font-size: small;
  text-transform: uppercase;
  padding-top: 1.5em;
}

.hr {
  margin-top: 3em;
  margin-bottom: 4em;
}

.tutorial img {
  display: block;
  width: 100%;
  padding: 2em 0em;
}

@media only screen and (width >=768px) {
  .tutorial {
    display: flex;
  }

  .tutorial p {
    margin-left: 1em;
    margin-top: 2em;
  }

  .tutorial img {
    max-width: 50%;
  }
}

#audio img {
  padding: 1em 0em;
}

@media only screen and (width >=768px) {
  #audio img {
    max-width: 50%;
  }
}

.preguntarating img {
  width: 100%;
}

@media only screen and (width >=576px) {

  .preguntarating img {
    max-width: 50%;

  }
}

@media only screen and (width >=768px) {

  .preguntarating img {
    max-width: 30%;

  }
}

.uno {
  text-transform: uppercase;
  font-weight: bold;
  color: #ec622e;
  padding-top: 2em;
  padding-bottom: 1em;
}

.dos {
  padding-top: 1em;
}

#texto {
  padding-top: 2em;
}

/* FIN ACORDEON */

/* FIN HELADERAS */

/* FAQ */

#faq {
  color: #000000;
  margin-left: 1em;
  margin-top: 2em;
}

.cajaconsulta {
  margin: 1em;
  display: block;
  border: #66b170 solid 2px;
  border-radius: 6px;
}

.contenido {
  padding: 1em;
}

.titulosfaq {
  font-size: larger;
  text-transform: uppercase;
  background-color: #66b170;
  padding: .5em 1em;
  color: #f3ece9;
}

.pregunta {
  text-transform: uppercase;
  font-weight: bold;
  font-size: medium;
  margin: .5em 0em;
}

.cajaconsulta p {
  margin-top: .5em;
}

#linkeo {
  color: #000000;
  font-weight: bold;
}

#linkeo:hover {
  color: #ec622e;
}

#grillaconsulta {
  margin-bottom: 3em;
}

@media (width >=768px) {
  #grillaconsulta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* FIN FAQ */

/* CONTACTO */

.container{
  padding: 2em;
  background-color: #66b170;
  border-radius: 6px;
  margin: 1em;
}

.container form .form-row{
  display: flex;
  margin: 32px 0;
}

form .form-row .input-data{
  width: 100%;
  height: 3em;
  margin: 1em;
  position: relative;
}

.input-data input, textarea{
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  border-bottom: 2px solid rgba(0,0,0, 0.12);
  border-radius: 6px;
}

.input-data input:focus ~ label, .textarea textarea:focus ~ label,
.input-data input:valid ~ label, .textarea textarea:valid ~ label{
  transform: translateY(-20px);
  font-size: 14px;
  color: #ec622e;
}
.textarea textarea{
  resize: none;
  padding-top: 10px;
}
.input-data label{
  position: absolute;
  pointer-events: none;
  bottom: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.textarea label{
  width: 100%;
  bottom: 40px;
  background: #f3ece9;
}
.input-data .underline{
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
}
.input-data .underline:before{
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.input-data input:focus ~ .underline:before,
.input-data input:valid ~ .underline:before,
.textarea textarea:focus ~ .underline:before,
.textarea textarea:valid ~ .underline:before{
  transform: scale(1);
}
.submit-btn .input-data{
  overflow: hidden;
  height: 45px!important;
  border: solid 2px #000000;
  border-radius: 6px;
  box-shadow: 4px 4px 0 #f3ece9;
  padding: 0em 1em;
}
.submit-btn .input-data .inner{
  width: 100%;
  position: absolute;
  left: 100%;
  background:#000000;

}
.submit-btn .input-data:hover .inner{
  left: 0;
}
.submit-btn .input-data input{
  background: none;
  border: none;
  color: #f3ece9;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
@media (max-width: 700px) {
  .container .text{
    font-size: 30px;
  }
  .container form{
    padding: 10px 0 0 0;
  }
  .container form .form-row{
    display: block;
  }
  form .form-row .input-data{
    margin: 35px 0!important;
  }
  .submit-btn .input-data{
    width: 40%!important;
  }

  .submit-btn .input-data .inner {
    width: 300px;
  }
}

.form-row select {
  padding: 1em;
  border: 0px;
  border-radius: 6px;
  text-transform: uppercase;
}



/* FIN CONTACTO */

/* NOVEDADES */

@media (width >=768px) {
  .wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

  }

  .one {
    grid-column: 1 / 3;
    grid-row: 1 / 4;

  }

  .two {
    grid-column: 3;
    grid-row: 1;
  }

  .three {
    grid-column: 3 / 3;
    grid-row: 2 / 3;
    margin: 0em 1em;
  }

  .four {
    grid-column: 3;
    grid-row: 3;

  }

}

.wrapper {
  display: grid;
  width: 100%;
}

.one {
  margin: 1em;
}

.one img {
  display: block;
  border-radius: 6px;
  width: 100%;
}

.descripcion {
  margin: 1em;
  padding: 1em;
  background-color: #66b170;
  border-radius: 5px;
  color: #f3ece9;
  height: fit-content;

}

.titulonovedades {
  text-align: center;
  margin-top: 1em;
}

.four {
  text-align: center;
  margin-top: .5em;
}

.four a {
  color: #000000;
  font-weight: bolder;
  text-transform: uppercase;
  border: #000000 solid 1px;
  padding: .5em;
  border-radius: 6px;
  box-shadow: #000000 4px 4px 0;

}

@media (width >=576px) {
  .fotoimg {
    display: flex;
  }
}

/* FIN NOVEDADES */

/* INSUMOS */

:root {
  --spacing-s: 8px;
  --spacing-m: 16px;
  --spacing-l: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 64px;
  --width-container: 1200px;
}

.hero-section {
  align-items: flex-start;
  background-color: #f3ece9;
  display: flex;
  min-height: 100%;
  justify-content: center;
  padding: var(--spacing-xxl) var(--spacing-l);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: var(--spacing-l);
  grid-row-gap: var(--spacing-l);
  max-width: var(--width-container);
  width: 100%;
}

@media(min-width: 540px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width: 960px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  list-style: none;
  position: relative;
}

.card:before {
  content: '';
  display: block;
  padding-bottom: 150%;
  width: 100%;
  box-shadow: 6px 6px 0 #000000;
  border-radius: 6px;
}

.card__background {
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  bottom: 0;
  filter: brightness(0.75) saturate(1.2) contrast(0.85);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: center;
}

.card__content {
  left: 0;
  padding: var(--spacing-l);
  position: absolute;
  top: 0;
  color: #f3ece9;
  background-color: #ec622e;
  border-radius: 6px;
}

.card__category {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-s);
  text-transform: uppercase;
}

.card__heading {
  color: var(--text-lighter);
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
  line-height: 1.4;
}

/* FIN INSUMOS */

/* INSUMOSELECTRODOMESTICOS */

@media (width >=768px) {
  .grilla {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.mercadolibre {
  color: #000000;
  font-weight: bold;
}

.mercadolibre:hover {
  color: #ec622e;
}

.tituloinsumos {
  margin-top: 2em;
  margin-left: 1em;

}

.cajaconsulta2 {
  margin: 1em;
  display: block;
  border: #ec622e solid 2px;
  border-radius: 6px;
}

.titulosfaq2 {
  font-size: larger;
  text-transform: uppercase;
  background-color: #ec622e;
  padding: .5em 1em;
  color: #f3ece9;
}

/* FIN INSUMOSELECTRODOMESTICOS */

/* SIAM */

#siam{
  padding: 1em 1em;
  text-transform: uppercase;
}

#caracteristicas{
  margin-top: 3em;
  margin-bottom: 3em;
}

#simbolo{
  text-align: center;
  color: #66b170;
}

#cualidad{
  display: block;
  margin: auto;
  margin-top: 0.5em;
  color:#f3ece9;
  background-color: #66b170;
  width: 40%;
  padding: 1em;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}


@media (width >= 768px) {
  #cualidades {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }

    #cualidad{
      width: 80%;
    }

}


.video{
  width: 80%;
  display: block;
  margin: auto;
  margin-bottom: 3em;
  border-radius: 4px;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 #000000;
}


@media (width >= 768px) {
  #cualidades {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }

    #cualidad{
      width: 80%;
    }

    .video{
      width: 70%;
    }

  }
/* FIN SIAM */