@font-face {
    font-family: 'Co Headline';
    src: url('fonts/CoHeadline-Bold.woff2') format('woff2'),
    url('fonts/CoHeadline-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Co Headline';
    src: url('fonts/CoHeadline-Light.woff2') format('woff2'),
    url('fonts/CoHeadline-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Co Headline';
    src: url('fonts/CoHeadline-Regular.woff2') format('woff2'),
    url('fonts/CoHeadline-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:root {
  --red: #337671;
  --red-2: #DB1428;
  --green: #66A262;
  --golden: #CAA241;
  --golden-2: #F5C34B;
  --white: #fff;
  --black: #212121;
  --grey: #D9D9D9;
  --grey-2: #F6F3F3;
  --grey-3: #F7F5F5;
  --grey-4: #79809A;
  --orange: #EA3A13;
}

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  font-size: 100%;
  list-style-type: none;
  font-family: "Roboto";
  font-weight: normal;
  color: var(--black);
  font-size: 16px;
}
ul {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Co Headline', sans-serif;
}

a{
  text-decoration: none;
}

.centrado-y {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.centrado-x {
  display: flex;
  justify-content: center;
  align-items: center;
}

.centrado-horizontal-espaciado {
  display: flex;
  justify-content: space-between;
  align-content: center;
}

h2 {
  font-size: 40px;
  font-family: "Co Headline";
  font-weight: 700;
}

h3 {
  font-size: 23px;
  font-family: "Co Headline";
  font-weight: 700;
}

h4 {
  font-size: 19px;
  font-family: "Co Headline";
  font-weight: 700;
}

h5 {
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
  margin-bottom: 16px;
}

.text-black {
  color: var(--black);
}

.text-red {
  color: var(--red) !important;
}

.text-grey {
  color: #898989;
}

.text-grey-3 {
  color: var(--grey-3);
}

.text-grey-4 {
  color: var(--grey-4);
}

.text-black-2 {
  color: var(--black-2);
}

.text-green {
  color: var(--green);
}

.text-sub {
  border-bottom: 1px solid var(--black);
}

.ft-10 {
  font-size: 10px;
}

.ft-11 {
  font-size: 11px !important;
}

.ft-12 {
  font-size: 12px;
}

.ft-13 {
  font-size: 13px;
}

.ft-14 {
  font-size: 14px;
}

.ft-15 {
  font-size: 15px !important;
}

.ft-16 {
  font-size: 16px;
}

.ft-17 {
  font-size: 17px;
}

.ft-18 {
  font-size: 18px;
}

.ft-19 {
  font-size: 19px;
}

.ft-22 {
  font-size: 22px;
}

.ft-24 {
  font-size: 24px;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.contenedor-producto {
  width: 100%;
  height: 100%;
  max-height: 680px;
  position: relative;
  display: none;
}

.contenedor-producto img {
  border-radius: 10px;
}

.imagen-fondo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Nav */

.nav-promo {
  background-color: var(--red);
  color: var(--white);
  padding-top: 1rem;
  font-weight: 800;

}

.nav-middle {
  background-color: var(--grey-3);
}

.nav-middle .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
  font-size: 12px;
  padding: 14px 0;
}

.nav-middle .container a,
.nav-middle .container p{
  color: var(--black);
  font-size: 12px;
  padding: 0;
  margin: 0;
}

.nav-middle .container .centrado-x div,
.nav-middle .container .centrado-x a,
.nav-middle .container .centrado-x p{
  padding-right: 2vw;
}

.nav-middle .promo p, .nav-middle .promo a{
  color: var(--red);
  font-size: 15px;
}

.nav-middle .promo a {
  text-decoration: underline;
}

.nav-middle .fw-700 a{
  transition: 0.1s all ease-in;
}

.nav-middle .fw-700 a:hover{
  transform: scale(1.05);
}

.navbar-toggler-icon {
  filter: invert(81%) sepia(5%) saturate(1321%) hue-rotate(191deg) brightness(92%) contrast(97%);
}

.tiempo_restante {
  border: 2px solid var(--white);
  padding-inline: 5px;
  margin-inline: 5px;
  text-align: center;
}

.categorias li {
  margin-left: 1.5rem;
  transition: 0.1s all ease-in;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 14px;
}

.categorias li a {
  color: var(--black);
}

.categorias li:hover {
  transform: scale(1.1);
}

.categorias li a:hover {
  font-weight: 800;
}

.categoria-selecionada {
  margin-bottom: 15px;
  border-bottom: 3px solid var(--red);
}

.nav-acciones a li span{
  font-size: 13px;
}

.nav-link {
  font-size: 14px;
  font-weight: 300;
  font-family: "Co Headline";
  white-space: nowrap;
}

.nav-link span {
  margin-left: 0.5rem;
  margin-top: 3px;
}

.close {
  padding: 10px 5px 10px 22px;
}

.categorias {
  margin-bottom: 0;
  padding: 15px 0;
}

.menu-responsive .navbar-collapse ul{
  background: var(--grey-2);
}

.menu-responsive .navbar-collapse ul{
  width: 100%;
  padding: 0;
}

.menu-responsive .navbar-collapse li{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-responsive .navbar-collapse a{
  padding: 8px 20px 8px 15px;
  border-bottom: 1px solid var(--grey-2);
  background: white;
}

.n-items {
  position: absolute;
  top: -10px;
  right: -7px;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  font-size: 8px !important;
  background-color: var(--golden-2);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  color: black;
  font-weight: 700;
}

/*Footer*/

.footer-top .container{
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  padding: 25px 0;
  border-bottom: 5px solid rgba(33, 33, 33, 0.05);
}

.footer-top .container .info{
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 70%;
}

.footer-top .contendor-form {
  padding-right: 35px;
  border-right: 5px solid rgba(33, 33, 33, 0.05);
}

.footer-top form {
  display: flex;
}

.footer-top form input[type="email"] {
  border: none;
  background: #F7F5F5;
  font-size: 13px;
  height: 40px;
  border-radius: 5px;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.08);
}

.footer-top form input[type="submit"] {
  border: none;
  border-radius: 9px;
  margin-left: 10px;
}

.footer-top form input[type="submit"]:hover {
  transform: scale(1.05);
}

.footer-top p {
  font-size: 22px;
  font-weight: 700;
}

.divisor {
  margin-top: 48px;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #F5C34B, #6BD68D, #EC752F , #F5C34B , #6BD68D);
}

footer {
  display: block;
  font-size: 14px;
}

.eslogan {
  color: #212121;
  font-size: 28px;
  font-weight: 700;
  line-height: 33px;
}

.footer .redes {
  display: flex;
  justify-content: start;
  align-items: center;
}

.redes a{
  margin-top: 1rem;
  margin-right: 16px;
  transition: all 0.3s ease;
}

.redes a:hover {
  transform: scale(1.1);
}

.footer .container .btn-base {
  float: right;
  height: 40px;
  align-items: center;
  display: flex;
  border-radius: 10px;
}

.footer .container .btn-base:hover {
  transform: scale(1.05);
}

.footer-bottom .container{
  padding: 0;
  font-size: 14px;
  position: relative;
  color: var(--grey-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
}

.footer a {
  color: var(--black);
}

.footer h5 {
  font-size: 18px;
  color: var(--orange);
  margin-top: 2rem;
}

.footer .col {
  margin: 0 1rem;
}

footer .list-unstyled li{
  margin-top: 8px;
}

/*Botones*/
.btn-base {
  padding: 4px 12px !important;
  font-weight: 700;
  color: var(--white) !important;
  border-radius: 3px;
  transition: 0.5s all ease;
  cursor: pointer;
}

.btn-base:hover {
  transform: scale(1.05);
}

.c-rojo {
  background-color: var(--red);
  color: var(--white) !important;
}

.c-rojo:hover {
  transform: scale(1.1);
}

.c-rojo-2 {
  background-color: var(--red-2);
}

.c-rojo-2:hover {
  transform: scale(1.1);
}

.c-dorado {
  background-color: var(--golden);
  color: var(--white) !important;
}

.c-blanco {
  background-color: var(--white);
  color: var(--red) !important;
}

.c-blanco-2 {
  background-color: var(--white);
  color: var(--red-2) !important;
  border: 2px solid var(--red-2);
}

.c-blanco-2:hover {
  transform: scale(1);
  background-color: var(--red-2);
  color: var(--white) !important;
}


.btn-ver-producto {
  width: 180px;
  height: 44px;
  border-radius: 5px;
  background: var(--white);
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  font-weight: 700;
  position: absolute;
  bottom: 5%;
  right: 10%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-ver-producto:hover {
  transform: scale(1.05);
}

/*Utilies*/
.imagen-fondo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  object-fit: cover;
  height: 100%;
}

.imagen-fondo-2 {
  position: absolute;
  height: 100%;
  width: auto;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}


.imagen-fondo-3 {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/*Main*/

.banner-info {
  background-color: var(--red);
  color: var(--white);
  padding: 25px 0 20px 0;
}

.tarjeta {
  position: relative;
}

.tarjeta .btn-base {
  position: absolute;
  z-index: 100;
  bottom: 50px;
  right: 50px;
  display: flex;
  align-items: center;
  padding: 11px 20px !important;
}

.tarjeta .btn-base:hover {
  transform: scale(1.05);
}

.opciones-cuenta .btn-base:hover {
  font-size: 17px;
}

.contenedor-opciones {
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(51, 51, 51, 0.19);
  padding: 30px;
}

.opciones-cuenta {
  width: 100%;
  padding: 0;
}

.opciones-cuenta li {
  display: flex;
  justify-content: start;
  padding: 0px 17px;
  align-items: center;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  width: 100%;
  margin-bottom: 10px;
  height: 53px;
  cursor: pointer;
}

.opciones-cuenta li:not(.seleccionado) {
  opacity: 0.4;
}

.opciones-cuenta li.seleccionado {
  border: 1px solid var(--red);
  color: var(--red);
  font-weight: 600;
}

.contenedor-opciones .btn-base {
  width: 100%;
  display: flex;
  height: 46px;
  justify-content: center;
  align-items: center;
}

.contenedor-opciones .btn-base:hover {
  font-size: 17px;
  transform: scale(1);
}

.carrusel_productos {
  padding-bottom: 50px;
}

.section-sommiers {
  margin: 50px 0;
}

.producto {
  margin-inline: 0.5rem;
  border-radius: 10px;
  border: 1px solid #EBEBEB;
  background: var(--white);
}

.producto .ver {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  cursor: pointer;
}

.producto .etiqueta-nuevo {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.producto .etiqueta-tiempo {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  border-radius: 20px;
  border: 2px solid var(--green);
  background: transparent;
  display: flex;
  padding: 10px 7.55px 10px 11px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
}

.producto .etiqueta-tiempo span {
  margin-top: 2px;
}

.producto .ver-mas {
  transition: all 0.5s ease;
}

.producto .ver-mas:hover {
  transform: scale(1.1);
}

.precios {
  position: absolute;
  right: 1rem;
  top: 0;
  text-align: end;
  display: flex;
  flex-direction: column;
}

.precios .precio {
  padding: 2px 5px 3px 5px;
  font-weight: 800;
  color: var(--red);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 6px;
}

.precios .precio span {
  font-size: 23px;
}

.precios .precio-anterior {
  font-size: 12px;
  color: #A6A5A5;
  font-weight: 500;
}

.precios .precio-anterior span{
  text-decoration: line-through;
  text-decoration-color: #EC1D24;
}

.precios .ahorro {
  font-size: 12px;
  color: var(--green);
  font-weight: 900;
}

.info {
  position: relative;
}

.producto .medidas {
  display: flex;
  margin-bottom: 1rem;
}

.caracteristicas {
  padding-bottom: 1rem;
  border-bottom: 1px solid #EBEBEB;
}

.caracteristicas img{
  border: 2px solid rgba(33, 33, 33, 0.10);
}

.producto .cuotas {
  border-radius: 0px 10px 10px 0px;
  background: var(--red);
  height: 28px;
  padding: 5px 5px 0px 5px;
}


.cuotas {
  color: #FFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 13px;
  line-height: 22px;
  text-align: center;
}

.coutas .cuota {
  background-color: red !important;
}

.cuotas option {
  text-decoration: none;
  box-shadow: 0 0 0px #FEF8E9;
}

.section-producto {
  margin-top: 80px;
}

.producto select, .producto select option,
.section-producto .cuota {
  background-color: var(--red);
  border: none;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.producto select:focus, .section-producto select:focus {
  border: 0px;
  box-shadow: 0 0 0px #FEF8E9;
  outline: none;
}

.slick-brands-arrows {
  cursor: pointer;
  padding: 5px 10px;
  position: absolute;
  bottom: 0;
  z-index: 10;
  transition: all 0.3s ease;
}

.prev {
  right: 40px;
}

.next {
  right: 0;
}

.prev:hover, .next:hover {
  transform: scale(1.1);
}

.section-tipos {
  margin-bottom: 80px;
}

.section-tipos .row {
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}

.section-tipos .tipo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #EBEBEB;
  padding: 22px 0;
  transition: all 0.5s ease;
}

.section-tipos .tipo:not(.last):hover {
  box-shadow: inset 0 0 20px red;
}

.section-tipos .tipo:hover img{
  transform: scale(1.15);
}


.section-tipos .tipo.last {
  background: #F7F5F5;
}

.section-promos {
  margin-bottom: 100px;
}

.section-nuevos h3 {
  color: rgba(0, 0, 0, 0.55);
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.section-nuevos .c-rojo-2 {
  background-color: var(--red-2);
  width: 162px;
  height: 44px;
  flex-shrink: 0;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.section-nuevos .c-rojo-2:hover {
  transform: scale(1.1);
}

.section-nuevos .ver {
  position: absolute;
  right: 15%;
  bottom: 15%;
  cursor: pointer;
  display: none;
}

.section-nuevos .activo {
  display: block;
}

.contendedor-imagen {
  position: relative;
}

.contendedor-imagen img {
  position: absolute;
  right: 0;
  top: 0;
}

.section-nuevos {
  margin-bottom: 100px;
}

.video {
  margin-inline: 3rem;
  margin-bottom: 100px;
}

.section-ventajas {
  margin-bottom: 130px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.section-ventajas .contenedor-ventajas {
  max-width: 940px;
}

.section-ventajas .contenedor-ventajas .ventaja{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--red);
  color: var(--white);
  width: 196.84px;
  height: 31.05px;
}

.contenedor-ventajas .row {
  align-items: start;
}

.section-categoria{
  margin: 80px 0 40px 0;
}

.section-categoria p{
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
}

.filtros {
  font-size: 15px;
}

.sub-filtro {
  height: 2px;
  color: var(--red);
  background-color: var(--red);
  opacity: 1;
}

.check {
  width: 28px;
  height: 25px;
}

.filtro-seleccionado {
  display: flex;
  align-items: center;
}

.section-productos form button[type="submit"] {
  border: none;
  width: 162px;
  height: 44px;
  border-radius: 10px;
  margin-top: 50px;
}

.section-productos form button[type="submit"]:hover {
  transform: scale(1.05);
}

.section-productos hr {
  margin-bottom: 0;
}

.section-productos .producto {
  margin-inline: 0;
}

/*Acordeon*/

.accordion {
  --bs-accordion-bg: var(--white);
}

.accordion-body {
  padding: 0;
}

.accordion-header button {
  border-radius: 0px !important;

}

.accordion-item {
  border: none;
  border-radius: 0px !important;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--white);
  color: var(--black);
}

.accordion-button.collapsed:focus, .accordion-button.collapsed:active {
  box-shadow: none !important;
}

.accordion-button:not(.collapsed):focus, .accordion-button.collapsed:active {
  box-shadow: none !important;
}
/*configuracion inicial*/
.accordion-button::after {
  background-image: url("../images/iconos/abajo.png");
  transform: var(--bs-accordion-btn-icon);
}


/*cuando no esta activo*/
.accordion-button:not(.collapsed)::after {
  background-image: url("../images/iconos/abajo.png");
  transform: var(--bs-accordion-btn-icon);
}

/*cuando esta activo*/
.accordion-button[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.form-check {
  margin-bottom: 5px;
}

.form-check-input {
  cursor: pointer;
  box-shadow: none;
}

.form-check-input:focus {
  cursor: pointer;
  box-shadow: none;
  border-color: #bfbfbf;
}

.form-check-input:checked {
  background-color: var(--red);
  border-color: var(--red);
  box-shadow: 0px 0px 5px red;
}

.filtro-aplicado {
  display: flex;
  width: 260px;
  height: 50px;
  padding: 13px 21px;
  justify-content: space-between;
  align-items: center;
  color: rgba(33, 33, 33, 0.20);
  font-size: 12px;
  font-weight: 800;
  border-radius: 15px;
  border: 1px solid #EBEBEB;
}

select#filtro, select#filtro option {
  background-color: var(--white);
  border: none;
  color: var(--black);
  font-size: 16px;
  font-weight: 800;
  width: 130px;
}

select#filtro option {
  font-size: 16px;
  font-weight: 500;
}

select#filtro:focus {
  border: 0px;
  box-shadow: 0 0 0px #FEF8E9;
  outline: none;
}

.section-catalogo a {
  display: flex;
  align-items: center;
  padding: 6px 0px 7px 17px;
  width: 200px;
  height: 40px;
  border-radius: 10px;
  background: #337671;
}

.section-catalogo {
  margin: 100px;
}

.section-catalogo .btn-base:hover {
  transform: scale(1.05);
}

.section-producto .efecto-sombra {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30%;
  opacity: 0.46;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.98) 100%);
}

.section-producto .c-producto{
  position: relative;
}

.etiqueta-tipo {
  position: absolute;
  left: 25px;
  top: 25px;
  width: 88px;
  height: 144px;
}

.review {
  width: 144px;
  height: 245.23px;
  flex-shrink: 0;
  border-radius: 15px;
  border: 3px solid #29D088;
  background: #2AB67A;
  color: var(--white);
  position: absolute;
  right: 25px;
  top: 0;
  padding: 10px;
}


.review div .cerrar {
  display: flex;
  width: 25px;
  height: 25px;
  padding: 7.75px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  color: var(--black);
  background-color: var(--white);
  position: absolute;
  top: -40px;
  right: -20px;
  cursor: pointer;
}

.ir-review {
  font-size: 11px;
  font-weight: 700;
  color: white;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%,0);
  text-align: center;
  transition: all 0.3s ease;
}

.ir-review:hover {
  color: var(--black);
}

.miniaturas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: absolute;
  bottom: 5%;
  padding-inline: 20px;
}

.miniaturas img{
  margin-inline: 5px;
  border: 5px solid var(--white);
  width: 93px;
  height: 62px;
  flex-shrink: 0;
}

.suenho {
  margin-right: 10px;
  margin-top: -50px;
}

.info-devolucion {
  max-width: 450px;
  margin-right: 30px;
}

.circulo-naranja {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid #FB451D;
  background: #FFF;
}

.c-destacados {
  display: flex;
  justify-content: space-between;
  width: 75%;
  position: relative;
}

.c-destacados ul {
  padding: 0;
}

.c-destacados ul li {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.c-destacados ul li div{
  margin-right: 5px;
}

.etiquetas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 20px;
}

.etiquetas img{
  margin-bottom: 1rem;
}

.s-medida {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 20px;
  width: 85%;
  border-radius: 5px;
  height: 53px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #FFF;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.section-producto .precios {
  position: static;
}

.section-producto .precios .precio, .section-carrito .precios .precio{
  box-shadow: none;
  margin-bottom: 6px;
  background: transparent;
}

.precio-promocion {
  border-radius: 5px;
  background: #7B9B50;
  width: 166px;
  height: 55px;
  cursor: pointer;
}

.precio-promocion span {
  color: #CCFD86;
  font-weight: 700;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: -0.13px;
}

.contenedor-cantidad {
  display: flex;
  width: 82px;
  height: 55px;
  padding: 0px 10px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.14) !important;
  background: #FFF;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.08);
}

