:root {
  --primario__e: #fb542c;
  --primario_oscuro__e: #353535;
  --color_boton: #fec300;
  --light__e: #fff;
  --titulo: "golos-text", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "golos-text", sans-serif;
  overflow-x: hidden;
}

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

/* whatsapp */
.floating-icons {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9;
}

.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: 55px;
  height: auto;
}

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

.btn-llamar-ahora a{
  background-color: var(--primario_oscuro__e);
  margin: 15px;
  border-radius: 30px;
}

.btn-llamar-ahora a:hover{
  background-color: #fff !important;
  color: var(--primario_oscuro__e) !important;
}

.btn-llamar-ahora a::after{
  border-bottom: none !important;
}


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

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

.sticky {
  position: sticky !important;
}

.titulo {
  font-size: 55px;
  line-height: 60px;
  font-family: var(--titulo);
  font-weight: 700;
  color: var(--primario__e);
  margin-bottom: 0;
  margin-top: 0;
}

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

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

.antetitulo {
  color: var(--primario__e);
  font-family: var(--titulo);
  font-size: 20px;
  font-weight: 600;
}

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

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

.text-secundario {
  color: #a3c5d9;
}

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

.text-shadow {
  filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.45));
}

.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;
}

.container-portada label {
  font-weight: 600;
}

.cuerpo_zone {
  background-color: #ffff;
  padding: 50px;
  border-radius: 50px;
}

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

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

.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;
  line-clamp: 1;
  -webkit-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 linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.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: 320px;
  height: 70px;
  border-radius: 10px;
  background-color: transparent;
  font-size: 16px;
  border: 2px solid transparent;
  background-color: var(--primario__e);
  color: #fff;
  column-gap: 10px;
  z-index: 1;
}

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

.custom-button:hover img,
.custom-button:active img,
.custom-button:focus img {
  filter: brightness(0) saturate(100%) invert(29%) sepia(65%) saturate(1046%)
    hue-rotate(187deg) brightness(91%) contrast(95%);
}

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

.custom-button img {
  width: 25px;
  transition: filter 0.3s linear;
}

.custom-button-lg {
  width: 280px;
  height: 70px;
  border-color: var(--light__e);
  color: var(--light__e);
  border-radius: 35px;
}

.custom-button-lg::before {
  background-color: var(--light__e);
}

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

.custom-button-hidden-md {
  display: none;
}

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

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

.container-portada .row {
  gap: 100px;
}

.logo-navbar a {
  margin-left: 10px;
  width: 350px;
  height: auto;
}

.btn-enviar {
  color: var(--primario_oscuro__e);
  font-size: 14px;
  padding: 15px 55px;
  border-radius: 25px;
}

.btn-enviar-2 {
  background-color: var(--primario__e);
  color: #ffff;
  font-size: 14px;
  padding: 15px 55px;
  border-radius: 25px;
}

.btn-enviar-2:hover{
  color: #fff;
  background-color: #de431d;
}

.btn-enviar img {
  filter: brightness(0.2);
}

.btn-enviar img,
.btn-enviar-2 img {
  margin-right: 5px;
}

.navbar-contacto {
  top: 160px;
  height: 40px;
  border-radius: 25px;
  left: 70px;
  align-content: center;
  position: fixed;
  background-color: var(--primario__e);
  z-index: 10;
  filter: drop-shadow(0px 5px 7.5px rgba(0, 0, 0, 0.2));
}

.navbar-contacto > .flex {
  gap: 20px;
  padding: 0 20px;
}


.navbar-contacto .contacto-contenido {
  height: 100%;
  gap: 10px;
  align-content: center;
}

.contacto-contenido p {
  color: #ffff;
  margin: 0;
}

.contacto-contenido img {
  width: 18px;
}

.lista-portada {
  padding-left: 15px;
  list-style: disc;
  margin: 0;
}

.lista-portada li::marker {
  color: #fbc404;
  font-size: large;
}

.lista-portada li {
  margin-bottom: 4px;
  font-weight: 700;
}

.navbar {
  z-index: 15;
  margin: 37px 70px 0 70px;
  border-radius: 50px;
  background-color: #ffff;
}

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

.navbar-fixed-top .gradient {
  background-image: linear-gradient(
    270deg,
    rgba(36, 87, 163, 0.99) 0%,
    transparent 100%
  );
}

.navbar-brand {
  padding: 0;
  height: auto;
  left: 75px;
  z-index: 2;
}

.barra_ampliada .navbar-brand {
  width: 230px;
  top: 40px;
}

.barra_reducida .navbar-brand {
  width: 140px;
  top: 20px;
}

.navbar-brand > img {
  width: 100%;
}

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

.barra_ampliada .navbar-nav {
  height: 105px;
}

.barra_reducida .navbar-nav {
  height: 90px;
}

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

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

.navbar-nav > li > a {
  height: 100%;
  color: #8c8c8c;
  font-family: var(--titulo);
  font-size: 14px;
  padding: 0 12px;
  display: inline-flex;
  white-space: nowrap;
  text-transform: uppercase;
}

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

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);
  background-color: transparent;
}

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;
  overflow: hidden;
  top: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background-color: var(--primario__e);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  min-width: 200px;
}

