:root {
  --primario: #13306e;
  --secundario: #10306a;
  --primario_oscuro: #07265f;
  --transparencia: #fff;
  --familia_fuente: "Poppins", sans-serif;
  --titulo: "Signika", sans-serif;
  --rounded_full: 9999px;
}

body {
  margin: 0;
  font-size: 16px;
  overflow-x: hidden;
  background-color: var(--primario);
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4 {
  font-family: var(--titulo);
}

p {
  color: #444444;
}

.img-container .img_adorno {
  width: 165px;
  bottom: 21px;
  right: 77px;
}

.footer-horarios {
  margin: 0;
  padding: 0;
}

.footer-horarios .footer-titulo {
  font-size: 24px;
}

.footer-horarios .separa-10,
.footer-horarios .separa-5,
.footer-horarios .separa-20 {
  margin: 0; /* Ajusta los márgenes según sea necesario */
}

/* Estilo para la lista de horarios */
.horarios {
  list-style-type: none; /* Elimina los puntos de lista */
  padding: 0;
  margin: 0;
}

.horarios .lista_horarios {
  width: 200px;
  display: flex; /* Utilizamos Flexbox para alinear */
  justify-content: space-between; /* Día a la izquierda, horario a la derecha */
  padding: 0px 0px 9px; /* Espaciado entre elementos */
}

.horarios .dia {
  font-weight: bold;
}

.horarios .horario {
  text-align: right; /* Alinea el horario a la derecha */
}

.primer_contenedor {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
}

.segundo_contenedor {
  display: flex;
  gap: 31px;
}

.tercer_contenedor {
  width: 650px;
  margin-top: 47px;
}

.tercer_contenedor img {
  width: 100%;
}

a,
a:active,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

ul.list-unstyled {
  margin-bottom: 0;
}

/* Global */
.separa-5 {
  height: 5px;
}
.separa-10 {
  height: 10px;
}
.separa-20 {
  height: 20px;
}
.separa-40 {
  height: 40px;
}
.separa-30 {
  height: 30px;
}
.separa-50 {
  height: 50px;
}
.separa-100 {
  height: 100px;
}

.titulo {
  font-size: 45px;
  line-height: 60px;
  font-family: var(--titulo);
  font-weight: 800;
  color: var(--primario);
}

.titulo-md {
  font-size: 50px;
  line-height: 55px;
}

.titulo-lg {
  font-size: 65px;
  line-height: 70px;
}

.antetitulo {
  font-size: 22px;
  font-family: var(--titulo);
}

.subtitulo {
  color: var(--secundario);
  font-size: 24px;
}

.parrafo {
  font-size: 14px;
  line-height: 24px;
  color: #404040;
  margin-bottom: 0;
}

.text-light {
  color: var(--transparencia);
}

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

.text-secundario {
  color: var(--transparencia);
}

.text-shadow {
  filter: drop-shadow(0 1px 0 #000);
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.corte-bottom {
  width: 100%;
  left: 0;
  bottom: -1px;
  position: absolute;
}

.corte-top {
  width: 100%;
  left: 0;
  top: -1px;
  position: absolute;
}

.full {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.row-align-center {
  display: flex;
  align-items: center;
}

.row-align-center::before,
.row-align-center::after {
  content: unset;
}

.flex {
  display: flex;
}

.block {
  display: block;
}

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

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-cover {
  background-size: cover;
}

.bg-fixed {
  background-attachment: fixed;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.object-top {
  object-position: top;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.center-absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.overflow-hidden {
  overflow: hidden;
}

.limitar {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.limitar_2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.limitar_3 {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.limitar_4 {
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.animation {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.hover-effect {
  transform: perspective(1px) translateZ(0);
  position: relative;
  transition: all ease-out 0.3s;
  overflow: hidden;
}

.hover-effect::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: all ease-out 0.3s;
  z-index: -1;
}

.hover-effect:hover:before,
.hover-effect:focus:before,
.hover-effect:active:before {
  transform: scaleX(1);
}

.custom-button {
  width: 240px;
  height: 60px;
  border-radius: var(--rounded_full);
  font-family: var(--titulo);
  font-size: 16px;
  background-color: var(--primario);
  border: 1px solid transparent;
  color: var(--transparencia);
  column-gap: 12px;
  z-index: 1;
}

.custom-button-outline {
  width: 206px;
  height: 56px;
  border-color: var(--secundario);
  background-color: transparent;
  color: #343434;
  font-weight: 500;
  font-size: 14px;
}

.custom-button-outline-interior {
  width: 206px;
  height: 56px;
  border-color: var(--primario);
  background-color: transparent;
  color: #343434;
  font-weight: 500;
  font-size: 14px;
}

.custom-button-sm {
  width: 165px;
  height: 45px;
}

.custom-button:hover,
.custom-button:active,
.custom-button:focus {
  color: var(--primario);
}

.custom-button::before {
  background-color: var(--transparencia);
  border-radius: inherit;
}

.custom-button-outline::before {
  background-color: var(--secundario);
}

.custom-button-outline-interior::before {
  background-color: var(--secundario);
}

.custom-button img {
  width: 35px;
}

.custom-button:hover img,
.custom-button:active img,
.custom-button:focus img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(98%) saturate(1081%)
    hue-rotate(180deg) brightness(94%) contrast(96%);
}

.bg-primario {
  background-color: var(--primario);
}

.bg-secundario {
  background-color: var(--secundario);
}

.bg-secundario_claro {
  background-color: var(--transparencia);
}

/* Cabecera */
.navbar-fixed-top {
  z-index: 25;
  background-color: var(--primario);
  /* position: absolute; */
}

.barra_ampliada .navbar-fixed-top {
  height: 145px;
}

.barra_reducida .navbar-fixed-top {
  height: 100px;
  filter: drop-shadow(0px 5px 7.5px rgba(0, 0, 0, 0.1));
}

.navbar-brand {
  left: 50px;
  top: 30px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 100px;
  z-index: 2;
  height: auto;
  aspect-ratio: 1;
}

.barra_reducida .navbar-brand {
  left: 50px;
  top: 30px;
}

.barra_reducida .navbar-brand::before {
  background-size: 90%;
}

.navbar-brand > img {
  width: 215px;
  position: relative;
  z-index: 2;
}

.navbar-brand::before {
  content: "";
  position: absolute;
  inset: -8px -12px;
  background-image: url(/template/estandar/images/Formas/Forma-fondo-cabecera.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 95%;
  z-index: 1;
  pointer-events: none;
}

.barra_reducida .navbar-brand > img {
  width: 95px;
}

.navbar-nav {
  float: none;
  column-gap: 2px;
  height: 100%;
}

.navbar-nav::after,
.navbar-nav::before {
  content: unset;
}

.navbar-nav > li {
  display: flex;
  align-items: center;
  height: 100%;
}

.navbar-nav > li > a {
  height: 50px;
  font-weight: 200;
  color: var(--transparencia);
  font-size: 16px;
  padding: 15px 15px;
  display: inline-flex;
  text-transform: uppercase;
  white-space: nowrap;
}

/* nav .navbar-nav > li > a:hover,
nav .navbar-nav > li > a:active,
nav .navbar-nav > li > a:focus,
nav .navbar-nav > .active > a,
nav .navbar-nav > .active > a:focus,
nav .navbar-nav > .active > a:hover {
  background-color: transparent;
} */

nav .navbar-nav > li.active .hover-effect:before,
nav .navbar-nav > li .hover-effect:hover:before,
nav .navbar-nav > li .hover-effect:focus:before,
nav .navbar-nav > li .hover-effect:active:before {
  transform: scaleX(1);
  border-radius: var(--rounded_full);
  background-color: transparent;
  border: 1px solid var(--secundario);
}

nav .navbar-nav > li.dropdown > a {
  gap: 7px;
}

nav .navbar-nav > li.dropdown .dropdown-toggle span img {
  width: 10px;
}

nav .navbar-nav > li.dropdown .dropdown-menu {
  border-radius: 0 0 20px 20px;
  /* border-radius: 20px; */
  /* overflow: hidden; */
  top: calc(100% - 1px);
  /* border-top: 2px solid var(--secundario); */
  padding: 10px 0 15px;
  background-color: var(--primario);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  min-width: 220px;
}

nav .navbar-nav > li.dropdown .dropdown-menu > li > a {
  text-transform: uppercase;
  padding: 20px 20px;
  font-weight: 200;
  color: var(--transparencia);
  transition: all ease 0.3s;
}

nav .navbar-nav > li.dropdown .dropdown-menu > li > a:focus,
nav .navbar-nav > li.dropdown .dropdown-menu > li > a:hover {
  background-color: var(--primario_oscuro);
  /* color: var(--secundario); */
}

/* nav .navbar-nav > li.dropdown .dropdown-menu > li + li::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background-color: var(--secundario);
} */

nav .navbar-nav > li.dropdown.open > a {
  background-color: var(--primario_oscuro);
}

nav .navbar-nav > li.dropdown.open > a,
nav .navbar-nav > li.dropdown.open > a:focus,
nav .navbar-nav > li.dropdown.open > a:hover {
  /* background-color: initial;
  border-color: transparent; */
  border-radius: var(--rounded_full);
}

.nav-buttons {
  right: 90px;
}

.barra_ampliada .nav-buttons {
  height: 145px;
}

.barra_reducida .nav-buttons {
  height: 100px;
}

.barra_inferior {
  /* right: 0; */
  right: -40px;
  padding-right: 40px;
  /* top: calc(100% + 19px); */
  top: calc(100% + 0px);
  z-index: -1;
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
  animation-duration: 1.2s;
  animation-delay: 0.3s;
}

.barra_reducida .barra_inferior {
  transform: translateX(calc(100% + 0px));
}

.alineado_alejado {
  column-gap: 25px;
  background-color: var(--primario);
  /* border-radius: var(--rounded_full); */
  border-bottom-left-radius: var(--rounded_full);
  border-top-left-radius: var(--rounded_full);
  height: 45px;
  padding: 0 35px;
  width: max-content;
  z-index: 2;
}

.alineado_alejado .vl {
  width: 1px;
  height: 20px;
  background-color: var(--secundario);
}

.grupo_icono {
  column-gap: 20px;
}

.grupo_icono_con_texto {
  column-gap: 45px;
}

.barra_inferior .icono_texto {
  column-gap: 14px;
}

.barra_inferior .icono_texto p {
  font-family: var(--titulo);
  margin: 0;

  color: #ffffff;
}

.barra_inferior .icono_texto p:hover {
  color: var(--secundario);
}

.grupo_icono_con_texto .icono_texto span {
  width: 21px;
}

.grupo_icono_con_texto .icono_texto img {
  width: 100%;
}

.grupo_icono img {
  width: 20px;
}

/* sidebar */
.sidebar-wrapper {
  position: fixed;
  top: 0;
  width: 33%;
  max-width: 250px;
  height: calc(100% - 52px);
  top: 52px;
  /* padding-top: 10px; */
  overflow-y: auto;
  background-color: var(--primario);
  opacity: 0;
  z-index: 13;
}

.sidebar-wrapper.left {
  left: 0;
  transform: translateX(-100%);
}

.sidebar-wrapper.right {
  right: 0;
  transform: translateX(100%);
}

.toggled .sidebar-wrapper {
  opacity: 1;
  transform: translateX(0%);
}

.sidebar-wrapper::-webkit-scrollbar {
  width: 0px;
  height: 0;
}

.left-toggle {
  left: 0;
}

.right-toggle {
  right: 0;
}

.caja_redes img {
  height: 33px;
}

.navbar-toggle {
  margin: 0;
  padding: 15px;
  border-radius: 0;
  border: unset;
  height: 52px;
  width: 52px;
}

.navbar-toggle,
.navbar-toggle:focus,
.navbar-toggle:hover {
  background-color: var(--primario);
}

.toggled .navbar-toggle,
.toggled .navbar-toggle:focus,
.toggled .navbar-toggle:hover {
  background-color: var(--primario_oscuro);
}

.navbar-toggle .icon-bar,
.toggled .navbar-toggle .icon-bar {
  background-color: var(--transparencia);
}

.sidebar-nav {
  margin-bottom: 0;
}

.sidebar-buttons .custom-button {
  border-color: var(--secundario);
  width: 200px;
  height: 50px;
  font-size: 14px;
}

.sidebar-wrapper .sidebar-nav li a {
  text-indent: 20px;
  color: var(--transparencia);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--titulo);
  padding: 20px 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
  transition: all 0.2s ease-in-out;
  position: relative;
}

.sidebar-wrapper .sidebar-nav li.li-btn {
  display: flex;
  width: 100%;
  justify-content: center;
}

.sidebar-wrapper .sidebar-nav li a.btn {
  width: 85%;
  color: var(--primario);
}

.sidebar-wrapper .sidebar-nav li a.btn img {
  height: 25px !important;
  margin-right: 10px;
  filter: invert(75%) sepia(18%) saturate(2100%) hue-rotate(200deg)
    brightness(85%) contrast(115%);
}

.sidebar-wrapper .sidebar-nav li a.btn:hover img,
.sidebar-wrapper .sidebar-nav li a.btn:active img{
  filter: none;
}

/* .sidebar-wrapper .sidebar-nav li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 200px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--secundario);
} */

/* .sidebar-wrapper .sidebar-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 200px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--secundario);
} */

.sidebar-wrapper .sidebar-nav li.active a,
.sidebar-wrapper .sidebar-nav li a:hover {
  /* background-color: rgba(255, 255, 255, 0.2); */
}

.sidebar-wrapper .sidebar-nav > li {
  display: contents;
}

.sidebar-wrapper .sidebar-nav li img {
  height: 26px;
  margin-left: 0;
}

.sidebar-wrapper .dropdown-menu {
  position: static;
  width: 100%;
  padding: 0;
  border: unset;
  border-radius: unset;
  margin: 0;
  background-color: var(--primario_oscuro);
}

.sidebar-wrapper .dropdown-menu li a {
  background-color: transparent;
}

.sidebar-wrapper .dropdown-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.sidebar-wrapper .dropdown-toggle span {
  margin-left: 7px;
}

.sidebar-wrapper .dropdown-toggle span img {
  width: 12px;
}

.sidebar-button .custom-button {
  width: 205px;
  background-color: black;
}

.sidebar-wrapper .sidebar-nav li a:hover,
.sidebar-wrapper .sidebar-nav li.active a {
  color: #fff;
  background-color: var(--primario_oscuro);
}

.sidebar-wrapper .sidebar-nav li a:hover img
.sidebar-wrapper .sidebar-nav li.active a img{
  filter: none;
}

.nav>li>a:focus, .nav>li>a:hover{
  background-color: var(--primario_oscuro);
}

.navbar-nav li.dropdown.open a i::before,
.sidebar-wrapper .sidebar-nav li.dropdown.open a i::before{
  content: "\f106";
}

#manto-movil {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
}

#manto-movil.toogled {
  z-index: 2;
  opacity: 1;
}

/* banner */
.banner {
  width: 100%;
  margin-top: 145px;
  z-index: 1;
  align-items: end;
}

#banner-slider {
  max-width: calc(100% - 180px);
  width: 100%;
  height: calc(100vh - 145px);
  min-height: 820px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 45px;
  overflow: hidden;
  position: relative;
  background-color: a;
}

.banner .custom-container {
  bottom: calc(25% - 100px);
  transform: translateY(-50%);
  padding: 0 100px;
}

.banner .degradado {
  height: 50%;
  top: auto;
  background-image: linear-gradient(
    0deg,
    rgba(8, 86, 143, 0.99) 0%,
    rgba(16, 87, 143, 0) 100%
  );
  mix-blend-mode: multiply;
}

/* bloqueInformacion */
.bloqueInformacion {
  background-image: linear-gradient(
    180deg,
    var(--secundario),
    var(--primario) 55%
  );
}

.bloqueInformacionA .img-container {
  height: 625px;
  margin: 0 auto;
}

.bloqueInformacionA .img-container .forma_fondo {
  width: 100%;
  max-width: 600px;
}

.bloqueInformacionA .img-container .forma_fondo_2 {
  width: 100%;
  max-width: 600px;
  left: 0;
  bottom: -25px;
}

.bloqueInformacionA .img-container .figura {
  bottom: 0;
  left: 45px;
}

/* tratamientos */
.tratamientos {
  background-color: #f5fdfd;
}

.tratamientos .fondo {
  opacity: 0.098;
}

.caja_tratamiento {
  background-color: var(--transparencia);
  height: 405px;
  /* padding: 35px 30px 0; */
  padding: 50px 30px 0;
  border-radius: 20px;
  border: 1px solid #e6e6e6;
}

.caja_tratamiento:hover {
  background-color: var(--primario);
}

.caja_tratamiento .titulo-container {
  height: 130px;
  flex-flow: column;
}

.caja_tratamiento:hover .titulo-fondo {
  opacity: 0.1;
  filter: brightness(0) saturate(100%) invert(0%) sepia(96%) saturate(0%)
    hue-rotate(264deg) brightness(96%) contrast(102%);
}

.caja_tratamiento-titulo {
  font-size: 24px;
  font-weight: 700;

  top: -9px;
}

.caja_tratamiento:hover .caja_tratamiento-titulo {
  color: var(--transparencia);
}

.caja_tratamiento-flecha {
  width: 40px;
  aspect-ratio: 1;
  background-color: var(--primario);
  border-radius: var(--rounded_full);
}

.tratamientos .splide__slide:nth-child(even) .caja_tratamiento-flecha {
  background-color: var(--secundario);
}

.caja_tratamiento-flecha img {
  width: 23px;
}

.caja_tratamiento:hover .caja_tratamiento-flecha img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(97%) saturate(903%)
    hue-rotate(178deg) brightness(100%) contrast(100%);
}

.caja_tratamiento:hover .caja_tratamiento-flecha {
  background-color: var(--secundario);
}

.caja_tratamiento .parrafo {
  font-size: 13px;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.caja_tratamiento:hover .parrafo {
  color: var(--transparencia);
}

.tratamientos .splide__pagination {
  bottom: -85px;
  column-gap: 8px;
}

.tratamientos .splide__pagination__page {
  opacity: 1;
  width: 12px;
  height: 12px;
  border: 1px solid var(--secundario);
  margin: 0;
  background-color: transparent;
}

.tratamientos .splide__pagination__page.is-active {
  background-color: var(--primario_oscuro);
  transform: scale(1);
}

.tratamiento-degradado {
  height: 100%;
  width: 259px;
  top: 0;
}

.tratamientos .degradado-left {
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  left: 0;
}

.tratamientos .degradado-right {
  background-image: linear-gradient(
    -90deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  right: 0;
}

/* Tratamientos interiores */
.caja_tratamiento_interior {
  margin-top: 30px;
  border: 1px solid var(--secundario);
}

/* servicios */
.servicios {
  width: 90%;
  margin: 0 auto;
}

.servicios .img-container {
  aspect-ratio: 5 / 4;
}

.servicios .fondo {
  /* width: 110%;
  left: 50%; */
  transform: translateX(-50%);
  /* object-fit: contain; */
  width: 98%;
  height: 92%;
  left: 50%;
  top: 21px;
  object-fit: cover;
}

.servicios .forma_fondo {
  left: auto;
  right: -1px;
  width: 100%;
}

.servicios .img_adorno {
  width: 218px;
  bottom: -5px;
  /* right: -15px; */
  right: 66px;
}

.servicios .panel-group .panel + .panel {
  margin-top: 45px;
}

.servicios .panel-group .panel {
  background-color: transparent;
  border: unset;
  border-bottom: 1px solid var(--secundario);
  border-radius: 0;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  position: relative;
}

.servicios .panel-default > .panel-heading {
  background-color: var(--transparencia);
  padding: 0;
  border-radius: 0;
}

.servicios .panel-title {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--titulo);
}

.servicios .panel-title a {
  padding: 0 3px;
  height: 80px;
  justify-content: space-between;
}

.servicios .drop {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background-color: var(--blue_oscuro);
  flex-shrink: 0;
}

.servicios .drop img {
  width: 100%;
  padding: 7.5px;
  object-fit: contain;
  transition: transform ease 0.3s;
}

.servicios .panel-title a[aria-expanded="true"] .drop img {
  transform: rotate(180deg);
}

.servicios .panel-default > .panel-heading + .panel-collapse > .panel-body {
  border: unset;
  padding: 0;
  padding-bottom: 40px;
}

/* parallax */
.parallax {
  background-color: #fafafa;
}

.parallax .fondo-container {
  height: 535px;
  background-image: linear-gradient(90deg, var(--primario), var(--secundario));
}

.parallax .fondo_blur {
  backdrop-filter: blur(10px);
}

.parallax .fondo {
  opacity: 0.5;
  mix-blend-mode: multiply;
}

.parallax .corte-top {
  opacity: 0.1;
  height: 10px;
  background-color: var(--transparencia);
}

.parallax .parrafo {
  font-size: 18px;
}

.caja_equipo {
  margin-bottom: 30px;
}

.caja_equipo .img-container {
  aspect-ratio: 16 / 21;
  border-radius: 20px;
}

.caja_equipo:hover .img-container img {
  transform: scale(1.15);
}

.caja_equipo-titulo {
  font-weight: 700;
  font-size: 20px;
}

.caja_equipo:hover .caja_equipo-titulo {
  color: var(--secundario);
}

.caja_equipo-subtitulo {
  color: var(--primario);
  font-weight: 600;
  font-size: 16px;
}

/* resenhas */
.caja_resenha {
  padding: 25px 30px 10px 60px;
  height: 200px;
  border-radius: 15px;
  background-color: var(--transparencia);
  border: 1px solid #f0f0f0;
  column-gap: 20px;
  transition: filter ease 0.3s;
  margin-bottom: 30px;
}

.caja_borde_portada {
  border: 1px solid var(--primario);
}

.caja_borde_interior {
  border: 1px solid var(--secundario);
}

.caja_resenha:hover {
  filter: drop-shadow(0px 5px 7.5px rgba(0, 0, 0, 0.1));
}

.caja_resenha-google {
  width: 30px;
  height: 30px;

  top: -3px;
  position: relative;
}

.caja_resenha-titulo {
  color: #404040;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--titulo);
}

.caja_resenha .row_stars {
  column-gap: 4px;
}

.caja_resenha .row_stars img {
  width: 16px;
}

.caja_resenha-parrafo {
  font-weight: 300;
  color: #585858;
}

/* Footer */
footer {
  background-color: var(--primario);
}

footer .corte-top {
  opacity: 0.3;
  height: 10px;
  background-color: var(--transparencia);
}

footer .forma_fondo {
  height: 100%;
  max-width: 90%;
  left: 15px;
  top: 0;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 25px 54px;
}

.footer-info ul {
  align-self: self-start;
  max-width: 230px;
}

.footer-img {
  width: 340px;
}

.footer-img img {
  width: 100%;
}

.footer-titulo {
  font-size: 24px;
  font-weight: 500;
  font-family: var(--titulo);
}

.footer-contactos .row-redes {
  flex-wrap: wrap;
  justify-content: start;
  gap: 30px;
}

.footer-contactos .row-redes .red {
  column-gap: 13px;
}

.footer-contactos span img {
  width: 20px;
}

.footer-grupo {
  column-gap: 22px;
}

.footer-grupo a {
  transition: transform 0.1s ease;
}

.footer-grupo a img {
  width: 35px;
}

.footer-grupo a:hover {
  transform: scale(1.25);
}

footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 10px;
}

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

footer .footer-copyright {
  font-size: 10px;
  padding: 20px;
  color: var(--transparencia);
  gap: 20px 70px;
  flex-flow: wrap;
  border-radius: var(--rounded_full);
}

footer .web_laspalmas a {
  color: var(--transparencia);
  /* font-weight: 500; */
}

/*********************************
*        MENU DESPLEGABLE        *
*********************************/
.dropdown-menu > li > a {
  color: var(--blue);
  font-size: 15px;
  /* font-family: "Montserrat";
  text-transform: uppercase;
  font-weight: 500; */
  padding: 15px 20px;
  width: 100%;
}

/* -- circulos -- */
.wrapper-flex,
.wrapper-flex-mobile {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-box; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;

  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}

/* -- row -- */
.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.row-eq-height.container:before,
.row-eq-height.container:after,
.row-eq-height.row:before,
.row-eq-height.row:after {
  content: normal;
}

.separa-5 {
  height: 5px;
}

.separa-10 {
  height: 10px;
}

.separa-20 {
  height: 20px;
}

.separa-40 {
  height: 40px;
}

.separa-30 {
  height: 30px;
}

.separa-50 {
  height: 50px;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.centrado.izquierda {
  justify-content: flex-start;
}

.centrado.derecha {
  justify-content: flex-end;
}

.animacion {
  transition: all 300ms linear !important;
  -webkit-transition: all 300ms linear !important;
  -moz-transition: all 300ms linear !important;
  -ms-transition: all 300ms linear !important;
  -o-transition: all 300ms linear !important;
}

.limitar {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.limitar_1 {
  -webkit-line-clamp: 1; /* number of lines to show */
}

.limitar_2 {
  -webkit-line-clamp: 2; /* number of lines to show */
}

.limitar_3 {
  -webkit-line-clamp: 3; /* number of lines to show */
}

.limitar_4 {
  -webkit-line-clamp: 4; /* number of lines to show */
}

.limitar_5 {
  -webkit-line-clamp: 5; /* number of lines to show */
}

.limitar_6 {
  -webkit-line-clamp: 6; /* number of lines to show */
}

.limitar_7 {
  -webkit-line-clamp: 7; /* number of lines to show */
}

.limitar_8 {
  -webkit-line-clamp: 8; /* number of lines to show */
}

.limitar_9 {
  -webkit-line-clamp: 9; /* number of lines to show */
}

.limitar_10 {
  -webkit-line-clamp: 10; /* number of lines to show */
}

.caja {
  overflow: hidden;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px;
  border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  margin-top: 5px;
  margin-right: -10px;
}

.dropdown-submenu:hover > a:after {
  border-left-color: #fff;
}

.dropdown-submenu.pull-left {
  float: none;
}

.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}

/*********************************
*            INTERIORES          *
*********************************/

.interiores {
  background-color: white;
  /* background: -moz-linear-gradient(
    top,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 90%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 90%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 90%,
    rgba(255, 255, 255, 0) 100%
  ); */
}

.textaco{
  font-size: 16px;
  line-height: 25px;
  font-weight: 200;
}

.textaco img {
  max-width: 100%;
}

#swipebox-overlay {
  background: #0d0d0ddb;
}
#swipebox-bottom-bar,
#swipebox-top-bar {
  background: transparent;
}
.ug-lightbox .ug-lightbox-overlay {
  background: #0d0d0ddb;
}
/*Detalle producto*/
.breadcrumb > li {
  font-size: 13px;
}
.tag_option {
  margin: 5px;
  color: var(--primario);
}
.tag-circle {
  height: 42px;
  width: 42px;
  border-radius: 100%;
  display: inline-block;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
  overflow: hidden;
  border: 2px solid #f5f5f5;
}

.tag-circle img {
  height: 40px;
  width: 40px;
  border-radius: 40px;
  object-fit: contain;
}

.tag_bloque {
  height: 40px;
  width: 70px;
  display: inline-flex;
  background-color: var(--transparencia);
  justify-content: center;
  align-items: center;
}

.tag-circle.active {
  border: 2px solid #000;
}

.tag_bloque.active {
  background-color: var(--primario);
}
.tag_option.active a {
  color: #fff;
}

.foto_principal .imagen {
  width: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border: 1px solid #f5f5f5;
}
.foto_principal.mini .imagen {
  height: 444px;
  background-size: cover;
}

.foto_principal .lupa {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 300ms all linear;
  color: #fff;
  font-size: 40px;
}

.foto_principal .lupa:hover {
  opacity: 1;
}

.quantity {
  border: 2px solid var(--primario);
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.quantity label {
  display: inline-block;
  padding: 0 20px;
  color: var(--secundario);
}

.quantity-controls .fa {
  color: var(--secundario);
}

.quantity-controls {
  display: inline-block;
  position: relative;
}

.quantity-controls span {
  color: #888;
  cursor: pointer;
  height: 48px;
  line-height: 48px;
  position: absolute;
  top: 0;
  width: 26px;
  -webkit-transition: color 0.15s ease-in-out;
  -moz-transition: color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out;

  color: #171717;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}

.quantity-controls span.right {
  right: 0;
  text-align: left;
}

/* portada: igualar comportamiento al listado */
.productos .lista-productos.row{
  display: flex;
  flex-wrap: wrap;
}

.productos .lista-productos.row > [class*="col-"]{
  float: none;            /* importante: anula el float de Bootstrap */
}

.lista_productos_sin_stock {
  border: 2px solid red;
  padding: 20px 20px;
  list-style-type: none;
}

.lista_productos_sin_stock li {
  color: #f4573a;
  font-weight: 600;
}
#productos > div {
  /* padding-right: 23px;
  padding-left: 23px; */
}

#cantidad {
  border: 0;
  font-family: inherit;
  font-size: 15px;
  height: 48px;
  line-height: 48px;
  margin: 0 26px;
  outline: 0;
  padding: 0;
  position: relative;
  width: 40px;
  -webkit-appearance: none;

  display: inline-block;
  text-align: center;
  vertical-align: middle;
}

.otros_productos h2,
.otros_productos h3 {
  text-align: left;
  color: var(--primario);
  font-weight: 300;
  font-family: var(--familia_fuente);
}

.botones_carro {
  width: calc(100% - 225px);
  float: right;
}
.botones_carro.grande {
  width: 100%;
}

.btn_love img {
  height: 30px;
  width: 30px;
}

.btn-filtro {
  height: 55px;
  width: 100%;
  margin-bottom: 15px;
  border-radius: var(--rounded_full);
}

.botones_carro .btn-tam {
  height: 52px;
  width: 100%;
  transform: translateY(-10px);
}

.descarga.uno:hover .btn {
  color: #fff;
  background-color: var(--secundario);
}

.descarga.dos:hover .btn {
  color: var(--secundario);
  background-color: #e8d6fb;
}
.mayorista {
  color: var(--secundario);
  background-color: #e8d6fb;
  border: 2px solid var(--secundario);
  padding: 16px 14px;
  text-align: center;
  font-weight: 600;
}
.btn-corporativo {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--familia_fuente);
  text-transform: uppercase;
  border: 0px;
  border-radius: 10px;
  background-color: var(--primario);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.btn-lg.btn-corporativo {
  padding: 18px 30px;
}
.btn-corporativo .btn-carro_portada img {
  height: 20px;
  width: 20px;
  margin-right: 15px;
  border-radius: 0;
}
.btn-comprar {
  border: 0;
}

.btn-grandotes {
  padding: 15px;
}
.btn-corporativo2 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--familia_fuente);
  text-transform: uppercase;
  border: 0px;
  border-radius: 10px;
  background-color: var(--primario);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.btn-corporativo3 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--familia_fuente);
  text-transform: uppercase;
  border: 0px;
  border-radius: 10px;
  background-color: var(--primario);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.btn-corporativo,
.btn-corporativo2,
.btn-corporativo3 {
  border: 1px solid transparent;
}

/*MENU VIEJO
.navbar-nav>li>.dropdown-menu {
margin-top: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
width: 213px;
left: -15px;
}
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
color: #fff;
background-color: rgb(255 255 255 / 10%);
border-radius: 14px;
}
*/


.btn-corporativo:hover, 
.btn-corporativo:focus, 
.btn-corporativo:active,
.btn-corporativo2:hover,
.btn-corporativo2:focus,
.btn-corporativo2:active,
.btn-corporativo3:hover,
.btn-corporativo3:focus,
.btn-corporativo3:active {
  border: 1px solid var(--primario);
  background-color: #fff;
  color: var(--primario);
}
 

.desactivado {
  opacity: 0.6;
}
.acceso a {
  color: #fff;
}
.lista_productos .btn_love img,
.bienvenida .btn_love img {
  filter: brightness(0) invert(1);
  height: 22px;
  width: 22px;
}

.caja_redes {
  display: none !important;
}

.caja_redes a:hover {
  background-color: transparent !important;
}

.left .caja_redes a {
  width: 45px;
  height: 45px;
}
.btn-corp {
  background-color: var(--primario);
  color: #fff !important;
  border: 0;
}

.btn-default-formulario {
  background-color: #c6c6c6;
  color: #fff !important;
}

.nav-botones {
  border: none;
}

.nav-botones > li > a {
  background-color: #fff;
  border-radius: 0px;
  margin: 0px 10px;
  color: #78c74a;
  border: 2px solid var(--primario);
}

.nav-botones > li > a:focus,
.nav-botones > li > a:hover {
  background-color: #f5f5f5;
  color: #78c74a;
  border: 2px solid var(--primario);
}

.nav-botones > li.active > a,
.nav-botones > li.active > a:focus,
.nav-botones > li.active > a:hover {
  background-color: var(--primario);
  color: #fff;
  border: 2px solid var(--primario);
}

#title_prod {
  font-family: var(--familia_fuente);
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primario);
  font-size: 30px;
  margin-top: 0px;
}
h3.categoria {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 300;
  font-family: var(--familia_fuente);
  margin-top: 0px;
}