.select-cantidad {
  width: 50px;
  height: 53px;
  background-color: transparent;
  border: none;
  color: var(--black) !important;
  -webkit-appearance: none;
  appearance: none;
  background-image: url('../images/iconos/arrow-select.svg');
  background-position: center right;
  background-repeat: no-repeat;
}

.select-cantidad option{
  background-color: var(--white);
  border: none;
  color: var(--black);
}

.btn-add-carrito {
  display: flex;
  width: 75%;
  height: 55px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 5px;
  border-bottom: 2px solid #891900;
  background: #337671;
  font-size: 20px;
  font-weight: 900;
  line-height: 15px;
  color: var(--white);
  margin-left: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.08);
}

.btn-add-carrito:hover {
  color: var(--white);
  font-size: 21px;
}

.info-cuotas {
  flex-shrink: 0;
  border: 1px solid #EAE7E4;
  background: #FFF;
  color: #787471;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 10px 15px;
  margin: 33px 0;
}

.info-cuotas p {
  margin-bottom: 8px;
}

.info-cuotas .titulo {
  font-weight: 700;
  color: var(--black);
}

.section-producto .cuotas {
  background-color: var(--red);
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-producto #cuota {
  background-color: var(--red);
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-info li {
  font-size: 18px;
  width: 200px;
  height: 50px;
  color: var(--black);
  margin-bottom: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.cuerpo-info {
  border-top: 1px solid #EAEAEA;
  padding-top: 24px;
  font-size: 15px;
  line-height: 30px;
}

.info-seleccionada {
  font-weight: 700;
}

.medida {
  height: 130px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, .14);
  box-shadow: 0px 1px 4px 0 rgba(0,0,0,.08);
}

.contenedor-cantidad {
  width: 110px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 60px;
  padding: 0;
  border: 1px solid var(--color-border, #EAEAEA);
  background-color: white;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.contenedor-cantidad button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #F3F5F6;
  border: none;
}

.contenedor-cantidad input{
  text-align: center;
  width: 35px;
  border: none;
  background-color: transparent;
}

.contenedor-cantidad form p {
  color: #626974;
  font-weight: 500;
}

.section-carrito {
  margin: 100px 0;
}

.section-carrito .producto-imagen {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.23);
  background: rgba(255, 255, 255, 0.00);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  width: 152px;
  height: 132px;
  flex-shrink: 0;
}

.section-carrito thead {
  border: transparent;
}

.section-carrito tbody tr td{
  padding-bottom: 30px;
  padding-top: 30px;
}

.section-carrito tbody tr {
  position: relative;
}

.section-carrito tbody tr:last-of-type{
  border-color: white;
}

.section-carrito tbody tr:not(:last-of-type):after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #F5C34B, #6BD68D, #EC752F , #F5C34B , #6BD68D); /* Aplica el gradiente */
}