nav .navbar-nav > li.dropdown .dropdown-menu > li > a {
  padding: 20px 0;
  color: var(--light__e);
  transition: background-color linear 0.3s;
}

nav .navbar-nav > li.dropdown .dropdown-menu > li:nth-child(even) > a {
  background-color: var(--primario_oscuro__e);
}

nav .navbar-nav > li.dropdown .dropdown-menu > li > a:focus,
nav .navbar-nav > li.dropdown .dropdown-menu > li > a:hover {
  background-color: transparent;
}

nav .navbar-nav > li.dropdown .dropdown-menu > li > a:focus::before,
nav .navbar-nav > li.dropdown .dropdown-menu > li > a:hover::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.2);
}

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

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;
}

.superior {
  height: 55px;
  width: calc(100% - 300px);
  margin-left: auto;
  background-image: linear-gradient(
    270deg,
    rgba(7, 38, 79, 0.99) 0%,
    transparent 100%
  );
  z-index: 1;
  font-family: var(--titulo);
}

.barra_ampliada .superior {
  margin-top: 0;
}

.barra_reducida .superior {
  margin-top: -55px;
}

.superior .alineado {
  justify-content: end;
  padding: 0 55px;
  height: 55px;
}

.navbar-collapse {
  width: 100%;
  margin-right: 50px;
  justify-content: end;
}

.superior .alineado li {
  color: var(--light__e);
  font-size: 16px;
  column-gap: 15px;
  font-weight: 300;
  letter-spacing: 1px;
}

.superior .alineado li img {
  width: 23px;
}

.input-group {
  transition: all ease-in-out 0.2s;
  width: 100%;
}

.input-group input {
  border-radius: 50px !important;
}

.input-group:has(.form-control:focus) {
  scale: 1.007;
}

.input-group-addon {
  border-radius: 18px 0 0 18px !important;
}

.input-group .form-control {
  z-index: 0;
  height: 45px;
}

.ocultorobots {
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 0px;
}

.marco-contacto .input-group-addon {
  background-color: var(--primario);
  border-color: var(--primario);
  color: #fff;
}

.form-control {
  padding: 7px 9px;
  transition: all 0.2s ease-in-out;
}

.contacto-interior .marco-contacto {
  padding: 28px 14px 25px 14px;
}

.marco-contacto {
  background-color: var(--transparencia);
  padding: 20px;
  border-radius: 15px;
}
.marco-contacto h3 {
  margin-top: 0px;
}

.form-control::placeholder {
  color: #b9b9b9;
  font-size: 13px;
  transition: all 0.2s ease-in-out;
}

.form-control:focus::placeholder {
  color: transparent !important;
}

.superior .alineado .grupo_redes {
  column-gap: 12px;
}

.superior .alineado li span img {
  width: 20px;
}

.superior-grupo_contactos {
  column-gap: 40px;
}

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

.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;
}

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

.navbar-toggle,
.navbar-toggle:focus,
.navbar-toggle:hover {
  border-radius: 5rem;
  background-color: var(--primario_oscuro__e);
}

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

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

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

.sidebar-wrapper .sidebar-nav li a {
  color: var(--light__e);
  font-size: 14px;
  font-weight: 400;
  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 > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 200px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 1px solid rgb(252, 113, 88);
}

/* .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__e);
  box-shadow: none;
}

.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-wrapper .sidebar-nav .sidebar-redes {
  column-gap: 15px;
}

.sidebar-wrapper .sidebar-nav .sidebar-redes img {
  width: 25px;
  filter: brightness(0) invert(1);
}

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

#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: 9;
  opacity: 1;
}

.button-fixed {
  position: fixed;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.15));
  transition: transform ease-in 0.2s;
}

.button-fixed:hover {
  transform: scale(1.1);
}

.button-fixed img {
  width: 100%;
}

/* banner */
.banner {
  height: 100%;
  z-index: 1;
}

.banner .degradado {
  opacity: 0.9;
  background-image: linear-gradient(
    90deg,
    var(--primario__e) 50%,
    var(--color_boton) 110%
  );
}

.banner .banner-row {
  column-gap: 30px;
}

.banner-interiores {
  height: 300px;
}

.interiores {
  margin-top: 80px;
}

.banner_interior {
  width: 100%;
  top: -130px;
  height: 530px;
  position: relative;
  background-size: cover;
  overflow: hidden;
  background-position: center 12%;
}

.banner .banner-row-item {
  width: 93px;
  aspect-ratio: 1/1;
}

.banner .mouse-container {
  width: 65px;
  height: 65px;
  border-radius: 100%;
  left: calc(50% - 32.5px);
  bottom: 41px;
  z-index: 2;
  cursor: pointer;
}

.banner .mouse-container .mouse {
  width: 100%;
  padding: 10px;
  transition: transform 0.3s;
}