h3.medida{
  font-size: 18px;
  font-weight: 300;
  font-family: var(--familia_fuente);
  margin-top: 0px;
}

h3.embalaje{
  font-size: 18px;
  font-weight: 300;
  font-family: var(--familia_fuente);
  margin-top: 0px;
}

span.precio {
  font-size: 24px;
  font-family: "Open Sans", sans-serif;
  color: var(--primario);
  font-weight: 400;
}

.titulotag {
  font-weight: 400;
}

.videos_responsive {
  width: 600px;
  float: left;
  margin-right: 20px;
  margin-bottom: 30px;
}

ul.columnas-detalle {
  list-style-type: disc;
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  list-style-position: inside;
}

.otras_fotos .imagen {
  height: 150px;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.breadcrumb {
  margin: 0;
  background-color: transparent;
}
.breadcrumb li a {
  text-transform: capitalize;
  color: #000;
}

.precios .tachado {
  text-decoration-line: line-through;
}

/***PROGRAMAS***/
/*
.cabecera {
background-color: #78c74a;
border: solid 0px #fff;
color: #fff;
padding: 5px;
font-size: 14px;
}
*/

.fila1 {
  background-color: #d9ebd9;
  border: solid 2px #fff;
  padding: 8px;
}

.fila2 {
  background-color: #fff;
  border: solid 2px #fff;
  padding: 8px;
}

.mini_icono_text {
  margin-top: 4px;
  font-size: 24px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

.lista_productos .fa {
  color: var(--secundario);
}

.mini_icono_text .fa-download {
  color: var(--secundario);
}

.fecha_archivos {
  font-size: 14px;
  margin: 5px;
}

.elementos_desc > div:nth-child(even) {
  background-color: #d9ebd9;
}
.elementos_desc .text_content {
  margin: 10px 0px;
}
.elementos_desc .text_content p {
  margin: 0px;
}
.elementos_desc p.fecha_archivos {
  text-align: center;
}
/**************************
SWIPEBOX
**************************/

.cuadro_fotos {
  padding-top: 15px;
  background-color: #f5f5f5;
  border: 1px solid #efefef;
}
.cuadro_fotos .foto_principal {
  background-color: #fff;
  margin-bottom: 15px;
}
.cuadro_fotos .galeria {
  padding: 30px 15px;
  background-color: #3b3b3b;
}
.swipebox .imagen {
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/*.swipebox .imagen:after{content:'';padding-top:66.66%;display:block}*/
.swipebox .imagen:after {
  content: "";
  padding-top: 100%;
  display: block;
}
.swipebox .padre_imagen .imagen {
  content: "";
  padding-top: 100%;
  display: block;
}
.btn-precio {
  padding: 0;
}
.foto_color .imagen {
  float: left;
  height: 75px;
  width: 75px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 15px 30px 0;
}

.swipebox .imagen.secundaria {
  background-size: contain;
}

.zona_galeria_mini .bx-wrapper .bx-prev {
  left: -45px;
}
.zona_galeria_mini .bx-wrapper .bx-next {
  right: -45px;
}
.bx-wrapper .bx-controls-direction a {
  z-index: 1000;
}

.bx-wrapper .bx-viewport {
  box-shadow: none;
  border: none;
}

/**************************
NUEVA CESTA
**************************/

#cesta .articulo .padding {
  padding-right: 30px;
}

.resumen-cesta {
  padding: 20px;
}
.resumen-cesta .ancho-resumen {
}
.resumen-cesta .label-resumen {
  float: right;
}
.resumen-cesta .label-resumen .cesta-bono {
  font-size: 24px;
  margin-right: 10px;
}
.resumen-cesta .label-resumen .precio_descuento {
  font-size: 24px;
  margin-left: 10px;
}
.resumen-cesta .label-resumen .bigger {
  font-size: 24px;
}

.resumen-cesta .label-resumen p {
  margin: 0;
}

.resumen-cesta .aplicar_codigo {
  height: 52px;
  border-radius: 0;
  border-right: none;
}
.resumen-cesta .input-group-btn {
  border: 1px solid #ccc;
  border-radius: 0;
  border-left: none;
}
.resumen-cesta .btn-codigo {
  color: #fff;
  border: 2px solid #fff;
  height: 48px;
  cursor: pointer;
  display: flex;
  min-width: 48px;
  align-items: center;
  justify-content: center;
  background-color: var(--primario);
}

#gastos .radio,
#gastos label {
  margin: 0;
}
#gastos label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#gastos .radio .colocar {
  width: 0px;
  margin-bottom: 5px;
}
.marco-gasto {
  border: 1px solid #ccc;
  margin-bottom: 10px;
  padding: 10px 0px;
}