#form-cupon {
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--3, #C0C8E2);
  background: #FFF;
}

#form-cupon input[type="text"] {
  text-align: start;
  border: none;
  width: 40%;
  height: 35px;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  margin-left: 20px;
}

#form-cupon input[type="text"]:focus{
  border: none;
  outline: none;
  box-shadow: none;
}

#form-cupon button{
  font-weight: 400;
  width: 130px;
  height: 100%;
  border-radius: 0px 10px 10px 0px;
  border: 2px solid #D9D9D9;
  background: #D9D9D9;
  float: right;
  color: rgba(36, 54, 93, 0.70);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.btn-mas {
  color: var(--red);
  font-size: 22px;
  font-weight: 700;
  line-height: 20px;
  border-radius: 50%;
  background-color: var(--white);
  width: 23px;
  height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.info-pedido {
  color: black;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  background-color: var(--grey-2);
  border-radius: 0px 10px 10px 0;
  padding: 50px 3vw 0 3vw !important;
  height: 100%;
}

.btn-pedido {
  display: flex;
  width: 147px;
  height: 55px;
  padding: 15px 0px 16px 0px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 5px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
}

.section-carrito .btn-pedido:hover {
  transform: scale(1);
  font-size: 17px;
}

.carrito {
  border-radius: 10px;
  border: 1px solid #A3A3A3;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.carrito .col-xl-8 {
  padding: 50px 50px 0 50px;
  margin-bottom: 0;
}

.section-carrito-contado .container{
  font-weight: 500;
  padding-top: 5%;
  padding-bottom: 400px;
}

.section-carrito-contado h4 {
  font-size: 20px;
  font-weight: 500;
  text-transform: none;
}

.section-carrito-contado .form-group {
  margin-bottom: 1rem;
}

.section-carrito-contado .img-producto {
  width: 120px;
  height: 120px;
}

#notas {
  height: 188px;
}