@keyframes bounce {
  0% {
    transform: scale(1) translateY(0);
  }
  20% {
    transform: scale(1.1, 0.9) translateY(0);
  }
  40% {
    transform: scale(0.9, 1.1) translateY(-10px);
  }
  60% {
    transform: scale(1.05, 0.95) translateY(0);
  }
  80% {
    transform: scale(0.95, 1.05) translateY(-5px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

.banner .mouse-container:hover .mouse {
  animation: bounce 0.6s;
}

/* bloqueInformacion */

.bloqueInformacion .img-container {
  width: 100%;
  max-width: 500px;
  margin: auto;
  aspect-ratio: 1 / 1;
}

.bloqueInformacion .img-container-fondo {
  border-radius: 50%;
}

.bloqueInformacion li {
  font-size: 15px;
  margin-bottom: 5px;
  font-weight: 500;
}

.bloqueInformacion .img-container-sm {
  width: 209px;
  height: 209px;
  background-image: linear-gradient(
    135deg,
    var(--light__e) 0%,
    var(--primario__e) 100%
  );
  bottom: 0;
  right: calc(0px - 40px);
  transform: translateY(50%);
  border-radius: 35px;
}

.bloqueInformacion .img-container-sm-fondo {
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 35px;
  background-color: var(--primario__e);
}

.bloqueInformacion .img-container-sm-fondo img {
  opacity: 0.149;
}

.bloqueInformacion .img-container-sm-item {
  padding: 30px;
}

/* servicios */
.servicios .fondo {
  opacity: 0.149;
}

/* .servicios .splide__arrow {
  width: 70px;
  height: 70px;
  padding: 0 20px;
  border-radius: 100%;
  background-color: transparent;
  border: 1px solid var(--primario__e);
  opacity: 1;
} */

.servicios .splide__arrow:hover {
  opacity: 0.8;
}

.servicios .splide__arrow img {
  width: 100%;
}

.servicios .splide__arrow--prev {
  left: calc(-70px - 40px);
}

.servicios .splide__arrow--next img {
  transform: scale(-1);
}

.servicios .splide__arrow--next {
  right: calc(-70px - 40px);
}

/* .servicios .caja_servicio {
  width: 100%;
  height: 100%;
  background-color: var(--light__e);
  padding: 25px 30px;
  aspect-ratio: 10 / 12;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.05));
  border: 1px solid #ececec;
}

.servicios .caja_servicio:hover {
  background-color: var(--primario__e);
} */

.servicios .caja_servicio:hover .img-container img,
.servicios .caja_servicio:hover .img-container .img-background {
  filter: brightness(0) invert(1);
}

.servicios .caja_servicio:hover p.parrafo,
.servicios .caja_servicio:hover .titulo {
  color: var(--light__e);
}

.servicios .img-container {
  width: 146px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.servicios .img-container img {
  padding: 26px;
}

.servicios .img-container .img-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.047;
}

/* parallax */
.parallax {
  background-color: var(--primario__e);
}

.parallax .fondo {
  opacity: 0.15;
}

.parallax .gradient {
  background-image: linear-gradient(
    -90deg,
    rgba(239, 193, 45, 0.7) 0%,

    transparent 100%
  );
}

.parallax .corte-top {
  transform: translateY(-50%);
}

.parallax .corte-bottom {
  transform: translateY(50%);
}

.parallax_caja {
  /* max-width: 600px; */
  width: 100%;
  aspect-ratio: 7 / 3;
  /* border: 1px solid #ececec; */
  border-radius: 15px;
}

.parallax .antetitulo {
  color: #fff;
  font-weight: 400;
}

/* servicios_2 */
.servicios_2 {
  background-image: linear-gradient(90deg, #fafafa 45%, var(--light__e) 45%);
}

.servicios_2 .caja_servicio_2 {
  background-image: linear-gradient(0deg, #07264f 0%, var(--primario__e) 100%);
  border-radius: 15px;
  margin-bottom: 60px;
  height: 382px;
  padding: 50px;
}

.servicios_2 .servicio_2_titulo {
  font-size: 30px;
  line-height: 40px;
}

.servicios_2 .caja_servicio_2 .fondo {
  opacity: 0.349;
}

.servicios_2 .caja_servicio_2:hover .fondo {
  transform: scale(1.15);
}

/* mapa */
.mapa {
  height: 585px;
}

/* Footer */

.interiores .caja h1 {
  font-size: 55px;
  line-height: 60px;
  font-family: var(--titulo);
  font-weight: 700;
  color: var(--primario__e);
  margin-bottom: 25px;
  text-align: center;
  margin-top: 0;
}

.banner a{
  color: var(--color_boton);
}

a {
  color: inherit;
}

a:active {
  color: inherit;
}

a:hover {
  color: inherit;
}

.auditoria-txt {
  color: var(--light__e);
  font-weight: 600;
  font-size: 22px;
}

footer .degradado {
  opacity: 0.8;
  background-image: linear-gradient(
    90deg,
    var(--color_boton) 0%,
    var(--primario__e) 70%
  );
}

.btn-footer {
  background-color: #333;
  color: var(--light__e);
  font-size: 14px;
  padding: 15px 55px;
  border-radius: 25px;
}

.btn-footer:hover {
  background-color: #ebebeb;
  color: #333;
}

.btn-footer img {
  width: 19px;
  margin-right: 5px;
  margin-bottom: 1px;
}

.forma-footer {
  height: auto;
}

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

footer .corte-top-2 {
  opacity: 0.298;
  height: 20px;
}

footer .info__content {
  column-gap: 65px;
  row-gap: 20px;
  margin: 0 auto;
  flex-wrap: wrap;
}

footer .info__content > ul.ul_footer {
  flex-flow: column;
  row-gap: 20px;
}

footer .vl {
  opacity: 0.298;
  width: 1px;
  height: 350px;
  background-color: var(--light__e);
}

footer .ul_footer h2 {
  text-wrap: nowrap;
  font-size: 24px;
  font-weight: 600;
}

.footer-contact {
  column-gap: 60px;
  justify-content: space-between;
  flex-direction: row;
  margin-top: 50px;
}

.footer-contact-item {
  font-size: 22px;
  column-gap: 24px;
}

.footer-contact-item span {
  width: 65px;
  height: 65px;
  background-color: var(--light__e);
  border-radius: 100%;
  outline: 1px solid var(--light__e);
  outline-offset: 6px;
  flex-shrink: 0;
}

.footer-contact-item span img {
  width: 100%;
  padding: 20px;
}

/* footer .ul_footer span img {
  width: 100%;
  padding: 18px;
} */

footer .footer__img {
  width: 240px;
}

.footer-marcas {
  column-gap: 17px;
}

.footer-marcas img {
  width: 93px;
}

.footer-social {
  column-gap: 25px;
}

.footer-social a {
  margin-bottom: 15px;
}

.footer-social img {
  width: 37px;
  padding: 8px;
  background-color: var(--primario__e);
  border-radius: 50px;
  margin-right: 10px;
}

footer .contacto-contenido p {
  font-size: 18px;
  align-content: center;
}

footer .contacto-contenido p:hover {
  font-size: 18px;
  align-content: center;
  color: var(--color_boton);
}

footer .links {
  flex-wrap: wrap;
  gap: 5px;
  font-weight: 300;
  z-index: 1;
}
footer .links a,
footer .links span {
  color: var(--light__e);
}

footer .hl {
  background-color: var(--light__e);
  height: 1px;
  width: 100%;
  opacity: 0.3;
}

footer .container_footer {
  color: #fff;
  padding: 30px 10px;
  column-gap: 15px;
}
footer .links a {
  color: #fff;
  font-size: 15px;
}

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

footer .footer-final {
  background-color: #1a1a1a;
  column-gap: 60px;
  row-gap: 10px;
  flex-flow: wrap;
  padding: 30px 20px;
  z-index: 1;
}

footer .footer-final p {
  margin-bottom: 0;
}

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

footer .footer-copyright {
  font-size: 13px;
  color: var(--light__e);
}

footer .footer-copyright a {
  font-weight: 500;
}

footer .web_laspalmas {
  font-weight: 600;
  color: var(--light__e);
}

footer .web_laspalmas:hover {
  color: #c9ab50;
}

  .bloqueInformacion .row-align-center > div {
    width: 100%;
  }

  .bloqueInformacion .img-container {
    top: -50px;
  }

  #servicios-slider {
    margin: 0 auto;
  }

  .servicios_2 {
    background-image: none;
  }

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

  .parallax .row-align-center > div {
    width: 100%;
  }

  .parallax_caja {
    margin: 0 auto;
  }

  footer .vl {
    height: 1px;
    width: 100%;
    max-width: 320px;
  }

  footer .info__content {
    flex-direction: column;
    row-gap: 30px;
  }

  footer .info__content > ul {
    max-width: 320px;
    width: 100%;
  }

  footer .ul_footer h2 {
    margin: 0;
  }

  footer .info__content > ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  footer .info__content > ul li div {
    justify-content: start;
  }

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

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

  .footer-contact {
    flex-direction: column;
    row-gap: 30px;
    margin-top: 10px;
  }

  footer .links a {
    font-size: 14px;
  }

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

  footer .container_footer {
    flex-wrap: wrap;
  }


/* 1. Hacemos que la fila esté centrada verticalmente */
.row-align-center {
  display: flex;
  align-items: center;
}

/* 2. El contenedor circular */
.img-container {
  position: relative;
}

/* 3. Cada capa en posición absoluta centrada */
.img-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 4. Capa de fondo (círculo grande y tenue) */
.img-container img.z-0 {
  width: 180%;
  z-index: 0;
  left: 20%;
}

/* 5. Marco degradado */
.img-container img.z-1 {
  width: 106%;
  height: auto;
  z-index: 1;
  left: 47%;
}

/* 6. Tu foto de fondo recortada */
.img-container img.img-container-fondo {
  width: 100%; /* ajusta para que cubra todo el círculo */
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

/* --- RESET GUTTER EN FAQ --- */
.faq .row.no-gutter {
  margin-left: 0;
  margin-right: 0;
}
.faq .row.no-gutter > [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

/* --- ESPACIADO CONTROLADO ENTRE COLUMNAS --- */
.faq-item {
  padding: 15px; /* ajusta al espacio que necesites */
}

/* --- PANEL COMO PÍLDORA --- */
.faq .panel {
  border: none;
  border-radius: 5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 0; /* ya controlamos separación en .faq-item */
}
.faq .panel-heading {
  background: transparent;
  border: none;
  padding: 0;
}
.faq .panel-title a {
  display: block;
  position: relative;
  padding: 35px 60px 35px 30px;
  background: #fff;
  color: #333;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.2s;
}
.faq .panel-title a:hover {
  background: #f9f9f9;
}

/* --- CÍRCULO ROJO + FLECHA --- */
.faq .panel-title a .drop {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.faq .panel-title a .drop img {
  width: 5rem;
  height: 5rem;
}
/* rotación al abrir */
.faq .panel-title a:not(.collapsed) .drop {
  transform: translateY(-50%) rotate(180deg);
}

/* --- CUERPO DEL COLLAPSE --- */
.faq .panel-body {
  margin-left: 1rem;
  padding-bottom: 3rem;
  background: #fff;
}

.faq .panel-group{
  margin-bottom: 0;
}

.img-container4 {
  position: relative;
}

.img-container4 img {
  position: absolute;
  top: 55%;
  left: 40%;
  transform: translate(-50%, -50%);
}

.img-container4 img.z-0 {
  width: 165%;
  z-index: 0;
  left: 25%;
}

.img-container4 img.z-1 {
  width: 126%;
  height: auto;
  z-index: 1;
  left: 37%;
}

.img-container4 img.img-container-fondo {
  width: 120%;
  height: 120%;
  object-fit: cover;
  z-index: 2;
}

.img-container3 {
  position: relative;
}

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

.img-container3 img.z-0 {
  width: 165%;
  z-index: 0;
  left: 75%;
}

.img-container3 img.z-1 {
  width: 107%;
  height: auto;
  z-index: 1;
  left: 54%;
}

.img-container3 img.img-container-fondo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

/* 1) Filas flexibles */
.reviews .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* 2) Base de las tarjetas */
.reviews .caja_review {
  margin-bottom: 30px;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem;
  border-radius: 10rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: background-color 0.4s, color 0.4s;

  /* fondo y texto por defecto */
  background-color: #fff;
  color: #333;

  /* eliminar posibles imágenes de fondo */
  background-image: none;
}

/* 3) Estilos comunes */
.reviews .row-stars img {
  width: 16px;
  margin-right: 0.25rem;
  vertical-align: middle;
}

.reviews .caja_review .parrafo {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  font-style: italic;
  text-align-last: left;
}

.reviews .caja_review-title {
  margin: 0;
}

/* 4) Tarjetas impares: fondo primario y texto blanco */
.reviews .row > .col-md-6.col-lg-3:nth-child(odd) .caja_review {
  /* background-color: var(--primario__e) !important; */
  background: linear-gradient(
    135deg,
    var(--primario__e) 0%,
    var(--color_boton) 100%
  );
  color: #fff !important;
}
.reviews .row > .col-md-6.col-lg-3:nth-child(odd) .caja_review-title {
  color: #fff !important;
  font-weight: 600;
  font-size: 25px;
}
.reviews .row > .col-md-6.col-lg-3:nth-child(odd) h4 {
  color: var(--primario_oscuro__e) !important;
  font-size: 25px;
}

.reviews .row > .col-md-6.col-lg-3:nth-child(odd) .parrafo {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* 5) Tarjetas pares: fondo blanco y título en primario */
.reviews .row > .col-md-6.col-lg-3:nth-child(even) .caja_review {
  background-color: #fff !important;
  color: #333 !important;
}
.reviews .row > .col-md-6.col-lg-3:nth-child(even) .caja_review-title {
  color: var(--primario_oscuro__e) !important;
  font-weight: 600;
  font-size: 25px;
}
.reviews .row > .col-md-6.col-lg-3:nth-child(even) h4 {
  color: var(--primario__e) !important;
  font-size: 25px;
}

.review_cabecera {
  margin: 5rem 0 0 2rem;
}
.review_cabecera h4 {
  margin-bottom: 0;
}

.img-container .icono-white {
  position: relative;
  top: 73px;
  z-index: 2;
  transition: opacity 0.3s;
}

.img-container .icon-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 60%;
  transform: translate(-50%, -50%);
  background: url("images/forma_iconos.svg") center/cover no-repeat;
  mask: var(--mask-url) no-repeat center/contain;
  -webkit-mask: var(--mask-url) no-repeat center/contain;
  opacity: 0;
  transition: opacity 0.3s;
}

.caja_servicio:hover .icono-white {
  opacity: 0;
}
.caja_servicio:hover .icon-gradient {
  opacity: 1;
}

.caja_servicio .icono {
  width: 75%;
}

.servicios .caja_servicio {
  position: relative;
  overflow: hidden;
  border-radius: 13rem;
  /* tu ratio, padding, sombra, borde… */
  aspect-ratio: 20/23;
  padding: 25px 30px;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.05));
  border: 1px solid #ececec;

  /* quitamos background-image directo */
  background: none;
}

/* capa base: degradado a blanco + foto */
.servicios .caja_servicio::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 1) 40%,
      rgba(255, 255, 255, 1) 100%
    ),
    url("images/estrategia-marketing-concepto-dispositivos-digitales_53876-23053.jpg");
  background-size: cover;
  background-position: center;
}