.resumen-total strong {
  text-transform: uppercase;
  position: relative;
  top: 10px;
}

.metodos-pago .radio-inline {
  font-size: 18px;
  margin-left: 20px;
}
.btn-borrartodo {
  border-radius: 0px;
  background-color: var(--secundario);
  color: #fff !important;
}

.swal2-popup {
  font-size: 1.6rem !important;
}

.condiciones a {
  color: var(--primario);
}

/************************************
*  Cesta Lateral  *
************************************/

.titulares-resumen {
  color: var(--primario);
}
#configurar-cesta h4 {
  color: var(--primario);
}

.menu-cesta {
  position: fixed;
  top: 0;
  right: 0px;
  height: 100vh;
  width: 480px;
  background-color: #fff;
  z-index: 1000;
  transition: 400ms all linear;
  box-shadow: 0px 8px 10px -5px rgba(51, 51, 51, 0.2),
    0px 16px 24px 2px rgba(51, 51, 51, 0.14),
    0px 6px 30px 5px rgba(51, 51, 51, 0.12);
}
.menu-cesta .cabecera-cesta {
  padding-top: 35px;
  background-color: #d9d9d9;
  height: 90px;
  position: relative;
}
.fondo-cesta {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.fondo-cesta .overlay-cesta {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primario);
}
.menu-cesta .cabecera-cesta h3 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-family: var(--familia_fuente);
  text-align: center;
}
.cerrar-cesta {
  position: absolute;
  top: 25px;
  right: 20px;
  transition: 200ms all linear;
  border-radius: 50%;
  cursor: pointer;
}
.cerrar-cesta img {
  height: 40px;
  width: 40px;
}

.cuerpo-cesta {
  height: calc(100vh - 260px);
  padding: 30px;
  overflow: scroll;
}
.pagar-cesta {
  height: 120px;
  padding: 0px 30px;
}
.pagar-cesta p {
  text-align: center;
}
.pagar-cesta p span {
  font-size: 30px;
  font-weight: 400;
}
.pie-cesta {
  height: 50px;
  background-color: #f7f7f7;
}