.section-carrito-contado textarea::placeholder {
  white-space: pre-line;
}

.section-carrito-contado .form-check {
  margin-bottom: 1.5rem;
  font-size: 15px;
  line-height: 25px;
}

.section-carrito-contado .columa-producto {
  font-size: 15px;
  margin-bottom: 2rem;
}

.contenedor-pago {
  border-radius: 6px;
  border: 1px solid var(--color-border, #EAEAEA);
  padding: 2rem;
  color: var(--color-text-dark, #041E42);
  font-size: 14px;
}

.contenedor-pago .row, .tarjeta-metodo-pago {
  border-bottom: 1px solid var(--color-border, #EAEAEA);
  padding:  1.5rem 0;
}

.contenedor-pago .row:last-of-type, .tarjeta-metodo-pago:last-of-type {
  padding:  1.5rem 0 0 0;
  border: none;
}

.contenedor-pago .titulo {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contenedor-pago .contenido {
  margin: 1.5rem 0 0 0;
  color: #626974;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
}

.btn-volver {
  display: inline-block;
  background-color: white;
  color: var(--black);
  padding: 15px 35px;
  font-size: 15px;
  margin-bottom: 2rem;
  border: 2px solid var(--red);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.5s ease;
}

.btn-volver:hover {
  background-color: var(--red);
  color: var(--white);
}

.section-carrito-contado .c-rojo {
  height: 50px;
  border: none;
}

.section-carrito-contado .c-rojo:hover {
  transform: scale(1);
  box-shadow: inset 0 0 10px 3px rgba(255, 255, 255, 0.5);
}

.section-gracias {
  max-width: 924px;
  margin-top: 80px;
}

.section-gracias .contenedor {
  border-radius: 6px;
  border: 1px dashed var(--Color-Text-Light, #626974);
  background: var(--Bg-White, #FFF);
  height: 132px;
  max-width: 100%;
  width: 924px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-gracias th {
  font-weight: 400;
  padding-inline: 20px;
  padding-bottom: 10px;
}

.section-gracias td {
  font-weight: 600;
  padding-inline: 20px;
}

.section-gracias .contenedor-pago {
  width: 100%;
  margin: 30px 0 150px 0;
}

.section-gracias .img-producto {
  margin-right: 16px;
}
.img-absolute {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    right: 0;
    bottom: 0;
    margin: auto;
}
#dropZone {
  width: 350px;
  height: 150px;
  margin-top: 1rem;
  padding: 20px;
  border: 2px dashed #ccc;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  margin-bottom: 3rem;
}

#input_archivo {
  display: none;
}

#imagenIcono {
  max-width: 200px;
  margin-top: 10px;
}

#nombre_archivo {
  color: var(--green);
}

.relacionamiento {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.relacionamiento .section-group {
  display: flex;
  align-items: center;
  color: #626974;
}

.relacionamiento input[type='radio'] {
  -webkit-appearance: none;
  width: 20px;
  height: 19px;
  border-radius: 5px;
  border: 1px solid #000;
  background: rgba(217, 217, 217, 0.00);
  transition: 0.5s all linear;
  margin: -5px 5px -5px 0;
}

.relacionamiento input[type='radio']:checked {
  background-color: var(--red);
  box-shadow: 0 0 3px var(--red);
}

.info-credito {
  color: rgba(0, 0, 0, 0.40);
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.32px;
  padding: 0 18px;
  border-top: 1px solid var(--color-border, #EAEAEA);
  border-bottom: 1px solid var(--color-border, #EAEAEA);
  padding: 2rem;
}

.section-contacto {
  margin: 150px 0;
}

.section-contacto h2{
  font-weight: 900;
  color: var(--red);
  letter-spacing: -1px;
}

.section-contacto .info {
  max-width: 640px;
  font-size: 14px;
  margin-bottom: 50px;
}

#consulta {
  height: 100px;
  resize: none;
}

.section-contacto button {
  border: none;
  display: flex;
  width: 177.06px;
  height: 55px;
  padding: 17px 21.8px 18px 22px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 5px;
  margin-top: 24px;
}

.section-contacto button:hover {
  transform: scale(1.05);
}

.contendor-formulario {
  border-right: 1px solid #E4E2E2;
  background: #F7F5F5;
  padding: 50px 75px;
}

.section-contacto table{
  width: 80%;
  font-size: 15px;
}

.section-contacto table tbody tr{
  display: flex;
  justify-items: start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.tipo-medida {
  font-size: 13px;
  padding: 38px 20px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #FFF;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tipo-medida .c-blanco {
  border-radius: 5px;
  font-size: 15px;
  border: 2px solid #337671;
  background: #FFF;
  width: 100%;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tipo-medida .c-blanco:hover {
  transform: scale(1);
  background-color: var(--red);
  color: var(--white) !important;
}

.section-medidas {
  background: #F8F8F8;
  padding: 100px 75px 180px 75px;
}

.info-medida {
  max-width: 901px;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 15px;
}

.section-medidas .titulo {
  font-size: 48px;
  color: var(--red);
  margin-bottom: 19px;
  padding: 0;
  text-align: center;
}

.section-medidas .sub-titulo {
  font-size: 24px;
  margin-bottom: 19px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 36px;
  text-align: center;
}

.section-medidas .contenedor-contacto {
  background-color: var(--red);
  padding: 40px 30px;
  color: var(--white);
  width: 100%;
}

.section-medidas .contenedor-contacto p{
  margin: 0;
  font-size: 14px;

}

.section-medidas .contenedor-contacto .btn-base {
  display: flex;
  width: 122px;
  height: 60px;
  padding: 20px 11x 20px 11px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 5px;
  border: 2px solid #FFF;
  margin-top: 1rem;
}

.section-medidas .contenedor-contacto .btn-base:hover {
  transform: scale(1);
  background-color: var(--white);
  color: var(--red) !important;
}

.section-caracteristicas {
  margin-bottom: 50px;
}

.section-caracteristicas h2{
  color: var(--red);
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 37px;
  margin: 120px 0 80px 0;
}

.section-caracteristicas .caracteristica {
  display: flex;
  align-items: center;
  padding: 40px;
  padding-left: 0;
  background: #FFF;
  box-shadow: 0px 0px 14px 6px rgba(51, 51, 51, 0.05);
  margin-inline: 16px;
  margin-bottom: 50px !important;
  height: 480px;
}

.section-caracteristicas .caracteristica div {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-around;
  height: 100%;
}

.section-caracteristicas .caracteristica h3{
  color: #3D3C3C;
  font-size: 25px;
  font-weight: 700;
  line-height: 27.5px;
  margin-bottom: 25px;
}

.section-caracteristicas .caracteristica p{
  color: #3D3C3C;
  font-size: 14px;
  line-height: 21px;
}

.section-caracteristicas .caracteristica .nicho{
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.section-historia, .section-distribuidores {
  margin: 180px 80px 240px 80px;
  font-size: 14px;
}

.section-historia h3 {
  margin-bottom: 16px;
}

.historia-1 {
  margin-top: 40px;
  margin-right: 106px;
}

.historia-2 {
  margin-top: 8vw;
  margin-right: 106px;
  padding-right: 55px;
  padding-top: 34px;
  background-color: white;
}

.img-historia {
  max-width: 50%;
  position: absolute;
  z-index: -1;
  left: 25%;
}

.historia-3 {
  margin-top: 75px;
  margin-left: 80px;
}

.historia-4 {
  margin-top: 40px;
  margin-right: 110px;
}

.section-historia .row {
  margin-bottom: 80px;
}

.section-terminos {
  max-width: 922px;
  margin: 100px 0 180px 0;
}

.section-terminos p{
  margin-bottom: 4px;
}

.section-terminos h4 {
  margin: 36px 0 18px 0;
  font-weight: 600;
}

.section-distribuidores .distribuidores {
  background-color: #F8F8F8;
  padding: 50px;
  max-width: 446px;
}

.section-distribuidores .table-responsive {
  background: #E4E8EF;
  margin-top: 100px;
}

.section-distribuidores .table {
  border: transparent;
}

.section-distribuidores .contenedor {
  margin-inline: 100px;
}

.section-distribuidores .table .con-sub td{
  padding-bottom: 0;
}

.section-distribuidores .table .con-sub + tr td{
  opacity: 0.8;
  padding-top: 0;
}

.section-distribuidores .info-adicional {
  padding: 80px 32px 32px 32px;
  background: #F8F8F8;
}

.section-promo {
  position: relative;
}

.section-promo .fondo{
  position: absolute;
  top: 0;
  width: 100%;
}
.ofertas-destacadas {
  padding-top: 50px;
}

.ofertas-destacadas:last-of-type {
  margin-bottom: 100px;
}

.ofertas-destacadas h2 {
  color: var(--orange);
  font-size: 40px;
  font-weight: 900;
  line-height: 44px;
  letter-spacing: -0.8px;
  margin-bottom: 0;
}

.ofertas-destacadas p {
  font-size: 20px;
  font-weight: 900;
  line-height: 29px;
  letter-spacing: -0.4px;
  color: #000;
  margin-bottom: 50px;
}

.section-promo .img-promo {
  border-radius: 15px 15px 0px 0px;
  width: 100%;
}

.section-promo .carrusel_productos {
  padding-bottom: 0px;
}

.promo {
  margin-inline: 1rem;
  position: relative;
}

.promo .titulo {
  font-size: 20px;
  font-weight: 800;
  line-height: 22px;
}

.promo .sub-titulo {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 8px;
}

.promo .cantidad {
  opacity: 0.5;
}

.promo a {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  transform: all 0.5s ease;
}

.promo a:hover {
  color: var(--orange);
}

.promo .cuerpo {
  padding: 20px 30px 50px 30px;
}

.descuento {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--white);
  background-color: #ff4400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 15px;
  right: 15px;
}

.descuento span {
  font-size: 12px;
  color: var(--white);
}

.descuento .porcentaje {
  font-size: 28px;
  font-weight: 600;
  margin-top: -10px ;
}

.descuento .porcentaje span{
  font-size:42px;
  font-weight: 800;
}

.ofertas-destacadas .banners img{
  max-height: 330px;
}



@media (min-width: 1400px) {
  .section-promo .producto {
    margin-inline: 0;
    zoom: 0.9;
  }
}

@media (max-width: 1400px) {
  .section-caracteristicas .caracteristica {
    flex-direction: column;
    height: 600px;
    padding: 40px;
  }

  .section-caracteristicas .caracteristica img{
    height: 200px !important;
  }

  .ofertas-destacadas .banners img{
    max-height: 290px;
  }
}

@media (max-width: 1200px) {
  .nav-middle .promo {
    flex-direction: column;
  }

  .nav-middle .promo p, .nav-middle .promo a {
    padding-right: 0 !important;
  }

  .section-caracteristicas .caracteristica {
    height: 650px;
  }

  .ofertas-destacadas .banners img{
    max-height: 240px;
  }

  .opciones-cuenta li {
    margin-inline: 8px;
  }

  .footer-top .container{
    display: flex;
    flex-direction: column;
  }

  .footer-top .container .contendor-form {
    border: none;
  }

  .footer-top .container .info{
    width: 100%;
    margin-top: 40px;
  }

  .footer-top p {
    font-size: 18px;
  }

  .footer-top .contendor-form {
    padding-right: 0;
    width: 90%;
  }

  .etiqueta-tipo {
    width: 60px;
    height: auto;
  }

  .carrito .col-xl-8 {
    padding: 30px 30px 0 30px;
    margin-bottom: 0;
  }

  .section-historia, .section-distribuidores {
    margin: 100px 0px 140px 0px;
  }

  .historia-1 {
    margin-right: 50px;
  }

  .section-distribuidores .distribuidores {
    background-color: #F8F8F8;
    padding: 30px;
    max-width: 100%;
    margin-top: 32px;
  }
}

@media (min-width: 992px) {
  .nav-acciones ul a:hover{
    transform: scale(1.1);
  }

}

@media (max-width: 992px) {
  .footer-bottom .container{
    justify-content: center;
    flex-direction: column;
  }

  .section-gracias .contenedor {
    width: 100%;
  }

  .ofertas-destacadas .banners img{
    max-height: 400px;
  }

  .footer .redes {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
  }

  .contenedor-producto {
    height: 400px;
  }

  .section-ventajas {
    margin-bottom: 50px;
  }

  .etiqueta-tipo {
    width: 70px;
    height: auto;
  }

  .contenedor-cantidad {
    flex-direction: column;
    width: 50px;
    height: 110px;
  }

  .section-carrito-contado .container{
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .section-contacto {
    margin: 50px 0;
  }

  .section-caracteristicas .caracteristica {
    flex-direction: column;
    height: auto !important;
    padding: 0px;
    margin: 0 !important;
  }

  .section-caracteristicas .caracteristica img{
    height: 200px !important;
  }

  .historia-1 {
    margin-right: 0;
  }

  .historia-2, .historia-3, .historia-4 {
    margin: 0;
  }

  .section-historia, .section-distribuidores {
    margin: 70px 0px 70px 0px;
  }

  .section-distribuidores .contenedor {
    margin-inline: 0px;
  }

  .section-distribuidores .table-responsive {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .promo {
    margin-inline: 2rem;
  }

  .nav-middle .promo {
    flex-direction: row;
  }

  .footer-top p {
    font-size: 15px;
  }

  .section-catalogo {
    margin-inline: 0;
  }

  .review {
    display: none;
  }

  .menu-info li {
    font-size: 15px;
    width: auto;
    height: 50px;
    margin-inline: 8px;
  }

  .section-carrito .producto-imagen {
    width: 100px;
    height: auto;
  }

  .section-carrito .carrito table {
    zoom: 0.8;
  }

  .btn-volver {
    padding: 10px 30px;
  }

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

  .relacionamiento .section-group {
    margin-bottom: 8px;
  }

  .section-gracias .contenedor-pago {
    margin: 30px 0 50px 0;
  }

  .contendor-formulario {
    padding: 30px;
  }

  .section-terminos {
    margin: 50px 0 80px 0;
  }

  .promo .cuerpo {
    padding: 20px 0px 50px 0px;
  }

  .ofertas-destacadas h2, .section-medidas .titulo  {
    font-size: 32px !important;
  }

  .section-medidas .sub-titulo {
    font-size: 18px;
    line-height: 24px;
  }

  h2 {
    font-size: 32px;
  }
}

@media (max-width: 570px) {
  .section-caracteristicas .caracteristica {
    height: auto;
  }

  .nav-middle .promo {
    flex-direction: column;
    margin-bottom: 16px;
  }

  .tarjeta .btn-base {
    position: absolute;
    z-index: 100;
    bottom: 30px;
    right: 20px;
    display: flex;
    align-items: center;
    padding: 11px 20px !important;
    font-size: 13px;
  }

  .video {
    margin-inline: 0;
  }

  .etiqueta-tipo {
    width: 50px;
    height: auto;
  }

  .c-destacados {
    flex-direction: column;
    justify-content: start;
    width: 75%;
  }

  .etiquetas {
    top: 40px;
  }

  .section-carrito .carrito table {
    zoom: 0.7;
  }

  .section-carrito .info-pedido {
    zoom: 0.8;
    padding: 30px !important;
  }

  .contenedor-cantidad {
    flex-direction: column;
    width: 40px;
    height: 90px;
  }

  .section-gracias .contenedor {
    zoom: 0.75;
  }

  .section-gracias .table-responsive td, .section-gracias .table-responsive th {
    padding-inline: 10px !important;
  }

  .contenedor-pago {
    zoom: 0.85;
  }

  .section-contacto .ft-22 {
    font-size: 18px;
  }

  .section-medidas {
    padding: 50px 30px 50px 30px;
  }

  .section-caracteristicas h2 {
    margin-top: 80px;
    margin-bottom: 0px;
  }
}

@media (max-width: 360px) {

}

.section-preguntas .accordion-item {
  background-color: var(--white);
}

.section-preguntas {
  margin-bottom: 5rem;
}

.section-preguntas .accordion-item {
  border-top: 1px solid #CCC;
}

.section-preguntas .accordion-button {
  background-color: var(--white) !important;
  border-radius: 0px !important;
}

.section-preguntas .accordion-button[aria-expanded="true"] span{
  font-weight: 600;
}

.section-preguntas .accordion-button span{
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
}


@media screen and (max-width: 992px) {
  .contenedor-preguntas {
    margin: 0;
  }
    .has-bg {
        padding: 45px 0;
    }
    .banner-info {
      padding: 15px;
      font-size: 14px;
    }
    .banner-info img {
      max-width: 24px;
    }
}

button {
  border: none;
}
.medida {
  height: auto;
  font-size: .75em;
}
.b-rojo {
  background-color: var(--red);
  color: #fff;
}
.miniaturas {
  display: block;
}
.active>.page-link, .page-link.active {
  background-color: var(--red);
  border-color: var(--red);
}
.page-link, .page-link:hover {
  color: var(--red);
}
.user-sidebar a {
    display: flex;
    align-items: center;
    color: var(--red);
}
.user-sidebar img {
    width: 1.5em;
    height: 1.5em;
    object-fit: contain;
    margin-right: 1em;
}
.miniaturas {
    position: static;
}
.efecto-sombra {
    display: none;
}
.miniaturas img {
    border-color: #eee;
    cursor: pointer;
}
.has-bg {
    background: url('../images/home.jpg') center center no-repeat;
    background-size: cover;
    padding: 90px 0;
}
.fixed-button {
    position: fixed;
    bottom: 15px;
    right: 15px;
    border-radius: 50%;
    z-index: 10000;
}
.fixed-button img {
    height: 1em;
    width: 1em;
}
.fixed-button a {
    background: #25d366;
    color: #fff !important;
    width: 1.75em;
    line-height: 1.5;
    height: 1.75em;
    text-align: center;
    border-radius: 50%;
    position: relative;
    font-size: 2em;
    display: block;
}
.fixed-button .message {
    position: absolute;
    right: 100%;
    top: 0;
    bottom: 0;
    margin: auto 0.5em auto auto;
    white-space: nowrap;
    background: #fff;
    padding: 0.5em;
    border: 2px solid var(--red);
    height: 2.5em;
    line-height: 1.25;
    pointer-events: none;
    visibility: hidden;
    transition: 0.3s;
    opacity: 0;
    transform: translateX(3em);
}
.fixed-button:hover .message {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}
.fixed-button:hover::before {
    opacity: 0;
}
.fixed-button::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #25d366;
    opacity: 0.5;
    border-radius: 50%;
    animation: infiniteScale 3s infinite;
}
.home-slider {
    position: relative;
}
.home-slider .slick-prev, .home-slider .slick-next {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
}
.home-slider .slick-prev {
    left: 15px;
}
.home-slider .slick-next {
    right: 15px;
}
@keyframes infiniteScale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.25);
    }
}
.precios {
  position: static;
}
.precios .precio {
  box-shadow: none;
  border-radius: initial;
  padding: 0;
  margin: 0;
}
.btn-color {
    width: 2em;
    height: 2em;
    line-height: calc(2em - 4px);
    border: 2px solid #eee;
    border-radius: 50%;
    display: block;
    transform: scale(.75);
    transition: .3s;
}
.btn-color:hover, .btn-color.active {
    border-color: #000;
    transform: scale(1);
}
label.titulo::after {
    content: '+';
}
label.titulo.active::after {
    content: '-';
}
#fileList .btn {
    right: 0;
    left: auto;
    height: 2em;
    width: 2em;
    border-radius: 50%;
    text-align: center;
    padding: 0;
}
#fileList .ratio .img-absolute {
    max-width: 80%;
    max-height: 80%;
}
#fileList span {
    text-align: center;
    font-size: .875em;
    font-weight: normal;
    color: #808080;
    display: block;
    line-height: 1.25;
}
.logo img {
  max-height: 70px;
}