/* capa hover: degradado a naranja + foto */
.servicios .caja_servicio::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background-image: linear-gradient(
      to bottom,
      #ff572200 0%,
      #ff5622c1 60%,
      var(--primario__e) 100%
    ),
    url("images/estrategia-marketing-concepto-dispositivos-digitales_53876-23053.jpg");
  background-size: cover;
  background-position: center;

  /* aquí está la transición suave */
  transition: opacity 0.4s ease-in-out;
}

/* al hacer hover, levantamos la capa naranja */
.servicios .caja_servicio:hover::after {
  opacity: 1;
}

/* para que tu contenido (iconos, texto…) quede por encima */
.caja_servicio > * {
  position: relative;
  z-index: 2;
}

.servicios .splide__arrow {
  width: 70px;
  height: 70px;
  padding: 0 20px;
  border-radius: 100%;
  background-color: rgb(249, 249, 249);
  opacity: 1;
}

.bloqueInformacion .panel-title .drop img {
  display: block;
  width: 24px;
  height: auto;
}

.panel-title {
  color: black;
}

.bloqueInformacion .panel-group .panel + .panel {
  margin-top: 30px;
}

.bloqueInformacion .panel-group .panel {
  margin-right: 60px;
  background-color: transparent;
  border: unset;
  border-radius: 0;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  position: relative;
}