.articulo {
  position: relative;
}
.articulo img {
  width: 100%;
  height: 115px;
  object-fit: contain;
}
.articulo h4 {
  font-size: 16px;
  font-family: var(--familia_fuente);
  color: #6a6a6a;
}
.articulo .precio-articulo {
}
.articulo .controles-articulo {
  height: 30px;
}
.articulo .controles-articulo .operators {
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.articulo .btn-circle {
  border: 1px solid #353535;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  float: right;
  color: #353535;
  cursor: pointer;
}
.menu-cesta .icono-cesta {
  width: auto;
  height: 25px;
  margin: 0 6px;
}
.btn-operator {
  color: #272727;
}
.btn-operator:hover,
.btn-operator:focus,
.btn-operator:active {
  color: #626062;
}

#precio_label {
  text-align: center;
}

#manto-cesta,
#manto-movil {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: -1;
}
#manto-cesta.toogled,
#manto-movil.toogled {
  z-index: 30;
}

span.cesta-bono {
  color: #3c763d;
}

.btn-cesta {
  height: 48px;
  background-color: #272727;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  color: #fff;
}

.btn-cesta:hover,
.btn-cesta:focus,
.btn-cesta:active {
  color: #fff;
  background: #272727;
}

.boton-cesta-real {
  cursor: pointer;
}

/* Animaciones */

.menu-cesta {
  transform: translate(530px, 0px);
}
.mostrarCesta .menu-cesta {
  transform: translate(0px, 0px);
}
a.cerrar-cesta:hover {
  background-color: #626062;
}

/************************************
*  Archivos adjuntos y tipografias  *
************************************/

.tipografia,
.titulo-contenido {
  text-align: left;
  color: #505050;
  text-transform: uppercase;
  font-family: var(--familia_fuente);
  font-size: 22px;
  font-weight: 400;
  margin-top: 0;
}

.titulo-contenido {
  color: #000;
}
.tipografia i {
  color: var(--secundario);
}
.listado {
  text-align: justify;
}

.listado ul,
.listado li {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.listado li {
  padding: 20px;
  background-color: var(--transparencia);
}
.listado li a,
.listado li.alt a {
  font-size: 13px;
  font-family: "Lato", sans-serif;
  font-weight: 300;
}
.listado li.alt {
  background-color: transparent;
}
.listado li.alt a {
  color: #000;
  text-decoration: none;
}
.listado a {
  color: #000;
  text-decoration: none;
}
.listado a:hover,
.listado li.alt a:hover {
  color: var(--secundario);
  text-decoration: none;
}

.btn-gris {
  color: #333;
  background-color: #fafafa;
}
.btn-gris:hover,
.btn-gris:focus,
.btn-gris:active {
  color: #333;
  background-color: #dedede;
}

/************************************
*            MULTIFORMA             *
************************************/

.bloque_imagen_lista ul {
  list-style: none;
  padding: 0;
}
.bloque_imagen_lista i {
  color: var(--secundario);
}
.bloque_cabecera .bloque_titulo {
  background-color: var(--primario);
  padding: 15px;
}
.bloque_cabecera .bloque_interior {
  background-color: rgba(19, 48, 110, 0.1);
  padding: 30px 15px;
}
.bloque_cabecera .bloque_titulo h3 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--familia_fuente);
  font-weight: 300;
}
.bloque_cabecera .imagen {
  width: 100%;
}
.bloque_cabecera h4 {
  text-transform: uppercase;
  font-size: 22px;
  font-family: var(--familia_fuente);
  color: var(--secundario);
}
/*.bloque_cabecera .texto{font-size:18px;font-weight:300}*/
.bloque_imagen_lista .imagen {
  width: 100%;
  object-fit: cover;
  margin-bottom: 30px;
}
.bloque_imagen_lista h4 {
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 10px;
  font-family: var(--familia_fuente);
  color: var(--primario);
  font-size: 22px;
}
.bloque_puntos ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bloque_puntos ul li {
  margin-bottom: 15px;
}
.bloque_puntos ul li > p > .fa {
  font-size: 20px;
  color: var(--secundario);
}
.bloque_contenido .titulo {
  background-color: var(--primario);
  padding: 15px 10px;
}
.bloque_contenido .titulo h4 {
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  font-size: 16px;
  font-family: var(--familia_fuente);
  font-weight: 300;
}
.bloque_contenido .bloque {
  padding: 0 10px;
}
.bloque_desplegable .fondo,
.bloque_documentos .fondo {
  background-color: var(--transparencia);
  padding: 20px;
  margin-bottom: 40px;
}
.bloque_desplegable .panel-group,
.bloque_documentos .panel-group {
  margin: 0;
}
.bloque_desplegable h2,
.bloque_documentos h2 {
  margin: 0;
  margin-bottom: 20px;
  font-size: 23px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--familia_fuente);
  color: var(--secundario);
}
.bloque_desplegable .panel-default {
  border-color: var(--primario);
}
.bloque_desplegable .panel-default > .panel-heading {
  background-color: var(--primario);
  color: #fff;
  border-color: var(--primario);
}
.bloque_desplegable h2 .fa {
  color: var(--secundario);
}
.bloque_desplegable
  .panel-default
  > .panel-heading
  + .panel-collapse
  > .panel-body {
  border-top-color: var(--primario);
}
.bloque_imagenes img {
  width: 100%;
}
.bloque_imagenes .flexible {
  display: flex;
  align-items: center;
}

.panel-body .btn-corporativo2 {
  padding: 8px 15px;
}
.bloque_imagenes img {
  width: 100%;
  object-fit: cover;
}

/************************************
*              IDIOMAS              *
************************************/

#idiomasside {
  position: fixed;
  top: 300px;
  right: 0;
  z-index: 9;
}

#idiomasside li {
  padding: 10px;
  list-style-type: none;
}

#idiomasside img {
  height: 40px;
}

#idiomasside font {
  display: none;
}

.zona-idiomas-movil {
  height: 50px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  margin-top: 25px;
}
.zona-idiomas-movil .flag {
  height: 50px;
  width: 30px;
}

/************************************
*               BLOG                *
************************************/
.alergenos {
  display: flex;
  justify-content: space-evenly;
  align-content: space-evenly;
  flex-wrap: wrap;
}
.alergenos .padre_fondo {
  margin: 0;
}
.alergenos .caja_alergenos {
  padding: 0 10px;
}
.alergenos .caja_alergenos:hover {
  transform: translateY(0);
}
.bloque.principal.noticia {
  display: inherit;
}
.noticias,
.post_details ul,
.popular {
  list-style: none;
  padding: 0;
  margin: 0;
}
.noticia a {
  font-family: "Lato", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  color: #333333;
}
.noticias .imagen {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.noticias .imagen:after {
  content: "";
  padding-top: 50%;
  display: block;
}
.not-imagen {
  background-color: #ededed;
}

.filtros .form-control {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#modal-cita .form-control {
  color: var(--primario);
  border-radius: 10px !important;
  background: #f8fbff;
  padding: 6px 20px;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  border: 1px solid var(--primario);
}
#modal-cita input::-webkit-input-placeholder,
#modal-cita textarea::-webkit-input-placeholder {
  color: var(--primario);
}

#modal-cita input:-moz-placeholder, /* Firefox 18- */
#modal-cita textarea:-moz-placeholder {
  /* Firefox 18- */
  color: var(--primario);
}

#modal-cita input::-moz-placeholder, /* Firefox 19+ */
#modal-cita textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--primario);
}

#modal-cita input:-ms-input-placeholder,
#modal-cita textarea:-ms-input-placeholder {
  color: var(--primario);
}

#modal-cita input::placeholder,
#modal-cita textarea::placeholder {
  color: var(--primario);
}

#modal-cita .form-control {
  height: 50px;
}

#modal-cita p {
  color: var(--primario);
}

#modal-cita textarea.form-control {
  height: 120px;
}
.full-width {
  width: 100%;
}
.noticia .titular {
  margin-bottom: 0;
  border-bottom: solid 1px #f3f3f3;
}
.noticia .titular h1 {
  color: #1e1f1d;
  margin-bottom: 10px;
}
.noticia .titular a > h3 {
  margin-bottom: 17px;
  font-size: 24px;
  text-transform: uppercase;
  text-align: left;
  color: #333333;
  font-family: var(--familia_fuente);
}
.noticia .post_details {
  color: #fff;
  background-color: var(--primario);
  padding: 10px;
  border-bottom: solid 5px var(--primario);
  text-align: right;
  font-size: 13px;
}
.post_details li {
  font-family: var(--familia_fuente);
  font-size: 13px;
  font-weight: 300;
  color: #fff;
}
.noticia-detalle-fecha small {
  font-family: var(--familia_fuente);
  font-weight: 300;
  color: #302224;
}
.post_details i {
  color: #fff;
}
.noticia-detalle-fecha i {
  color: #2f3668;
}
.noticia .contenido {
  padding: 5px 15px 10px;
  background-color: #fff;
  border: 1px solid #ffefcc;
}
.contenido_noticia_lista {
  padding: 0 20px;
  background-color: var(--transparencia);
}
.noticia-detalle-fecha {
  text-align: right;
  color: #2b2b2b;
}
.widget-noticias {
  background-color: #f3f3f3;
  padding: 15px;
}
.widget-noticias h5 {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--primario);
  font-family: var(--familia_fuente);
}
.widget-noticias .input-group-btn {
  height: 100%;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.widget-noticias .input-group-btn button {
  height: 100%;
  border: 1px solid var(--primario);
  background-color: var(--primario);
  color: #fff;
}
.widget-noticias .input-group-btn i {
  font-size: 16px;
}
.widget-noticias2 {
  position: sticky;
  position: -webkit-sticky;
  top: 20px;
}
.popular {
  font-size: 13px;
}
.mini-noticia {
  float: none;
}
.mini-noticia a {
  font-family: var(--familia_fuente);
  font-weight: 400;
  font-size: 14px;
}
.popular li {
  padding: 10px 0;
  border-bottom: dotted 1px rgb(129, 97, 159);
}
.popular .imagen {
  width: 50px;
  height: 50px;
  float: left;
  margin-right: 10px;
  border-radius: 3px;
  background-size: cover;
  background-position: center center;
}
.popular a.title {
  color: #070707;
}
.popular a.texto-breve {
  color: #707070;
  font-weight: 300;
  font-family: "Lato", sans-serif;
  font-size: 12px;
}
.popular a.title:hover,
.popular a.title:focus,
.popular a.title:active {
  color: #070707;
}
.bloque.noticia {
  margin-bottom: 40px;
}

.cuadro_noticia {
  background-color: var(--transparencia);
  max-width: 400px;
  float: left;
  margin: 0px 20px 12px 0px;
}

.titulo_noticia {
  color: var(--primario);
  font-size: 30px;
  text-transform: uppercase;
  font-family: var(--familia_fuente);
  margin: 0;
}

#busqueda {
  border-color: var(--primario);
}

.marco-contacto {
  background-color: rgba(19, 48, 110, 0.1);
  padding: 40px;
}
.marco-contacto h3 {
  margin-top: 0px;
}
.widget-noticias {
  background-color: var(--transparencia);
}
.marco-contacto .input-group-addon {
  background-color: var(--primario);
  border-color: var(--primario);
  color: #fff;
}
.marco-contacto .form-control {
  border-color: var(--primario);
}
.input-group .form-control {
  z-index: 0;
}

.zona-mapa iframe {
  height: 100%;
  width: 100%;
}

.ocultorobots {
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 0px;
}
/* TABLA MIS PEDIOS*/

.tabla_cabecera .row {
  font-weight: 400;
  background-color: var(--primario);
  color: #fff;
}
#tabla_stocks_resultados .row:nth-child(even) {
  background-color: var(--transparencia);
}
.tabla_stocks .cell {
  padding: 15px;
}
.tabla_stocks .cell-btn {
  padding: 10px;
}
.avisono {
  margin: 10px 0px;
  font-size: 18px;
}

textarea {
  resize: vertical;
}

/*+++++++++++++++++++*/
/************************************
*             INTERIOR              *
************************************/
.fa-angle-down {
  padding-left: 5px;
}
/*MENU VIEJO
.navbar-default .dropdown-menu{
background-color: #fff;
color: #000;
top: 99%;
}

.navbar-default .dropdown-menu>li>a {
padding: 18px 20px;
color: #fff;
font-size: 16px;
font-family: 'Roboto', sans-serif;
font-weight: 300;
background-color: var(--primario);
border-bottom: 1px dotted #4b4a4a;
}

.superior .dropdown-menu>li>a {
padding: 18px 20px;
color: #000;
font-size: 16px;
font-family: 'Roboto', sans-serif;
font-weight: 300;
border-bottom: 1px dotted #c6c6c6;
border-right:  1px dotted #c6c6c6;
}
.dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover {
background-color: var(--transparencia);
color: #2c2c2c
}
.dropdown-menu {
padding: 0;
}
.superior .open>.dropdown-menu {
width: 185px;
top: 32px;
}
.superior .dropdown-menu>.active>a, .superior .dropdown-menu>.active>a:focus, .superior .dropdown-menu>.active>a:hover, .superior .dropdown-menu>li>a:focus, .superior .dropdown-menu>li>a:hover {
background-color: #dddddd;;
color: #09090c;
font-weight: 700;
}
.navbar-default .dropdown-menu>.active>a, .navbar-default .dropdown-menu>.active>a:focus, .navbar-default .dropdown-menu>.active>a:hover, .navbar-default .dropdown-menu>li>a:focus, .navbar-default .dropdown-menu>li>a:hover {
background-color: #000;
color: #fff;
font-weight: 700;
}

.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
background-color: transparent;
}
.superior .open>a, .superior .open>a:focus, .superior .open>a:hover {
background-color: transparent;
}
*/

.dropdown-menu>.active>a{background-color: var(--primario_oscuro);}

.acceso a p {
  color: var(--primario);
  font-weight: 600;
  margin: 0;
}

.noestavisibleparapersonas {
  display: none;
}

.banner_interior {
  width: 100%;
  height: 500px;
  background-size: cover;
  overflow: hidden;
  background-position: 0px 40%;
  position: relative;
}

.banner_interior::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 15px;
  background-image: url(/template/estandar/images/Formas/Forma-banner-interior.svg);
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 15px;
  z-index: 1;
  pointer-events: none;
}

.corte_banner_interior {
  width: 100%;
  position: absolute;
  bottom: -1px;
  left: 0px;
  z-index: 1;
}

.banner_interior .imagen {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(4px);
}

.banner_interior .texto {
  flex-direction: column;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0px;
  left: 0px;
}
.banner_interior .texto img {
  margin-top: 20px;
}
.banner_interior.interior_azul .texto {
  background-color: rgba(69, 183, 245, 0.5);
}
.banner_interior.interior_amarillo .texto {
  background-color: rgba(247, 201, 110, 0.5);
}
.banner_interior.interior_rojo .texto {
  background-color: rgba(245, 104, 78, 0.5);
}

.banner_interior p {
  margin-top: 0;
  font-size: 60px;
  line-height: 50px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0px;
  font-family: "Open Sans";
  text-align: center;
  margin-bottom: 0px;
  text-shadow: 2px 2px 3px rgba(1, 0, 2, 0.75);
}

.banner_interior h1 {
  margin-top: 0;
  font-size: 60px;
  line-height: 50px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0px;
  font-family: "Open Sans";
  text-align: center;
  margin-bottom: 0px;
  text-shadow: 2px 2px 3px rgba(1, 0, 2, 0.75);
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:focus,
.nav-pills > li.active > a:hover {
  color: #fff;
  background-color: var(--primario);
}

.nav-pills > li > a {
  color: #000;
  font-family: "Open Sans";
  font-weight: 400;
  text-transform: uppercase;
}

/************************************
*              FILTROS              *
************************************/

.filtros {
  height: 136px;
  background-color: var(--transparencia);
  border-bottom: 1px solid #e8e8e8;
  margin: 0;
  padding: 0;
}

.producto-detalle .filtros {
  background-color: #f9f9f9;
  height: 44px;
}

.filtros.interiores {
  background: #f9f9f9;
}

.filtros.gestion {
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.filtros.gestion > div {
  width: 100%;
  margin-top: 15px;
}

.centrarflitros {
  display: flex;
  align-items: center;
}

/************************************
*             BUSCADOR              *
************************************/

#buscador_emergente {
  position: absolute;
  top: 195px;
  width: 100%;
  z-index: 1000;
  transition: 300ms all ease;
}
#buscador_emergente.oculto {
  visibility: hidden;
  opacity: 0;
  top: 0;
}
.buscador_emergente > div {
  background: #fff;
  border-bottom: 1px solid #e4e9ef;
  box-shadow: 0 0 3px #ccc;
  padding: 15px;
}
.input_buscador {
  border-right: 0;
  box-shadow: none;
  border-radius: 0;
}
.boton_input_buscador {
  border-radius: 0;
  padding: 10px;
  border-left: 0;
  border-right: 0;
  color: rgba(0, 0, 0, 0.3);
  background-color: #fff !important;
}
.cerrar_input_buscador {
  border-right: 0;
  border-right: 1px #ccc solid;
  color: rgba(0, 0, 0, 0.3);
  padding: 10px;
  border-radius: 0;
  background-color: #fff !important;
}
#buscador {
  position: fixed;
  z-index: 99999;
  height: 100%;
  width: 100%;
  display: flex;
  pointer-events: none;
}
#buscador.search-active {
  overflow: hidden;
  pointer-events: auto;
}
#buscador.search-active .search-input {
  opacity: 1;
  transform: none;
  pointer-events: all;
}
#buscador.search-active .icon-close {
  opacity: 1;
  transform: rotate(-90deg);
}
#buscador.search-active .control {
  cursor: default;
}
#buscador.search-active .control .btn-material {
  transform: scale(70);
  right: 1000px;
  top: 0;
}
#buscador.search-active .control .icon-material-search {
  opacity: 0;
}
.icon-close {
  position: fixed;
  top: 30px;
  right: 30px;
  color: #fff;
  cursor: pointer;
  font-size: 70px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.icon-close:hover {
  transform: rotate(0);
}
.search-input {
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50px;
  margin-top: -40px;
  pointer-events: none;
  opacity: 0;
  transform: translate(40px, 0);
  transition: all 0.3s ease-in-out;
}
.search-input input {
  color: #fff;
  font-size: 54px;
  border: 0;
  background: transparent;
  -webkit-appearance: none;
  box-sizing: border-box;
  outline: 0;
  font-weight: 200;
  font-family: "Open Sans";
}
.search-input i {
  color: #fff;
  font-size: 50px;
  margin-right: 15px;
}
.search-input ::-webkit-input-placeholder {
  color: #eee;
}
.search-input :-moz-placeholder {
  color: #eee;
  opacity: 1;
}
.search-input ::-moz-placeholder {
  color: #eee;
  opacity: 1;
}
.search-input :-ms-input-placeholder {
  color: #eee;
}
.wow {
  visibility: hidden;
}
.full-width {
  width: 100%;
}
.control {
  cursor: pointer;
}
.control .btn-material {
  position: absolute;
  top: -100px;
  width: 60px;
  height: 60px;
  right: 0;
  border-radius: 100%;
  box-sizing: border-box;
  background: var(--primario);
  outline: 0;
  opacity: 0.9;
  transform-origin: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.control .btn-material:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.control .icon-material-search {
  color: #fff;
  position: absolute;
  top: -10px;
  right: 78px;
  transition: opacity 0.3s ease-in-out;
}

.navbar-img {
  display: none;
}
.modal-header {
  background-color: var(--primario);
  color: #fff;
}
.modal-content {
  border: 0;
}
.modal-header .close {
  color: #ffffff;
}

/************************************
*             PAGINACION            *
************************************/

.btn-pagination {
  color: #ffffff;
  background-color: #565656;
  border-color: #565656;
}

.btn-pagination:hover,
.btn-pagination:focus,
.btn-pagination:active,
.btn-pagination.active,
.open .dropdown-toggle.btn-pagination {
  color: #ffffff;
  background-color: var(--primario);
  border-color: var(--primario);
}

.btn-pagination:active,
.btn-pagination.active,
.open .dropdown-toggle.btn-pagination {
  background-image: none;
}

.btn-pagination.disabled,
.btn-pagination[disabled],
fieldset[disabled] .btn-pagination,
.btn-pagination.disabled:hover,
.btn-pagination[disabled]:hover,
fieldset[disabled] .btn-pagination:hover,
.btn-pagination.disabled:focus,
.btn-pagination[disabled]:focus,
fieldset[disabled] .btn-pagination:focus,
.btn-pagination.disabled:active,
.btn-pagination[disabled]:active,
fieldset[disabled] .btn-pagination:active,
.btn-pagination.disabled.active,
.btn-pagination[disabled].active,
fieldset[disabled] .btn-pagination.active {
  background-color: #3a39367a;
  border-color: #3a3936;
}

.btn-pagination .badge {
  color: #0977b2;
  background-color: #ffffff;
}

.btn-pagination {
  padding: 10px 20px;
  font-size: 14px;
  margin: 0 15px;
  border: 1px solid;
}

.proyecto .imagen {
  background-size: cover;
}
.proyecto h3 {
  font-family: var(--familia_fuente);
  margin-bottom: 40px;
  text-align: center;
}

/************************************
*         INSTAGRAM WIDGET          *
************************************/

.instagram-widget > div {
  position: relative;
  padding-top: calc(100vw / 6);
  width: 100%;
  overflow: hidden;
}
.instagram-widget iframe {
  border: none !important;
  overflow: hidden !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

/************************************
*           SELECT BONITO           *
************************************/

.selectbonito {
  position: relative;
}

.selectbonito:after {
  content: "\f078";
  font: normal normal normal 10px/1 FontAwesome;
  color: #ffffff;
  right: 0;
  position: absolute;
  pointer-events: none;

  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 7px;
}

/* IE11 hide native button (thanks Matt!) */
select::-ms-expand {
  display: none;
}

.selectbonito select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Add some styling */

  display: block;
  width: 100%;
  float: right;
  background-image: none;
  -ms-word-break: normal;
  word-break: normal;
}
/* whatsapp */
.floating-icons {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
}

.floating-icons a {
  display: inline-block;
  transition: all 0.2s ease-in-out;
}

a:hover,
a:visited,
a:link,
a:active {
  text-decoration: none;
}

.floating-icons img {
  /* max-width: 48px; */
  max-width: 60px;
  height: auto;
}

.floating-icons a:hover {
  transform: scale(0.9);
}

/* WEB */
.telefono-footer > a {
  color: white;
}

.telefono-footer > a > img {
  margin-right: 10px;
  width: 20px;
}

.correo-footer > a {
  color: white;
}

.correo-footer > a > img {
  margin-right: 10px;
  width: 20px;
}

.caja > h1 {
  font-size: 45px;
  line-height: normal;
  font-family: var(--titulo);
  font-weight: 800;
  color: var(--primario);
}

.pretitulo {
  color: var(--secundario);
  font-size: 20px;
}

.adorno-titulo {
  /* width: 108px; */
  width: 103px;
  left: calc(50% - 54px);
  /* top: -20px; */
  top: -34px;
}

nav .navbar-nav > li.dropdown .dropdown-menu > li > a::before,
nav .navbar-nav > li.dropdown .dropdown-menu > li > a::before {
  border: none;
}

/*//ESTILOS GENERALES//*/

.formularios-de-contacto .mapa-container {
  padding-left: 30px;
}

.formularios-de-contacto .mapa iframe {
  width: 100%;
  height: 664px;
  border-radius: 27px;
  border: 1px solid var(--primario);
}

.formularios-de-contacto .form-container {
  border-radius: 28px;
  background-color: var(--primario_transparente);
  padding: 53px 30px 53px;
}

.formularios-de-contacto .formulario {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  row-gap: 20px;
}

.formularios-de-contacto .form-group label {
  color: #2f2f2f;
  font-weight: 600;
  font-family: var(--texto);
  margin-bottom: 9px;
}

.formularios-de-contacto .formulario .form-group {
  flex-shrink: 0;
  margin-bottom: 0;
}

.formularios-de-contacto .formulario input,
.formularios-de-contacto .formulario textarea {
  height: 55px;
  border-radius: 25px;
  background-color: #fff;
  border: 1px solid var(--primario);
}

.formularios-de-contacto .formulario .form-group:nth-last-child(1),
.formularios-de-contacto .formulario .form-group:nth-last-child(2) {
  flex-basis: 100%;
  flex-grow: 1;
}

.formularios-de-contacto .formulario textarea {
  height: 120px;
  padding: 10px;
  resize: none;
}

.formularios-de-contacto .group-btns {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  margin-left: 15px;
}

.formularios-de-contacto .captcha {
  object-fit: cover;
  height: 68px;
  flex-basis: 30%;
}

.formularios-de-contacto .checkbox span {
  color: var(--primario);
}

.formularios-de-contacto .custom-btn {
  max-width: 271px;
  flex-basis: 30%;
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 27px;
  background-color: var(--primario);
  border: 1px solid transparent;
  gap: 10px;
  font-size: 16px;
}

.formularios-de-contacto .custom-btn .img {
  width: 30px;
  height: 30px;
}

.formularios-de-contacto .custom-btn::before {
  border-radius: 27px;
  background-color: #fff;
  border: 1px solid var(--primario);
}

.formularios-de-contacto .hover-effect:focus:before,
.formularios-de-contacto .hover-effect:hover:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.formularios-de-contacto .custom-btn:focus,
.formularios-de-contacto .custom-btn:active,
.formularios-de-contacto .custom-btn:hover {
  color: var(--primario);
}

.formularios-de-contacto .custom-btn:focus .img path,
.formularios-de-contacto .custom-btn:active .img path,
.formularios-de-contacto .custom-btn:hover .img path {
  fill: var(--iconos);
}

.div_botones_resena {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 5px;
}

.button_resenas_interior {
  width: 250px;
}

.etiqueta {
  width: 100%;
  bottom: 0;
  font-size: 22px;
  background-color: var(--primario);
  font-family: var(--titulo);
  padding: 15px 25px;
  border-radius: 0px;
  color: #fff;
}

.icono_tratamientos {
  height: 50px;
  z-index: 1;
  width: 40px;
  top: -10px;
  position: relative;
}

.navbar-nav > li.dropdown .dropdown-menu .open > *:not(:first-child) {
  border-radius: 0 0 5px 5px;
  border-radius: 20px;
  /* padding: 5px 6px 7px; */
  background-color: #1c71af;
  padding: 0;
  left: 219px;
  top: 5px;
  transform: perspective(1px) translateZ(0);
  width: 380px;
  display: inline-block;
  vertical-align: middle;

  transition: none;
}

.navbar-nav > li.dropdown .dropdown-menu li:not(:nth-last-child(-n + 2)) {
  border-bottom: 1px solid #0d5182 !important;
}

.navbar-nav > li.dropdown .dropdown-menu .open li:not(:nth-last-child(-n + 2)) {
  border-bottom: 1px solid #0d5182 !important;
}

.navbar-nav > li.dropdown .dropdown-menu .open > *:not(:first-child) a {
  font-size: 13px;
}

.dropdown-backdrop {
  display: none !important;
}

.nav .open > a {
  background-color: #1c71af;
  border-radius: 0 0 5px 5px;
  border-radius: 20px;
}

.dropdown-menu > .active > a {
  border-radius: 10px;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
  background-color: none !important;
}

.tarjeta {
  height: 710px;
}

.footer-grupo.flex.justify-content-center.align-items-center {
  align-items: center;
  justify-content: center;
}

.equipo_portada {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

/* =========================================================
                          ESTILOS MAQUETA
      ========================================================= */
/* .row{
          margin: 0;
        } */
h1 {
  font-weight: 400;
  font-size: 60px;
  margin: 0;
}

.btn {
  font-family: var(--titulo);
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  min-width: 220px;
  padding: 15px 30px;
  border-radius: var(--rounded_full);
}

.btn-azul {
  background: var(--primario);
  color: #fff;
  transition: all 0.3s ease;
}

.btn-azul:hover {
  color: var(--primario);
  border: var(--primario) 1px solid;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-blanco {
  background: #fff;
  color: var(--primario);
  border: transparent 1px solid;
  transition: all 0.3s ease;
}

.btn-blanco:hover {
  color: white;
  background-color: var(--primario);
  border: white 1px solid;
  transition: all 0.3s ease;
}

.btn-borde {
  background: transparent;
  border: 1px solid var(--primario);
  color: var(--primario);
  transition: all 0.3s ease;
}

.btn-borde:hover {
  color: white;
  background-color: var(--primario);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.btn-borde-blanco {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-borde-blanco:hover {
  color: var(--primario);
  background-color: white;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

/* =========================================================
                            NAVBAR
      ========================================================= */
.navbar-nav > li > a {
  transition: all 0.3s ease;
}

.sidebar-wrapper .caja_redes .grupo_redes{
  gap: 15px;
}

.navbar-nav > li.grupo_redes > a:hover {
  background-color: transparent !important;
}

.navbar-nav > li.active > a,
.navbar-nav > li > a:hover {
  background-color: var(--primario_oscuro) !important;
  border-radius: var(--rounded_full);
}

.navbar-fixed-top .navbar-collapse {
  height: 100% !important;
}

.nav > li > a > img {
  margin: auto;
  width: 20px;
  height: 20px;
}

.navbar-nav .grupo_redes {
  margin: 0 40px 0 0;
}

.navbar-nav .grupo_redes a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 10px;
  padding: 0;
}

.sidebar-wrapper .grupo_redes a {
  text-indent: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.navbar-nav .grupo_redes a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/Formas/forma-iconos.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.navbar-nav .grupo_redes a img {
  position: relative;
  z-index: 1;
}

/* =========================================================
                      BANNER / SLIDER (Splide)
      ========================================================= */
.banner {
  background-color: var(--secundario);
  color: #fff;
  position: relative;
  background-image: url("images/Formas/Forma-estrellas-cabecera.svg"),
    linear-gradient(90deg, #122f6e, #0a2b63);
  background-repeat: no-repeat;
  background-position: right 40px center, center center;
  background-size: auto calc(100% - 80px), 100% 100%;
}

#banner-slider {
  overflow: visible;
}

#banner-slider .row {
  margin: 0 !important;
}

#banner-slider .splide__track,
#banner-slider .splide__list,
#banner-slider .splide__slide {
  height: 100% !important;
  min-height: 820px;
}

#banner-slider .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

#banner-slider .splide__slide > .row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}

#banner-slider .splide__slide > .row::before,
#banner-slider .splide__slide > .row::after {
  display: none;
}

#banner-slider .contenedor-img,
#banner-slider .contenedor-texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#banner-slider .contenedor-img {
  height: 100%;
  align-items: center;
  position: relative;
  z-index: 0;
}

#banner-slider .contenedor-img::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 90%;
  height: 90%;
  background-image: url("images/Formas/Forma-fondo-cabecera.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}

#banner-slider .contenedor-texto {
  align-items: flex-start;
  width: 405px;
}

#banner-slider .splide__slide > .row [class^="col-"],
#banner-slider .splide__slide > .row [class*=" col-"] {
  float: none;
}

#banner-slider .col-md-8,
#banner-slider .col-md-4 {
  padding: 0 !important;
}

#banner-slider .splide__slide img {
  width: 700px;
  max-height: 700px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#banner-slider .contenedor-texto p {
  color: #fff;
  font-size: 15px;
  line-height: 25px;
  font-weight: 200;
  text-align: left;
  margin: 40px 0;
}