.bloqueInformacion .panel-title a {
  font-size: 20px;
  font-weight: 900;
  color: var(--primario_oscuro__e);
}

.bloqueInformacion .panel-title .drop {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.bloqueInformacion .panel-title a:not(.collapsed) .drop {
  transform: rotate(180deg);
}

.bloqueInformacion .panel-default .panel-heading {
  padding-bottom: 25px;
  border-bottom: rgb(196, 196, 196) 1px solid;
  background-color: transparent;
}

.bloqueInformacion .parrafo {
  color: var(--primario_oscuro__e);
}

.img-container2 {
  position: relative;
}

.img-container2 img {
  position: absolute;
  top: 55%;
  left: 51%;
  transform: translate(-50%, -50%);
}

.img-container2 img.z-0 {
  width: 165%;
  z-index: 0;
  left: 65%;
}

.img-container2 img.z-1 {
  width: 126%;
  height: auto;
  z-index: 1;
  left: 54%;
}

.img-container2 img.img-container-fondo {
  width: 120%;
  height: 120%;
  object-fit: cover;
  z-index: 2;
}

.barra_reducida .navbar-contacto {
  top: 145px;
}

.container-portada .cuerpo_zone {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 20rem;
}

.lista-info1 {
  color: var(--primario_oscuro__e);
  font-weight: 900;
}

.lista-info1 br {
  margin-bottom: 10px;
}

.bloqueInformacion2 .titulo {
  color: var(--primario_oscuro__e);
}

.servicios .cabecera h2 {
  font-size: 50px;
  color: var(--primario__e);
  font-weight: 900;
}

.servicios .cabecera h3 {
  font-size: 17px;
  color: var(--primario_oscuro__e);
}

.reviews .titulo {
  font-size: 50px;
  color: var(--primario_oscuro__e);
  font-weight: 900;
}
.reviews .antetitulo {
  font-size: 16px;
  color: var(--primario_oscuro__e);
  font-weight: 100;
}

.bloqueInformacion4 .titulo {
  color: var(--primario_oscuro__e);
}
.bloqueInformacion4 h4 {
  color: var(--primario__e);
}
.bloqueInformacion4 .btn-footer{
  background-color: var(--color_boton);
}

.bloqueInformacion4 .btn-footer:hover{
  background-color: #ffd754;
}

.parallax{
  margin-left: 20rem;
  border-top-left-radius: 50rem;
  border-bottom-left-radius: 50rem;
}

.parallax .container{
  border-top-left-radius: 50rem;
  border-bottom-left-radius: 50rem;
  width: 100%;
}

.parallax_caja img {
  z-index: 2;
  width: 130%;
  transform: scaleX(-1);
  position: absolute;
  left: -10rem;
  top: -10rem;
}

.faq .antetitulo {
  opacity: 65%;
  font-weight: 400;
  color: var(--primario_oscuro__e);
  font-size: 15px;
}

@media (min-width: 1200px) {
  .custom-container {
    max-width: 1410px;
    width: 100%;
    height: 60%;
    align-content: center;
  }
  .container-portada {
    max-width: 1190px;
    width: 100%;
    align-content: center;
  }
}

@media (max-width: 1630px) {
  .servicios .splide__arrow--next {
    right: calc(-70px - 15px);
  }
  .servicios .splide__arrow--prev {
    left: calc(-70px - 15px);
  }
}

@media (max-width: 1300px) {
  .navbar-nav > li > a {
    font-size: 12px;
  }
}

@media (max-width: 1300px) {
  .bloqueInformacion .img-container-sm {
    right: calc(0px - 20px);
  }

  /* footer .info__content {
    column-gap: 60px;
  } */
}

@media (max-width: 1200px) {
  .custom-container {
    padding: 0 45px;
  }

  .custom-button-hidden-md {
    display: flex;
  }
  .custom-button-visible-md {
    display: none;
  }
  .logo-navbar a {
    margin-left: 10px;
    width: 170px;
    height: auto;
  }

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

  .navbar-brand {
    left: 45px;
  }

  .barra_ampliada .navbar-brand {
    width: 200px;
  }

  .bloqueInformacion .img-container-sm {
    width: 160px;
    height: 160px;
  }

  .servicios .splide__arrow {
    top: 115%;
  }

  .servicios .splide__arrow--next {
    right: calc(-70px - 15px);
    right: calc(50% - 80px);
  }
  .servicios .splide__arrow--prev {
    left: calc(50% - 80px);
  }
}

@media (max-width: 992px) {
  .logo-navbar{
    padding-left: 0;
  }

  .navbar-contacto {
    display: none;
  }

  .floating-icons {
    bottom: 1rem;
    right: 1rem;
  }
  .row-align-center {
    display: block;
  }

  .boton-cerrar-reducido {
    display: none !important;
    opacity: 0;
  }

  .aparece {
    display: block !important;
    position: absolute;
    right: 13px;
    bottom: 13px;
    opacity: 1;
  }

  .desaparece {
    display: none;
    opacity: 0;
  }

  .navbar-header img {
    width: 25px;
    height: 100%;
  }

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

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

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

  .superior {
    display: none;
  }

  .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));
  }

  .navbar-brand {
    height: 52px;
    left: 15px;
  }

  .barra_ampliada .navbar-brand,
  .barra_reducida .navbar-brand {
    width: auto;
    top: 0;
  }

  .navbar-brand > img {
    width: 100%;
    height: 75%;
  }

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

  .navbar-toggle {
    display: block;
  }

  .navbar-header {
    float: left;
  }

  .banner {
    height: 100%;
  }

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

  .banner .mouse-container {
    bottom: 25px;
  }

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

  .bloqueInformacion2 .row-align-center {
    display: flex;
    flex-direction: column;
  }

  .bloqueInformacion .panel-group .panel{
    text-align: left;
    margin-right: 0;
  }

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

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

  .img-container4{
    top: 20px !important;
  }

  .img-container4 img.z-1{
    left: 47%;
  }
  .img-container4 img.img-container-fondo{
    left: 50%;
  }
}