#banner-slider .splide__arrows {
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}

#banner-slider .splide__arrow {
  border-radius: var(--rounded_full);
  border: 1px solid #fff;
  width: 55px;
  height: 55px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px 25px;
  padding: 0;
}

#banner-slider .splide__arrow--prev {
  bottom: 1em;
  top: auto;
  background-image: url("images/Iconos/icon-arrow-up.svg");
}

#banner-slider .splide__arrow--next {
  top: 1em;
  background-image: url("images/Iconos/icon-arrow-down.svg");
}

#banner-slider .splide__arrow svg {
  display: none;
}

.banner-hand {
  position: absolute;
  bottom: 30px;
  left: calc(50% - 15px);
  /* transform: translateX(-50%); */
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  /* pointer-events: none; */
}

.banner-hand.animated {
  animation-duration: 2.2s;
}

#banner-slider .splide__pagination {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0;
}

.splide__pagination__page {
  width: 10px;
  height: 10px;
  background: none;
  border: 1px solid #fff;
  margin: 5px;
  padding: 0;
  opacity: 1;
  transition: all 0.3s ease;
}

#banner-slider .splide__pagination__page.is-active {
  transform: scale(1);
  background: #fff;
}

/* =========================================================
              BLOQUES (3 columnas a pantalla completa)
      ========================================================= */
.contenedor-bloques {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

.contenedor-bloques .bloque {
  position: relative;
  flex: 1 1 33.333%;
  width: 33.333%;
  height: 42vw;
  display: flex;
  align-items: flex-end;
  text-align: center;
  overflow: hidden;
}

.contenedor-bloques .bloque::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 0;
}

.contenedor-bloques .bloque:hover::before {
  transform: scale(1.1);
}

.contenedor-bloques .contenedor-texto {
  display: flex;
  width: 100%;
  height: 25%;
  position: relative;
  z-index: 1;
  padding-top: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  transition: all 0.3s ease;
}

.contenedor-bloques .contenedor-texto::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 85%;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: all 0.3s ease;
}

.contenedor-bloques .bloque:hover .contenedor-texto {
  align-items: center;
  height: 100%;
  transition: all 0.3s ease;
}

.contenedor-bloques .bloque:hover .contenedor-texto::after {
  opacity: 0.15;
  transition: all 0.3s ease;
}

.contenedor-bloques .bloque h3 {
  margin: auto auto;
  font-weight: 200;
  font-size: 25px;
  color: #fff;
}

/* =========================================================
                    PRODUCTOS (grid y cards)
========================================================= */
.productos {
  background-color: #fafafa;
  /* text-align: center; */
  margin: 0 auto;
}

.productos .row {
  margin: 0 !important;
}

.productos .cabecera-productos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 15px;
}

.productos .cabecera-productos h1 {
  color: #444;
}

.productos .lista-productos .col-md-4 {
  margin-bottom: 30px;
}

.productos .lista-productos .producto-card {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.productos .lista-productos .producto-card__imagen {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.productos .lista-productos .producto-card__imagen img {
  width: 100%;
  /* height: 568px; */
  aspect-ratio: 9 / 13;
  object-fit: contain;
  background-color: #fff;
  transition: transform 0.35s ease;
}

.productos .lista-productos .producto-card:hover .producto-card__imagen img,
.productos .lista-productos .producto-card:focus .producto-card__imagen img {
  transform: scale(1.05);
}

.productos .lista-productos .producto-card:hover p {
  font-weight: 500;
  transition: all 300ms ease;
}

.productos .lista-productos p {
  margin: 20px 0 0;
  font-size: 18px;
  font-weight: 400;
  transition: all 300ms ease;
}

/* =========================================================
                          SECCIONES INFO
      ========================================================= */
.info1,
.info2 {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.info1 {
  background-color: #f6f6f6;
}

.info2 {
  background: #133476;
  color: #fff;
}

.info-imagen {
  position: relative;
  flex: 0 0 50vw;
  width: 50vw;
  height: 50vw;
  overflow: hidden;
}

.info-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info-imagen::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  pointer-events: none;
}

.info1 .info-imagen::after {
  background: linear-gradient(
    to bottom,
    rgba(246, 246, 246, 1),
    rgba(246, 246, 246, 0)
  );
  left: auto;
  right: 0;
  transform: none;
}

.info2 .info-imagen::after {
  background: linear-gradient(
    to bottom,
    rgba(13, 45, 106, 0),
    rgba(19, 52, 118, 1)
  );
  left: 0;
  transform: none;
}

.info-contenido {
  flex: 1 1 300px;
  max-width: 555px;
  margin: auto;
  padding: 0 24px;
  box-sizing: border-box;
  position: relative;
  z-index: 0;
}

.info-contenido p,
.catalogo .contenedor-texto p {
  font-size: 15px;
  line-height: 25px;
  font-weight: 200;
  text-align: left;
  margin: 40px 0;
}

.info2 .info-contenido p {
  color: #fff;
}

.info1::before,
.info2::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  pointer-events: none;
  z-index: 0;
  background-image: url("images/Formas/Forma-estrellas-fondo-azul.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.info1::before {
  right: 40px;
  left: 0;
  background-position: right center;
  filter: brightness(0) invert(1);
}

.info2::before {
  left: 40px;
  right: 0;
  background-position: left center;
}

.info1 > *,
.info2 > * {
  position: relative;
  z-index: 1;
}

/* =========================================================
                            CATÁLOGO
      ========================================================= */
.catalogo {
  background-color: #fbfbfb;
}

.catalogo .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.catalogo .row [class^="col-"],
.catalogo .row [class*=" col-"] {
  float: none;
  display: flex;
}

.catalogo .col-md-7,
.catalogo .col-md-5 {
  justify-content: center;
}

.catalogo .contenedor-imagen {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 520px;
  padding: 40px 0;
}

.catalogo .contenedor-imagen img {
  width: 650px;
  max-width: 100%;
  max-height: 650px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}

.catalogo .contenedor-imagen::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-image: url(images/Formas/Forma-fondo-carrito.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
}

.catalogo .contenedor-texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  text-align: left;
  gap: 15px;
}

.catalogo .contenedor-texto a {
  align-self: flex-start;
}

/* =========================================================
                      SLIDER MARCAS (bxSlider)
      ========================================================= */

.seccionMarcas {
  background-color: white;
}
.sliderMarcas {
  overflow: hidden;
}

.sliderP > .bx-wrapper {
  margin: 0 !important;
  max-width: 100% !important;
}

.sliderP > .bx-wrapper .bx-viewport {
  box-shadow: 0 0 0 #ccc;
  border: 0 solid #fff;
  left: 0;
  background: transparent;
  box-sizing: border-box;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}

.marcas .padre_imagen {
  height: 150px;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 25px;
}

.marcas .padre_imagen .imagen {
  height: 100px;
  width: 100%;
  margin: 40px 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.2s ease-in-out;
}

.marcas .columnas {
  width: 280px !important;
}

/* =========================================================
                                VIDEO
      ========================================================= */
.video {
  position: relative;
}

.video video {
  display: block;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 16/9;
}

.video .video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 110px;
  height: 110px;
  border-radius: var(--rounded_full);
  border: 1px solid #fff;
}

/* =========================================================
                              FOOTER
      ========================================================= */
footer {
  position: relative;
  background-color: #133476;
}

footer,
footer a {
  color: #fff;
}

.footerMain a:hover {
  text-decoration: underline;
  color: #fff;
}

.footerMain h3 {
  font-weight: 600;
}

.footerMain .footerLogo img {
  margin: 80px 0;
  width: 100%;
}

footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  height: 67%;
  background-image: url(images/Formas/Forma-estrellas-fondo-pie.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  z-index: 0;
  pointer-events: none;
}

footer > * {
  position: relative;
  z-index: 1;
}

.footerMain .contacto {
  margin: 0 auto;
  width: fit-content;
}

.footerMain .contacto .contenidoContacto {
  display: flex;
  gap: 30px;
  margin: 40px 0;
}

.footerMain .contacto .contenidoContacto a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  padding: 15px 0 15px 75px;
  min-height: 80px;
}

.footerMain .contacto .contenidoContacto a img {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  z-index: 1;
}