@media (max-width: 767px) {
  .custom-container {
    padding: 0 25px;
  }

  .titulo {
    font-size: 25px !important;
    line-height: 30px;
  }

  .interiores .caja h1 {
    font-size: 25px;
    line-height: 30px;
  }

  .subtitulo {
    font-size: 12px;
  }

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

  .titulo-sm {
    font-size: 25px;
    line-height: 25px;
  }

  .parrafo {
    line-height: 26px;
  }

  .servicios .img-container {
    width: 105px;
  }

  .servicios .caja_servicio {
    padding: 25px 20px;
  }

  .toggled .sidebar-wrapper {
    width: 80%;
  }
  .bloqueInformacion .lista-info1 {
    font-size: 12px;
  }

  .caja_servicio .icono {
  width: 89%;
}
.img-container .icono-white {
  top: 53px;
}
}


@media (max-width: 1200px) {
  .parallax_caja {
    width: 100%;
  }
  .parallax_caja img {
    z-index: 2;
    width: 155%;
    transform: scaleX(-1);
    position: absolute;
    top: -5rem;
    left: -22rem;
  }
}

@media (max-width: 992px) {
  .barra_reducida .navbar-contacto {
    top: 100px;
  }
  .barra_ampliada .navbar-contacto {
    top: 100px;
  }
  .bloqueInformacion {
    text-align: center;
  }
  .bloqueInformacion .lista-info1 {
    margin-left: 50%;
    transform: translateX(-50%);
    width: 65%;
    text-align: left;
  }

  .img-container img.img-container-fondo {
    width: 74%;
    height: 74%;
  }
  .img-container img.z-1 {
    width: 80%;
  }
  .img-container img.z-0 {
    width: 100%;
    left: 40%;
  }

  .img-container2 img.z-1 {
    width: 80%;
  }
  .img-container2 img.z-0 {
    width: 100%;
    left: 50%;
  }

  .bloqueInformacion2 {
    margin-top: -30rem;
  }
  .parallax{
    margin-left: 1rem;
  }
  .parallax .container{
    padding-left: 25rem;
  }
  .parallax_caja img {
    width: 110%;
    top: 0;
    left: -10rem;
  }
  .bloqueInformacion .parrafo{
    text-align-last: left !important;
  }

  .img-container3{
    top: 20px !important;
  }
}