.footerMain .contacto .contenidoContacto a p {
  color: #fff;
  margin: 0;
}

.footerMain .contacto .contenidoContacto a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-image: url("images/Formas/forma-iconos.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
}

.footerMain .redes .contenidoRedes {
  display: flex;
  gap: 30px;
  margin: 40px 0;
}

.footerMain .redes .contenidoRedes a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.footerMain .redes .contenidoRedes a img {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}

.footerMain .redes .contenidoRedes a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/Formas/forma-iconos.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
}

.footerMain .footerColumns__redes {
  margin-top: 30px;
}

.footerMain .footerColumns {
  width: 100%;
}

.footerOtros {
  background-color: var(--secundario);
  padding: 15px 0;
}

.footerMain .copyright {
  background-color: var(--primario_oscuro__e);
}

.footerOtros .footerLinks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: 25px 0;
  margin: 0;
}

.footerOtros .footerLinks li {
  position: relative;
  padding: 0 15px;
}

.footerOtros .footerLinks li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.4);
}

/* FIN ESTILOS MAQUETA */

@media (max-width: 991px) {
  #banner-slider {
    min-height: 600px;
  }
  .filtros {
    height: 200px;
  }
  .filtros .row .col-xs-12 {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  #banner-slider {
    min-height: 480px;
  }

  .custom-container {
    padding: 0 25px;
  }

  .antetitulo {
    font-size: 22px;
    line-height: 26px;
  }

  .custom-button-lg {
    width: 280px;
  }

  .toggled .sidebar-wrapper {
    width: 80%;
  }

  #banner-slider {
    max-width: calc(100% - 30px);
    /* left: 15px; */
    border-radius: 30px;
  }

  .banner {
    padding-bottom: 60px;
  }

  .banner .custom-container {
    padding: 0 25px;
  }

  .servicios .img-container {
    height: 270px;
  }

  .img-container .img_adorno {
    width: 100px;
    right: -5px;
  }

  .servicios .img_adorno {
    width: 100px;
    bottom: -8px;
    right: 5px;
  }

  .caja_equipo {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 325px;
  }

  .servicios .fondo {
    top: 11px;
  }

  .dropdown-submenu {
    position: static;
  }
}

@media (max-width: 576px) {
  #banner-slider {
    min-height: 380px;
  }
}

@media (max-width: 767px) {
  .menu-cesta {
    width: 100vw;
    transform: translate(110vw, 0px);
  }
  .menu-cesta .cabecera-cesta {
    padding-top: 15px;
    height: 50px;
  }
  .menu-cesta .cabecera-cesta h3 {
    font-size: 20px;
  }
  .cerrar-cesta {
    top: 10px;
    right: 10px;
  }
  .cerrar-cesta img {
    height: 30px;
    width: 30px;
  }
  .cuerpo-cesta {
    height: calc(100vh - 225px);
    padding: 30px;
    overflow: scroll;
  }
  #manto-cesta.toogled,
  #manto-movil.toogled {
    z-index: 9;
    opacity: 0.6;
    background-color: #0d0d0d;
  }

  /* móviles */
  .marco-izq .col-xs-10 {
    margin-left: 0px;
  }
  .filtros {
    height: 328px;
  }

  h3.categoria {
    text-align: center;
  }
  span.precio {
    font-size: 48px;
    font-family: var(--familia_fuente);
    font-weight: 400;
  }
  span.tachado {
    font-size: 24px;
    font-family: var(--familia_fuente);
    font-weight: 400;
  }
  .precios_estilos {
    text-align: center;
    width: 100%;
  }
  .banner_interior {
    height: 200px !important;
  }
  .otras_fotos {
    margin-bottom: 30px;
  }
  .nav-botones > li {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }
  .nav-botones > li > a {
    margin: 0;
  }
  .btn-pagination {
    padding: 6px 12px;
    font-size: 12px;
    margin: 0 7px;
    border: 1px solid;
  }
  h3 {
    font-size: 20px;
  }
  .proyecto .imagen {
    background-size: cover;
  }
  .cuadro_noticia {
    float: none;
    position: relative;
    width: 100%;
    margin: 0 auto 30px;
  }

  .instagram-widget > div {
    position: relative;
    padding-top: calc(100vw / 2);
  }
  .instagram-widget iframe {
    width: 300% !important;
  }
}

@media (min-width: 1200px) {
  .tercer_contenedor {
    margin-top: 27px;
  }

  .custom-container {
    max-width: 1410px;
    width: 100%;
    margin: 0 auto;
  }

  .tarjeta {
    height: 580px;
  }

  .custom-container-2 {
    max-width: 2000px;
    width: 100%;
  }
}

@media (max-width: 1750px) {
  .banner .custom-container {
    padding: 0 100px;
  }

  .navbar-brand > img {
    width: 150px;
  }
}

@media (max-width: 1650px) {
  .navbar-brand {
    left: 30px;
  }

  .nav-buttons {
    right: 20px;
  }

  .navbar-nav {
    column-gap: 1px;
  }

  .navbar-nav > li > a {
    font-size: 14px;
    /* padding: 0 10px; */
  }

  /* .banner {
    width: 100%;
    height: auto;
    margin-top: 145px;
    background-image: linear-gradient(
      180deg,
      var(--transparencia) 50%,
      var(--secundario) 50%
    );
    z-index: 1;
    align-items: end;
    aspect-ratio: 29 / 15;
  } */
}

@media (max-width: 992px) {
  /* .img-container .img_adorno{
      right: 0px;
    } */

  .custom-container {
    padding: 0 25px;
  }

  .titulo {
    text-align: center;
  }

  .navbar-fixed-top {
    /* background-color: var(--primario); */
  }

  .barra_ampliada .navbar-fixed-top,
  .barra_reducida .navbar-fixed-top {
    height: 52px;
    filter: drop-shadow(0px 5px 7.5px rgba(0, 0, 0, 0.1));
  }

  .barra_ampliada .forma_logo,
  .barra_reducida .forma_logo {
    width: 130px;
  }

  .navbar-brand {
    left: 20px;
  }

  .barra_ampliada .navbar-brand,
  .barra_reducida .navbar-brand {
    top: 0;
    height: 100px;
  }

  .navbar-brand > img {
    width: auto;
    height: 90%;
    /* filter: brightness(0) invert(1); */
  }

  .navbar-collapse.collapse {
    display: none !important;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-header {
    float: left;
  }

  .banner-container {
    margin: 0 auto;
  }

  .banner {
    /* height: 650px; */
    margin-top: 52px;
  }

  .banner .custom-container {
    bottom: calc(25% - 150px);
    /* bottom: 100px; */
  }

  .banner .subtitulo {
    text-align: center;
  }

  .servicios .subtitulo {
    text-align: center;
  }

  .servicios .img-container {
    height: 500px;
    margin: 0 auto;
  }

  .servicios .img_adorno {
    width: 165px;
  }

  .bloqueInformacion .row-align-center {
    flex-direction: column-reverse;
  }

  .bloqueInformacion .img-container {
    height: 625px;
    width: 520px;
  }

  .bloqueInformacionA .img-container .figura {
    left: auto;
    width: 100%;
  }

  footer .footer-copyright {
    column-gap: 20px;
  }

  .footer-contactos .row-redes .red {
    font-size: 12px;
  }

  .footer-info {
    column-gap: 30px;
  }

  .bloqueInformacionA .img-container .forma_fondo_2 {
    bottom: -18px;
  }

  .dropdown-submenu {
    position: static;
  }

  .primer_contenedor {
    align-self: center;
  }
  .segundo_contenedor,
  .tercer_contenedor {
    flex-direction: column;
  }

  .tercer_contenedor {
    margin: 0 auto;
    margin-top: 24px;
    text-align: center;
    width: 100%;
  }

  .antetitulo,
  .titulo {
    text-align: center;
  }

  .button-centred-md {
    margin: 0 auto;
  }

  .titulo {
    font-size: 45px;
    line-height: 50px;
  }

  .titulo-lg {
    font-size: 45px;
    line-height: 50px;
  }

  .parrafo {
    text-align: justify;
    text-align-last: center;
  }

  .servicios .parrafo {
    text-align: left;
  }

  #banner-slider {
    max-width: calc(100% - 90px);
    /* left: 45px; */
  }

  .banner .degradado {
    height: 75%;
  }

  .caja_resenha {
    max-width: 420px;
    width: 100%;
    margin: 0 auto 30px;
  }

  .footer-titulo {
    text-align: center;
  }

  footer .vl {
    height: 1px;
    width: 300px;
  }

  .footer-info {
    flex-flow: column;
    row-gap: 15px;
  }

  .footer-contactos li {
    justify-content: center;
  }

  .footer-info ul {
    align-self: center;
  }

  .footer-grupo {
    justify-content: center;
  }

  .dropdown-submenu:not(.open) > .dropdown-menu {
    display: none;
  }

  .dropdown-submenu {
    position: static;
  }

  /* móviles */

  /* menu_desplegable, descomentar si es necesario para el menu de movil */

  /*
    .sidebar-nav .multi-level li a{
        text-indent: 0;
        padding-left: 40px !important;
    }
    .sidebar-nav .multi-level li:first-child{
        padding: 0;
    }
    .sidebar-nav .multi-level li:last-child a{
        text-indent: 0;
    }
    .sidebar-nav .multi-level li.active a{background-color: rgba(0, 0, 0, 0.45);}
    .sidebar-nav .multi-level li:first-child{
        padding: 0;
    }
    .sidebar-nav .multi-level li:last-child a{
        text-indent: 0;
    }
    .sidebar-nav .multi-level li.active a{
        text-decoration: none;
        color: #ffffff;
        background-color: rgba(255, 255, 255, 0.30);
        font-weight: 400;
    }

	.sidebar-wrapper{opacity: 1}

	.sidebar-nav .open>.dropdown-menu {
		position: static;
		background-color: transparent;
		border: none;
		box-shadow: none;
		margin: 0;
		padding: 0;
	}

	.sidebar-nav .dropaco .dropdown-menu>li>a {
		text-align: left;
		padding: 8px 20px;
		background-color: rgba(0, 0, 0, 0.25);
		white-space: initial;
		color: #ffffff;
		font-size: 15px;
		font-family: 'Roboto Condensed', sans-serif;
		font-weight: 300;
	}

    .sidebar-nav .multi-level li.active a {
        background-color: rgba(0, 0, 0, 0.45);
    }
*/

  /* menu_desplegable */

  /* whatsapp */
  .floating-icons {
    bottom: 1rem;
    right: 1rem;
  }
  .videos_responsive {
    width: 100%;
    float: none;
  }
  .marco-contacto {
    margin-top: 40px;
  }
  .botones_carro {
    width: 100%;
    margin-top: 20px;
  }
  .otras_fotos .imagen {
    height: 100px;
  }
  .foto_principal .imagen {
    width: 100%;
  }
  .zona_galeria_mini .bx-wrapper .bx-prev {
    display: none;
  }
  .zona_galeria_mini .bx-wrapper .bx-next {
    display: none;
  }

  .instagram-widget > div {
    position: relative;
    padding-top: calc(100vw / 3);
  }
  .instagram-widget iframe {
    width: 200% !important;
  }
  .padre_imagen .imagen {
    background-size: contain;
  }
  .sidebar-wrapper.left .form-control {
    height: 43px;
    padding: 6px 12px;
    color: var(--secundario);
    font-style: italic;
    background-color: #ffffff;
    border: 1px solid var(--primario);
    border-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .sidebar-nav li a.favorito {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
  .caja_favorito,
  .caja_redes {
    width: 100%;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
  }

  .caja_favorito a,
  .caja_redes a {
    /* padding: 0 10px !important;
    margin: 10px 0 !important; */
  }
  .caja_acceso a {
    padding: 0 20px !important;
  }
  .caja_favorito a img {
    margin-left: 0 !important;
  }

  .sidebar-wrapper li img,
  .caja_redes a img {
    height: 31px !important;
    transition: all 0.2s ease-in-out;
  }
  .sidebar-wrapper.left .sidebar-nav li:first-child {
    padding: 10px 20px;
    text-indent: 0px;
    padding-top: 25px;
  }
  .left .sidebar-nav .multi-level li:first-child {
    padding: 0;
  }
  .left .sidebar-nav .multi-level li:last-child a {
    text-indent: 0;
  }
  .left .sidebar-nav .multi-level li.active a {
    text-decoration: none;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
  }
  .quantity {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .quantity label {
    margin-bottom: 0;
  }

  .zona-mapa iframe {
    height: 350px;
  }

  .formularios-de-contacto .mapa iframe {
    width: 100%;
    height: 340px;
  }

  .formularios-de-contacto .formulario {
    max-height: initial;
    gap: 15px;
    width: 100%;
    flex-flow: column;
  }

  .formularios-de-contacto .formulario input,
  .formularios-de-contacto .formulario textarea {
    max-width: initial;
  }

  .formularios-de-contacto .group-btns {
    flex-flow: column;
    align-items: center;
    gap: 20px;
  }

  .formularios-de-contacto .custom-btn {
    margin-right: auto;
    margin-left: auto;
  }

  .formularios-de-contacto .custom-btn,
  .formularios-de-contacto .captcha {
    width: 302px;
  }

  .formularios-de-contacto .mapa-container {
    margin-top: 25px;
    padding-left: 15px;
  }

  .linea {
    position: relative;
    bottom: 0;
    width: 200px;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 1px solid var(--secundario);
  }

  .parallax .fondo-container {
    height: 467px;
  }

  .tarjeta {
    height: 619px;
  }
}

@media (min-width: 600px) {
  .img-container .img_adorno {
    right: 72px;
  }
}

@media (max-width: 600px) {
  .titulo {
    font-size: 35px;
    line-height: 40px;
  }

  .subtitulo {
    font-size: 20px;
  }

  .titulo-lg {
    font-size: 30px;
    line-height: 35px;
  }

  .parrafo {
    font-size: 14px;
    line-height: 20px;
  }

  .banner .custom-container {
    transform: none;
    bottom: 10px;
  }

  .banner .subtitulo {
    font-size: 16px;
  }

  #banner-slider {
    border-radius: 20px;
  }

  .bloqueInformacionA .img-container {
    width: 320px;
    height: 320px;
  }

  .bloqueInformacionA .img-container .figura {
    width: 90%;
    left: 25px;
  }

  .caja_resenha {
    column-gap: 10px;
  }

  .footer-titulo {
    font-size: 22px;
  }

  footer .footer-copyright {
    border-radius: 45px;
    font-size: 12px;
  }

  footer .web_laspalmas {
    font-size: 12px;
    /* padding: 16px; */
  }

  .footer-img {
    width: 230px;
  }

  .button_resenas_interior {
    width: 300px;
  }

  .dropdown-submenu {
    position: static;
  }
}

@media (max-width: 1200px) {
  .dropdown-submenu > a:after {
    display: none;
  }
  .sidebar-wrapper.left .form-control {
    height: 43px;
    padding: 6px 12px;
    color: var(--secundario);
    font-style: italic;
    background-color: #ffffff;
    border: 1px solid #91a22f;
    border-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .sidebar-nav li a.favorito {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
  .caja_favorito,
  .caja_redes {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }
  .caja_favorito a,
  .caja_redes a {
    /* padding: 0 10px !important;
    margin: 10px 0 !important; */
  }
  .caja_acceso a {
    padding: 0 20px !important;
  }
  .caja_favorito a img {
    margin-left: 0 !important;
  }
  .sidebar-wrapper li img,
  .caja_redes a img {
    height: 20px;
    transition: all 0.2s ease-in-out;
  }
  .sidebar-wrapper.left .btn {
    padding: 6px 11px;
    height: 43px;
    border-radius: 4px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: var(--primario);
    border: 1px solid var(--primario);
  }
  .sidebar-wrapper.left .sidebar-nav li:first-child {
    padding: 10px 20px;
    text-indent: 0px;
    padding-top: 25px;
  }
  .left .sidebar-nav .multi-level li:first-child {
    padding: 0;
  }
  .left .sidebar-nav .multi-level li:last-child a {
    text-indent: 0;
  }
  .banner_interior {
    height: 250px;
  }
  .fijar {
    position: fixed;
    width: 100%;
  }

  .formularios-de-contacto .mapa iframe {
    height: 684px;
  }

  .linea {
    position: relative;
    bottom: 0;
    width: 200px;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 1px solid var(--secundario);
  }

  .parallax .fondo-container {
    height: 500px;
  }
}

@media (min-width: 993px) {
  /* móviles */
  .desfijar {
    position: absolute !important;
    width: 100%;
  }
}

/* RESPONSIVE MAQUETA */

@media (max-width: 1400px) {
  #banner-slider {
    max-width: calc(100% - 140px);
    border-radius: 40px;
  }

  .banner .custom-container {
    padding: 0 80px;
  }

  #banner-slider .contenedor-texto {
    width: 100%;
    max-width: 380px;
  }

  .navbar-nav > li > a {
    font-size: 12px;
    padding: 15px 10px;
  }
}

@media (max-width: 1300px) {
  #banner-slider .splide__slide > .row {
    flex-wrap: nowrap;
    column-gap: 30px;
  }

  #banner-slider .contenedor-img,
  #banner-slider .contenedor-texto {
    flex: 1 1 0;
  }

  #banner-slider .contenedor-texto {
    max-width: 360px;
  }

  #banner-slider .splide__slide img {
    max-width: 540px;
  }

  #banner-slider .splide__arrows {
    left: -15px;
  }
}