.btn-footer:hover img {
filter: invert(1) brightness(0);
}
.btn-footer img {
transition: 0.3s;
}

.splide__slide .titulo{
  color: var(--primario_oscuro__e);
  transition: 0.3s;
}

.splide__slide .parrafo{
  color: var(--primario_oscuro__e);
  transition: 0.3s;
}

.container-portada .cuerpo_zone h3 {
  color: var(--primario_oscuro__e);
  font-weight: 900;
  font-size: 30px;
  margin-top: 0;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .container-portada .cuerpo_zone {
    margin-left: 5px;
    margin-right: 5px;
  }

  .bloqueInformacion .lista-info1 {
    width: 85%;
  }

  .reviews .container .row .col-12{
    width: 50%;
  }

  .reviews .caja_review .parrafo {
    font-size: 15px;
    line-height: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .container-portada .cuerpo_zone {
    padding: 25px 10px 25px 10px;
  }
  .container-portada .cuerpo_zone h3 {
    font-size: 20px;
    margin-left: 15px;
  }
}

@media (max-width: 650px) {
  .reviews .caja_review {
    border-radius: 5rem;
  }

  .review_cabecera{
    margin: 2rem 0 0 2rem;
  }
}

@media (max-width: 600px) {

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

  .banner .banner-row-item {
    width: 80px;
  }

  .bloqueInformacion .img-container-sm {
    width: 120px;
    height: 120px;
    border-radius: 25px;
  }

  .bloqueInformacion .img-container-sm-fondo {
    border-radius: 25px;
  }

  .servicios_2 .caja_servicio_2 {
    padding: 30px;
  }

  .servicios_2 .servicio_2_titulo {
    font-size: 25px;
    line-height: 32px;
  }
  footer .footer__img {
    width: 200px;
  }

  .footer-contact-item {
    font-size: 16px;
  }

  .footer-marcas img {
    width: 80px;
  }

  .custom-button {
    width: 280px;
  }

  .parallax{
    margin-left: 0;
    border-radius: 0 !important;
  }
  .parallax .gradient{
    border-radius: 0 !important;
  }

  .parallax .fondo{
    border-radius: 0 !important;
  }

  .parallax .container{
    border-radius: 0 !important;
    padding: 0;
  }

  .parallax .container .col-md-6{
    margin: 0 15px;
    text-align: center;
  }

  .parallax .container .col-md-6 .titulo{
    margin: 0 15px;
  }

  .parallax .container .col-md-6 .btn{
    padding: 15px 25px;
    font-size: 12px;
  }

  .parallax_caja img {
    left: 0;
  }
  
  .container-portada .cuerpo_zone{
    border-radius: 25px;
    padding: 15px;
  }

  .container-portada .cuerpo_zone h3 {
    font-size: 20px;
    margin-top: 5px;
    text-align: center;
  }

  .container-portada .cuerpo_zone .btn{
    padding: 15px 25px;
  }

  .bloqueInformacion2 .panel-title{
    font-size: 12px;
  }

  .reviews .caja_review{
    border-radius: 4rem;
  }
  .faq .panel-title a .drop{
    right: 2rem;
  }

  .faq .panel-title a .drop img {
    width: 3rem;
    height: 3rem;
  }

}

@media (max-width: 550px) {
  .navbar {
    margin: 37px 37px 0 37px;
  }

  .navbar-contacto {
    width: calc(100% - 140px);
    height: 70px;
    margin-right: 70px;
  }

  .navbar-contacto > .flex {
    display: block;
  }

  .navbar-contacto a{
    font-size: 12px;
    margin-top: 10px;
  }

  .container-portada .row .col-md-6{
    width: calc(100% - 45px);
    padding: 0;
    margin: auto;
  }

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

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

  .faq .panel-title a{
    padding: 20px 60px 20px 15px;
    text-align: left;
    font-size: 15px;
  }

  .sidebar-wrapper .sidebar-nav li a{
    font-size: 11px;
  }

  .lista-info1{
    font-size: 12px;
  }
  .bloqueInformacion .panel-title a {
    font-size: 15px;
  }

  .splide__slide .titulo {
    font-size: 25px !important;
    line-height: 30px;
  }

  .servicios .caja_servicio {
    border-radius: 10rem;
  }

  .caja_review{
    border-radius: 2rem;
  }

  .review_cabecera{
    margin: 0;
  }

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

  .review_cabecera h4 {
    margin-top: 0;
    font-size: 15px !important;
  }

  .reviews .caja_review .parrafo{
    font-size: 12px;
    line-height: 15px;
    padding-left: 0;
    padding-right: 0;
  }
}