@media (max-width: 1200px) {
  .productos .lista-productos {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
  }

  .productos .lista-productos .col-md-4 {
    width: 50%;
    padding: 0 15px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {

  .navbar-nav > li > a.btn-blanco {
    min-width: 175px;
  }
  .navbar-nav .grupo_redes {
    margin: 0 35px 0 0;
  }

  .navbar-nav .grupo_redes a {
    margin: 0 5px;
  }

  .footerMain .contacto .contenidoContacto a {
    font-size: 18px;
    padding: 15px 0 15px 55px;
    min-height: 45px;
  }

  .footerMain .contacto .contenidoContacto a::before {
    width: 45px;
    height: 45px;
  }

  .footerMain h3 {
    font-size: 20px;
  }

  .footerMain .contacto .contenidoContacto a img {
    left: 23px;
    width: 25px;
    height: 25px;
  }

  .footerMain .redes .contenidoRedes a {
    width: 45px;
    height: 45px;
  }

  .footerMain .redes .contenidoRedes a img {
    width: 25px;
    height: 25px;
  }
}

@media (min-width: 993px) {
  .footerMain .container > .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .footerMain .footerLogoCol,
  .footerMain .footerInfoCol {
    display: flex;
    align-items: center;
  }

  .footerMain .footerInfoCol {
    justify-content: center;
  }

  .footerMain .footerColumns__redes {
    margin-top: 0;
  }
}

@media (max-width: 992px) {
  .navbar-brand::before {
    background-size: 90%;
    /* content: none; */
  }

  .banner {
    margin-top: 52px;
    background-position: center center;
    background-size: 100% 100%;
  }

  #banner-slider {
    max-width: calc(100% - 60px);
    min-height: 560px;
    border-radius: 32px;
    overflow: visible;
    padding-bottom: 0;
  }

  #banner-slider .splide__slide > .row {
    flex-direction: column;
    padding: 50px 35px 40px;
    row-gap: 10px;
    height: auto;
  }

  #banner-slider .contenedor-img {
    height: 550px;
    width: 550px;
  }

  #banner-slider .contenedor-img,
  #banner-slider .contenedor-texto {
    flex: none;
  }

  #banner-slider .contenedor-img::before {
    width: 100%;
    height: 100%;
  }

  #banner-slider .splide__slide img {
    max-height: 540px !important;
  }

  #banner-slider .contenedor-texto {
    width: 90%;
    max-width: none;
  }

  #banner-slider .contenedor-texto p {
    margin: 20px 0 30px;
  }

  #banner-slider .splide__arrows {
    left: 10px;
    justify-content: center;
    margin: 25px auto 0;
  }

  #banner-slider .splide__arrow {
    width: 44px;
    height: 44px;
  }

  #banner-slider .splide__pagination {
    display: none;
    right: 20px;
  }

  /* .banner-hand {
    display: none;
  } */

  #banner-slider .splide__track,
  #banner-slider .splide__slide {
    min-height: 600px;
  }

  .contenedor-bloques {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .contenedor-bloques .bloque {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
  }

  .contenedor-bloques .contenedor-texto {
    padding-top: 35px;
  }


  .productos .cabecera-productos {
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }

  .info1,
  .info2 {
    flex-direction: column;
    align-items: stretch;
  }

  .info1 .info-contenido,
  .info2 .info-contenido {
    order: 1;
    max-width: none;
    padding: 45px 25px;
  }

  .info1 .info-imagen,
  .info2 .info-imagen {
    order: 2;
    flex: 0 0 auto;
    width: 100%;
    height: clamp(260px, 65vw, 420px);
  }

  .info-imagen::after {
    top: 0;
    bottom: auto;
    left: 0;
    transform: none;
    width: 100%;
    height: 12px;
  }

  .info1 .info-imagen::after {
    background: linear-gradient(
      to right,
      rgba(246, 246, 246, 1),
      rgba(246, 246, 246, 0)
    );
  }

  .info2 .info-imagen::after {
    background: linear-gradient(
      to right,
      rgba(13, 45, 106, 0),
      rgba(19, 52, 118, 1)
    );
  }

  .catalogo .col-md-7{
    margin: auto;
  }

  .footerMain .contacto {
    width: auto;
  }

  .footerMain .contacto .contenidoContacto {
    gap: 20px;
    margin: 0 0 5px;
  }

  .footerMain .contacto .contenidoContacto a {
    font-size: 15px;
    padding: 25px 0 25px 60px;
    min-height: auto;
  }

  .footerMain .redes .contenidoRedes {
    margin: 15px 0 0;
  }

  .footerMain .contacto .contenidoContacto a::before,
  .footerMain .redes .contenidoRedes a {
    width: 50px;
    height: 50px;
  }

  .footerMain .contacto .contenidoContacto a img,
  .footerMain .redes .contenidoRedes a img {
    left: 25px;
    width: 20px;
    height: 20px;
  }

  .footerMain .redes .contenidoRedes a img {
    left: 1px;
  }

  .footerOtros .footerLinks {
    padding: 10px 0;
  }

  .footerOtros .footerLinks li {
    font-size: 10px;
  }

  .footerOtros .footerLinks li a {
    font-size: 12px;
  }

  footer .footer-copyright {
    font-size: 11px;
  }

  .footerMain .container > .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .footerMain .footerLogoCol,
  .footerMain .footerInfoCol {
    display: flex;
    align-items: center;
  }

  .footerMain .footerInfoCol {
    justify-content: center;
  }

  .footerMain .footerLogo img {
    margin: 60px 0;
  }

  .footerMain .footerColumns__redes {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  #banner-slider {
    width: 100%;
    height: auto;
    min-height: auto;
  }

  #banner-slider .splide__slide > .row {
    row-gap: 25px;
    padding: 50px 20px 40px;
  }

  #banner-slider .contenedor-img {
    width: 100%;
    height: auto;
  }

  #banner-slider .splide__slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  #banner-slider .contenedor-texto {
    align-items: center;
    text-align: center;
  }

  #banner-slider .contenedor-texto p {
    text-align: center;
    font-size: 12px;
    line-height: 20px;
  }

  #banner-slider .splide__arrows {
    left: 0px;
  }

  #banner-slider .splide__arrow {
    width: 25px;
    height: 25px;
    background-size: 15px 15px;
  }

  #banner-slider,
  #banner-slider .splide__track,
  #banner-slider .splide__list,
  #banner-slider .splide__slide {
    min-height: auto;
  }

  #banner-slider .splide__pagination {
    right: -15px;
  }

  #banner-slider .splide__track,
  #banner-slider .splide__slide {
    min-height: 480px;
  }

  h1 {
    font-size: 40px;
  }

  .contenedor-bloques .contenedor-texto{
    height: 35%;
  }

  .productos .lista-productos {
    margin: 0;
  }

  .productos .lista-productos .col-md-4 {
    width: 100%;
    padding: 0;
  }

  .info1 .info-contenido,
  .info2 .info-contenido {
    text-align: center;
  }

  .info-contenido p {
    text-align: center;
    font-size: 12px;
    line-height: 20px;
  }

  .info-contenido a {
    margin: auto;
  }

  .catalogo .row {
    display: block;
  }

  .catalogo .row [class^="col-"],
  .catalogo .row [class*=" col-"] {
    display: block;
  }

  .catalogo .contenedor-texto {
    margin-top: 30px;
    text-align: center;
  }

  .catalogo .contenedor-texto p {
    text-align: center;
    font-size: 12px;
    line-height: 20px;
  }

  .catalogo .contenedor-texto a {
    margin: auto;
  }

  .catalogo .contenedor-imagen {
    min-height: 320px;
    padding: 30px 0;
  }

  .catalogo .contenedor-imagen::before {
    width: 95%;
    height: 95%;
  }

  .footerMain > .container {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .footerMain .container > .row {
    display: block;
    text-align: center;
  }

  .footerMain .footerLogoCol,
  .footerMain .footerInfoCol {
    display: block;
    width: 100%;
  }

  .footerMain .footerLogo {
    display: flex;
    justify-content: center;
  }

  .footerMain .footerLogo img {
    margin: 0 auto;
    max-width: 220px;
  }

  .footerMain .footerColumns {
    margin: 0;
  }

  .footerMain .footerColumns__contacto,
  .footerMain .footerColumns__redes {
    text-align: center;
  }

  .footerMain .contacto {
    margin: 0 auto;
  }

  .footerMain .contacto .contenidoContacto {
    margin: 10px auto 0;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
  }

  .footerMain .contacto .contenidoContacto a {
    justify-content: center;
    padding: 15px 0 15px 60px;
  }

  .footerMain .redes {
    margin: 0 auto;
  }

  .footerMain .footerColumns__contacto {
    margin-top: 40px;
  }

  .footerMain .footerColumns__redes {
    margin-top: 30px;
  }

  .footerMain .redes .contenidoRedes {
    justify-content: center;
    /* margin-bottom: 30px; */
  }
}

@media (max-width: 576px) {
  #banner-slider .splide__track,
  #banner-slider .splide__slide {
    min-height: 380px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 25px;
  }

  .btn {
    font-size: 15px;
    min-width: 180px;
    padding: 10px;
  }
}

/* FIN RESPONSIVE MAQUETA */
