@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@100;200;300;400;500;700&family=Open+Sans:wght@100;200;300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Charm:wght@400;700&family=Prata&display=swap');



:root {
    --primario: #1e1e1e;
    --secundario: #292929;
    --transparencia: #1e1e1ed6;
    --color_titulo: #555555;
    --light__e: #fff;
    --familia_fuente: 'Prata', sans-serif;
    --texto: 'Charm', sans-serif;
}

body {
    /* font-family: "Open Sans", sans-serif; */
}

p {
    font-family: var(--texto);
    font-size: 16px;
}

.datos-info>div {
    gap: 10px;
}

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

a:focus {
    outline: transparent;
}

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: 62px;
    line-height: 60px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 15px;
    margin-top: 0;
    font-family: var(--familia_fuente);
    text-align: center;
}

.titulo2 {
    font-size: 57px;
    line-height: 60px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 0;
    margin-top: 0;
    font-family: var(--familia_fuente);
    text-align: center;
}

.titulo3 {
    font-size: 30px;
    line-height: 60px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 0;
    margin-top: 0;
    font-family: var(--familia_fuente);
    text-align: left;
}

strong {
    font-weight: 500 !important;
}

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

.titulo-lg {
    font-size: 65px;
    line-height: 80px;
    font-weight: 300;
}

.antetitulo {
    color: #8a8a8a;
    font-size: 27px;
    font-weight: 400;
    font-family: var(--familia_fuente);
    line-height: 60px;
    text-align: center;
}

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

.text-light {
    color: #fff;
}

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

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

.flex-start {
    align-items: flex-start;
}

.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 {
    display: flex;
    width: 240px;
    height: 55px;
    border-radius: 10px;
    background-color: var(--primario);
    font-size: 15px;
    border: 1px solid transparent;
    color: #fff;
    justify-content: center;
    align-items: center;
    transition: all 0.3s linear;
    gap: 10px;
}

.custom-button:hover,
.custom-button:active,
.custom-button:focus {
    color: #fff;
    background-color: var(--secundario);
}

.custom-button::before {
    background-color: #fff;
    border-radius: inherit;
}

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

.custom-button-lg {
    width: 239px;
    height: 60px;
    font-size: 16px;
}

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

.custom-button2 {
    display: flex;
    width: 240px;
    height: 55px;
    border-radius: 10px;
    background-color: var(--secundario);
    font-size: 15px;
    border: 1px solid transparent;
    color: #fff;
    justify-content: center;
    align-items: center;
    transition: all 0.3s linear;
    gap: 10px;
}

.custom-button2:hover,
.custom-button2:active,
.custom-button2:focus {
    color: #fff;
    background-color: var(--primario);
}

.custom-button2::before {
    background-color: #fff;
    border-radius: inherit;
}

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

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

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

/* Cabecera */
.menu2 {
    height: 100vh;
    width: 0px;
    position: fixed;
    top: 0;
    right: 0;
    opacity: 1;
    z-index: 40;
    flex-direction: column;
    transition: width 0.5s ease;
    overflow-y: auto;
    background: var(--transparencia);
}

#menu-lateral.toggled .menu2 {
    /* width: 350px; */
    width: 40%;
}

.menu2 .logo {
    padding: 100px 100px 90px 100px;
    transition: unset;
}

.menu2 .arrow-toggle,
.menu2 .arrow-toggle img {
    display: none;
    transition: all 0.3s ease;
}

.navbar-fixed-top {
    z-index: 5;
    border-bottom: 1px solid #585858d6;
}

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

.barra_ampliada .navbar-fixed-top .gradient {
    opacity: 0.498;
}

.barra_reducida .navbar-fixed-top .gradient {
    opacity: 1;
}

.barra_fija .navbar-fixed-top {
    background-color: #1e1e1e7d;
    filter: drop-shadow(0px 5px 7.5px rgba(0, 0, 0, 0.1));
}

.barra_fija2 .navbar-fixed-top {
    background-color: var(--primario);
    filter: drop-shadow(0px 5px 7.5px rgba(0, 0, 0, 0.1));
}

.barra_ampliada .forma_logo {
    top: -254px;
    left: -99px;
    z-index: 1;
    height: 455px;
    position: absolute;
    transition: 0.3s all linear;
}

.barra_reducida .forma_logo {
    top: -284px;
    left: -119px;
    z-index: 1;
    height: 440px;
    position: absolute;
}

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

.barra_ampliada .navbar-brand {
    width: 160px;
    top: 25px;
}

.barra_reducida .navbar-brand {
    width: 130px;
    top: 7px;
    left: 34px
}

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

.navbar-nav {
    column-gap: 10px;
    height: 83px;

    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

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

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

.navbar-nav>li>a {
    height: 101%;
    font-size: 16px;
    padding: 0 20px;
    display: inline-flex;
    white-space: nowrap;
    color: #fff;
    font-family: var(--familia_fuente);
}


/***V2.***/
header.v2 .zona_idiomas {
    padding: 30px 33px;
}

header.v2 .btn-lang {
    border-radius: 10px;
    background-color: transparent;
    padding: 5px;
}

header.v2 .btn-lang .caret {
    color: #fff;
    margin-left: 10px;
}

header.v2 .dropdown-idioma {
    background-color: #14141480;
    border: 0px;
    box-shadow: none;
    border-radius: 0px;
    top: calc(100% + 25px);
    backdrop-filter: blur(10px);
}

header.v2.barra_reducida .dropdown-idioma {
    background-color: #14141480;
    border: 0px;
    box-shadow: none;
    border-radius: 0px;
    top: calc(100% + 15px);
    backdrop-filter: blur(10px);
}

header.v2 .dropdown-idioma>li {
    padding: 7px 10px;
}

header.v2 .dropdown-idioma>li>a {
    color: #fff;
}

header.v2 .dropdown-idioma>li>a>img {
    margin-right: 10px;
}

header.v2 .dropdown-idioma>li>a:focus,
header.v2 .dropdown-idioma>li>a:hover {
    border-bottom: 1px solid #fff;
    background-color: rgba(0, 0, 0, 0.214);
}


/***footer V2.***/
.sidebar-wrapper.v2 .zona_idiomas {
    padding: 30px 33px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.sidebar-wrapper.v2 .btn-lang {
    border-radius: 10px;
    background-color: transparent;
    padding: 5px;
    margin: 0 auto;
    width: 100%;
}

.sidebar-wrapper.v2 .btn-lang .caret {
    color: #fff;
    margin-left: 10px;
}

.sidebar-wrapper.v2 .dropdown-idioma {
    border: 0px;
    box-shadow: none;
    border-radius: 0px;
    top: calc(100% + 25px);

}

.sidebar-wrapper.v2 .dropdown-idioma>li {
    padding: 7px 10px;
}

.sidebar-wrapper.v2 .dropdown-idioma>li>a {
    color: #fff;
}

.sidebar-wrapper.v2 .dropdown-idioma>li>a>img {
    margin-right: 10px;
}

.sidebar-wrapper.v2 .dropdown-idioma>li>a:focus,
.sidebar.v2.dropdown-idioma>li>a:hover {
    border-bottom: 1px solid #fff;
    background-color: rgba(0, 0, 0, 0.214);
}



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;
    border-bottom: 1px solid #fff;
}

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);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    min-width: 200px;
}

nav .navbar-nav>li.dropdown .dropdown-menu>li>a {
    /* padding: 20px 0; */
    padding: 20px 15px;
    transition: background-color linear 0.3s;
}

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

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

.nav-buttons {
    right: 90px;
}

.nav-buttons>a {}

.superior {
    height: 44px;
    z-index: 1;
    background: #8888883d;
}

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

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

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

.superior .alineado li {
    font-family: var(--familia_fuente);
    font-size: 14px;
    column-gap: 15px;
}

.superior .alineado li span {
    margin-right: 5px;
}

.superior .alineado li>a {
    color: #fff;
}

.superior .alineado li>a:hover {
    text-shadow: #fff 1px 0 10px;
}


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

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

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

.cabecera_redes {
    width: 25px;
    height: 25px;
    margin: 5px;
}

.cabecera_li {
    margin-left: 40px;
}

.nav-buttons {
    height: 90px;
}

.custom-button-cabecera {
    display: flex;
    width: 240px;
    height: 55px;
    border-radius: 5px;
    background-color: transparent;
    font-size: 15px;
    border: 1px solid transparent;
    color: #fff;
    justify-content: center;
    align-items: center;
    transition: all 0.3s linear;
    gap: 10px;
    border: 1px solid #fff;
    font-family: var(--familia_fuente);
}

.custom-button-cabecera:hover,
.custom-button-cabecera:active,
.custom-button-cabecera:focus {
    color: #fff;
    background-color: var(--secundario);
}

/* sidebar */
.sidebar-wrapper {
    position: fixed;
    /* top: 52px; */
    top: 0;
    width: 100%;
    /* height: calc(100% - 52px); */
    height: 100%;
    padding-top: 1px;
    overflow-y: auto;

    /* IMAGEN + OSCURECIDO */
    background-image:
        linear-gradient(rgba(30, 30, 30, 0.87),
            rgba(30, 30, 30, 0.87)),
        url("/template/estandar/images/hamacas-cocoteros-junto-al-mar_23-2148249118.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    z-index: 4;
}


.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 {
    margin: 0;
    padding: 15px;
    border-radius: 0;
    border: unset;
    height: 52px;
    width: 52px;
    z-index: 10;
}

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

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

.toggled .navbar-toggle {
    background-color: transparent;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
    touch-action: none;
    /* evita scroll táctil */
}

.navbar-toggle .icon-bar,
.toggled .navbar-toggle .icon-bar {
    background-color: #fff;
}

.boton_cerrar {
    position: absolute;
    width: 25px;
    height: 25px;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.toggled .navbar-toggle .icon-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.toggled .navbar-toggle .icon-bar:nth-child(2) {
    transform: translateY(-8px) rotate(-45deg);
}


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

.sidebar-wrapper .sidebar-nav li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    padding: 20px 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
    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 var(--primario_oscuro);
}

.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_claro);
    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: 2;
    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-video {
    max-width: calc(100% - 180px);
    width: 100%;
    height: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.banner .degradado {
    background: #314776;
    background: linear-gradient(180deg, rgba(66, 95, 157, 1) 54%, rgba(0, 0, 0, 1) 100%);
    opacity: 0.6;
}

.banner-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    aspect-ratio: 16/9;
}

.banner {
    width: 100%;
    position: relative;
    /* height: 86vh; */
    height: 1051px;
}

.banner_superior {
    position: relative;
    width: 100%;
    height: 62%;
}

.banner_superior::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--transparencia);
    z-index: 1;
}

.banner_superior::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    z-index: 1;
}

.banner_inferior {
    width: 100%;
    height: 38%;
}

.banner_absolute {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    max-height: 100%;

    width: 100%;
}

#banner-slider {
    max-width: calc(100% - 180px);
    width: 100%;
    height: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.banner a {
    position: absolute;
    display: inline-flex;
    width: 266px;
    height: 57px;
    font-size: 12px;
    font-weight: 400;
    color: var(--primario);
    border-radius: 4px;
    background-color: #fff;
    justify-content: center;
    align-items: center;
    font-family: var(--familia_fuente);
    z-index: 3;
    top: calc(89%);
    transition: 0.3s all linear;
    filter: drop-shadow(0px 4px 6px #24242430);
}

.banner a::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid var(--primario);
    border-radius: 3px;
    pointer-events: none;
    transition: border-color 0.3s ease;
}


.banner a:hover {
    background-color: var(--secundario);
    color: #fff;
}

.banner a:hover::before {
    border-color: var(--light__e);
}

.banner .custom-container.titulo_banner {
    position: absolute;
    width: 100%;
    top: -440px;
    bottom: 0;
    padding: 0 100px;
    transform: unset;
}

.banner .custom-container.titulo_banner .titulo {
    font-size: 55px;
    line-height: 60px;
    font-weight: 300;
    color: var(--light__e);
    margin-bottom: 15px;
    margin-top: 0;
    font-family: var(--familia_fuente);
    text-align: center;
}

.cont_boton {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* bloqueTexto */
.bloqueTexto h1 {
    color: #323232;
    text-align: left !important;
}

.bloqueTexto .antetitulo2 {
    color: #8a8a8a;
    font-size: 27px;
    font-weight: 400;
    font-family: var(--familia_fuente);
    line-height: 60px;
}

.bloqueTexto .parrafo {
    color: #595959 !important;
    line-height: 28px;
    font-size: 15px;
}

.columnaB {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rombo_informacion {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 355px;
    height: 355px;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 1;
}

.columnaB img {
    position: relative;
    z-index: 2;
    width: 445px;
    height: 445px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* servicios */
.servicios .splide {
    position: relative;
    height: 765px;
}

.servicios .splide__arrow {
    width: 95px;
    height: 95px;
    border-radius: 5px;
    background-color: var(--primario);
    opacity: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
}

.servicios .splide__arrow::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgb(151 151 151 / 67%);
    border-radius: 4px;
    pointer-events: none;
    opacity: 1;
    transition: none;
}

.servicios .splide__arrow svg {
    display: none;
    /* oculta el SVG que Splide pone por defecto */
}

.servicios .splide__arrow--prev {
    left: 4%;
    background-image: url('/template/estandar/images/atras_2.svg');
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: center;
}

.servicios .splide__arrow--next {
    right: 4%;
    background-image: url('/template/estandar/images/proximo_2.svg');
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: center;
}


.servicios .splide__pagination {
    position: relative !important;
    top: 70px;
}

.servicios .splide__slide {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    overflow: hidden;
}

.servicios .splide__pagination__page.is-active {
    background-color: var(--primario);
}

.servicios .splide__slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    z-index: 1;
    /* filter: brightness(0.9); */
    background: linear-gradient(0deg, rgb(0 0 0 / 30%) 0%, rgba(0, 0, 0, 0) 100%);
}

.caja_wrapper {
    position: absolute;
    z-index: 2;
    width: 97%;
    height: 94.4%;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #fff;
}

.servicios .splide__track {
    height: 100%;
}

.splide.is-active .splide__list {
    height: 100%;
}

.servicios .splide--draggable>.splide__track>.splide__list>.splide__slide {
    border-radius: 5px;
}

.servicios .splide__slide .caja_servicio {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
    overflow: hidden;
    padding: 25px 30px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    /* aspect-ratio: 11/7; */
    font-family: var(--familia_fuente);
    transition: transform 0.5s ease;
}

/* .splide__slide {
    width: 900px !important;
} */

.servicios .splide__slide .caja_servicio::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 5px;
    background-image: inherit;
    background-size: inherit;
    background-position: inherit;
    background-repeat: inherit;
    transition: transform 0.5s ease;
    z-index: 1;
    /* filter: brightness(0.9); */
}

.caja_servicio .overlay {
    inset: 0;
    border-radius: 5px;
    background: linear-gradient(0deg, rgb(0 0 0 / 30%) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.servicios .splide__slide:hover .caja_servicio::before {
    transform: scale(1.1);
}

.servicios .splide__slide .caja_servicio>* {
    position: absolute;
    z-index: 2;
}

.servicios h3 {
    color: #fff;
    font-family: var(--familia_fuente);
    font-weight: 500;
    font-size: 33px;
    position: fixed;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
}

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

.servicios .degradado-right {
    background: linear-gradient(-90deg, rgb(255 255 255 / 99%) 0%, rgba(255, 255, 255, 0) 100%);
    right: 0;
    z-index: 1;
    pointer-events: none;
}

.servicios .degradado-left {
    background: linear-gradient(90deg, rgb(255 255 255 / 99%) 0%, rgba(255, 255, 255, 0) 100%);
    left: 0;
    z-index: 1;
    pointer-events: none;
}

/* BLOQUE SERVICIOS */

.tituloPrincipalAb h2.titulo {
    font-size: 60px;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    font-family: var(--familia_fuente);
    margin-bottom: 0px;
    margin-top: 0px;
    color: var(--color_titulos);
}

.serviciosAg .img path {
    fill: var(--iconos);
}

.serviciosAg .row.centered {
    display: flex;
    align-items: center;
    justify-content: center;
}

.serviciosAg .card {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 0.5px;
}

.serviciosAg .img-flecha {
    position: absolute;
    width: 122px;
    height: 122px;
    border-radius: 5px;
    background-color: var(--transparencia);
    padding: 10px;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 1;
}

.serviciosAg .img-flecha::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid #ffffff59;
    border-radius: 3px;
    pointer-events: none;
}

.serviciosAg .img-flecha svg {
    transform: rotate(-45deg);
    width: 60px;
    height: 60px;
    display: block;
}

.serviciosAg .img-flecha svg path {
    fill: #fff;
}

.serviciosAg .card .div-img {
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.serviciosAg .card:hover .img {
    transform: scale(1.05);
}

.serviciosAg .card .img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 98%;
    height: auto;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    z-index: 0;
    position: relative;
}

.serviciosAg .titulo {
    font-size: 23px;
    font-weight: 500;
    font-family: var(--familia_fuente);
    margin-bottom: 24px;
    height: 50px;
    overflow: hidden;
    text-align: center;
    padding-top: 10px;
}

.serviciosAg .card:hover .titulo {
    color: var(--primario);
}

.serviciosAg {
    padding: 20px 0;
    position: relative;
}

.serviciosAg .boton-primario {
    width: 266px;
    height: 57px;
    font-size: 14px;
    color: #FFF;
    font-weight: 400;
    border-radius: 3px;
    background-color: var(--primario);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-family: var(--familia_fuente);
}

.serviciosAg .boton-primario::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid #515151;
    border-radius: 3px;
    pointer-events: none;
}

.serviciosAg .boton-primario:focus,
.serviciosAg .boton-primario:active,
.serviciosAg .boton-primario:hover {
    background-color: #3c3c3c;
}

.serviciosAg .boton-primario {
    display: flex;
    margin: 0 auto;
}

/* PARALLAX */
.parallax {
    position: relative;
    height: 751px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: blur(10px);
    background-attachment: fixed;
}

.parallax-content {
    position: relative;
    z-index: 2;
    /* width: 1625px; */
    width: 92%;
    height: 605px;
    padding: 80px 60px;
    text-align: center;

    background-size: cover;
    background-position: center;

    border-radius: 5px;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.20);
    z-index: -1;
}

.parallax-content::after {
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    pointer-events: none;
    z-index: 1;
}


.parallax-content h2 {
    color: #fff;
    margin-bottom: 30px;
    font-weight: 300;
}

.custom-button-parallax {
    display: inline-flex;
    padding: 15px 35px;
    background-color: var(--primario);
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s all linear;
}

.parallax-content a {
    width: 266px;
    height: 57px;
    font-size: 12px;
    color: var(--primario);
    font-weight: 400;
    border-radius: 4px;
    background-color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-family: var(--familia_fuente);
}

.parallax-content a::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid var(--primario);
    border-radius: 3px;
    pointer-events: none;
    transition: border-color 0.3s ease;
}

.parallax-content a:hover::before,
.parallax-content a:focus::before,
.parallax-content a:active::before {
    border-color: #fff;
}

.parallax-content a:focus,
.parallax-content a:active,
.parallax-content a:hover {
    background-color: var(--secundario);
    color: #fff
}

.parallax-content a {
    display: flex;
    margin: 0 auto;
}

/* bloqueTexto */
.bloqueTexto2 h2 {
    text-align: left !important;
}

.bloqueTexto2 .antetitulo {
    text-align: left !important;
}

.columnaB2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rombo_informacion2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 465px;
    height: 445px;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 1;
}

.columnaB2 .img-wrapper {
    position: relative;
    width: 428px;
    height: 408px;
    z-index: 2;
}

.columnaB2 .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    display: block;
    z-index: 2;
    position: relative;
}

.columnaB2 .img-wrapper::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid #fff;
    border-radius: 5px;
    pointer-events: none;
    z-index: 3;
}

/* Footer */
footer {
    position: relative;
    background-color: var(--secundario);
    overflow: visible;
}

footer::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    height: 4.7px;
    background-color: #fff;
    z-index: 1;
}


footer .custom-container {
    z-index: 1;
}

/* .footer-info {
    gap: 95px 50px;
} */

.footer__img {
    width: 210px;
    flex-shrink: 0;
}

.footer__img-content {
    width: 100%;
}

.footer-contactos {
    column-gap: 85px;
}

.footer-contactos li {
    column-gap: 25px;
    max-width: 330px;
}

.footer-info-titulo {
    font-size: 22px;
    font-weight: 500;
    color: #80aee1
}

.footer-contactos span {
    border-radius: 10px;
    width: 45px;
    height: 45px;
    padding: 12px;
    margin-right: 25px;
    border: 1px solid var(--primario);
}

.footer-contactos li:nth-of-type(1) .segundo_div {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

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

footer .footer-links {
    flex-wrap: wrap;
    gap: 7px 150px;
    font-size: 16px;
    padding: 35px;
    background-color: var(--secundario);
    color: #c8c8c8;
    font-family: var(--familia_fuente);
    font-weight: 300;
    border-top: 1px solid #5f5f5f;
}

footer .footer-links a {
    color: #c8c8c8;
}

footer .footer-links a:hover {
    text-shadow: #fff 1px 0 10px;
}

footer .footer-copyright {
    font-size: 12px;
    gap: 25px 45px;
    flex-flow: wrap;
    padding: 25px;
    background-color: var(--primario);
    color: #fff;
    font-family: var(--familia_fuente);
}

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

footer .web_laspalmas {
    font-weight: 600;
    color: #f3f3f3;
}

footer .web_laspalmas:hover {
    text-shadow: #fff 1px 0 10px;
}


footer .titulo_pie {
    background-color: #f5f5f5;
    text-align: center;
    padding: 40px;
}

footer .titulo_pie>h2 {
    font-size: 52px;
    font-family: var(--familia_fuente);
}

footer .telefono_pie {
    font-family: var(--familia_fuente);
    font-size: 20px;
}

footer .telefono_pie:hover {
    color: #fff;
    text-shadow: #fff 1px 0 10px;
}

footer .icono_pie {
    width: 70px;
    height: 70px;
    margin-right: 12px;
}

/* ***************** */
/* VIVIENDAS DETALLE */
/* ***************** */
.servicios2 {
    margin-bottom: 200px;
    margin-top: 80px;
}

.servicios-interior {
    margin-bottom: 0;
    margin-top: 0;
}

.servicios2 .text-container {
    background-position: center;
    margin-bottom: 75px;
    padding-top: 40px;
}

.servicios-interior .text-container {
    margin-bottom: 30px;
}

.servicios2 .titulo {
    margin-bottom: 5px;
}

.servicios2 .titulo span {
    color: var(--secundario);
}

.servicios2 .splide__slide>img {
    border-radius: 10px;
    background-color: #fbf9f9;
    object-fit: contain;
    padding: 30px;
    width: 100%;
}

.servicios2 .splide__slide .servicio {
    font-size: 18px;
    color: var(--transparencia);
    font-weight: 500;
    font-style: italic;
    font-family: var(--titulo);
    margin-top: 10px;
}

.servicios2 .splide__arrow {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #f3f4f6;
    padding: 10px;
    opacity: 1;
    top: 35%;
}

.servicios2 .splide__arrow:hover {
    opacity: 1;
}

.servicios2 .splide__arrow--prev>img {
    transform: scale(-1);
}

.servicios2 .splide__arrow--prev {
    left: -150px;
}

.servicios2 .splide__arrow--next {
    right: -150px;
}

.servicios-interior {
    margin-left: -15px;
}

.instalaciones {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: unset;
}

.descripcion {
    text-align: justify;
}

.container_medio b {
    color: var(--primario);
}

.caracteristica img {
    height: 50px;
}

.caracteristica p {
    margin: 0;
    color: #232323;
    font-size: 16px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    text-align: left;
}

.caracteristicas {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    background-color: var(--transparencia);
    flex-wrap: wrap;
    padding: 14px 0px;
}

.caracteristica {
    padding: 10px;
}

.datos-info h4 {
    font-weight: 800;
    color: #1c202b;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.datos-info h4:first-child {
    margin-top: 0;
}

.datos-info li img,
.datos-info li svg {
    height: 20px;
    width: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.datos-info:not(.sin-color) li svg * {
    fill: #fff !important;
}

.datos-info li {
    list-style-type: none;
    /* padding: 15px 0px; */
    padding: 13px 0px;
    font-size: 15px;
}

.datos-info ul {
    padding: 0px;
}

.datos-info .caja_redes img {
    height: 30px;
}

.datos-info p {
    font-size: 19px;
}

.primero.datos-info.info-abajo {
    width: 25%;
    height: 170px;
    align-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 10px;
}

.primero.datos-info.info-abajo {
    background-color: #3c3c3c !important;
    width: 25%;
    height: 170px;
    align-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 10px;
}

.datos-info .caja_redes {
    display: inline-flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 10px 0px;
}

.datos-info.info-abajo {
    height: 100%;
    /* max-height: 100%; */
    /* min-height: 300px; */
}

.zona-reserva video {
    min-height: 100%;
}

.boton_reservar {
    width: 100%;
}

.boton_reservar .btn {
    padding: 0;
    height: 80px;
    width: 100%;
    color: #FFFFFF;
    font-size: 25px;
    font-weight: 200;
    border-radius: 10px;
    background-color: var(--primario);
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
}

.boton_reservar .btn.disabled {
    background-color: var(--primario) !important;
    color: #FFF !important;
}

/*CALENDARIO*/

.responsive-calendar .day.reservado a,
.responsive-calendar .day.reservado a:hover {
    background-color: #ce1d15;
    color: #FFF;
}

.responsive-calendar .day.seleccionado a,
.responsive-calendar .day.seleccionado a:hover {
    background-color: #b1dbb1;
}

.responsive-calendar .day a:hover {
    background-color: #b1dbb1;
}

#datos-info-reserva-entrar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#datos-info-reserva-entrar h4 {
    font-size: 25px;
    text-align: center;
}

.zona-reserva-primero.muy-primero {
    height: 575px;
}

.zona-reserva-primero {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    margin-top: 50px;

    margin-bottom: 50px;
    /* height: 80px; */
}

.boton-reservar-dis .btn-contacto img,
.boton-reservar-dis .btn-contacto svg {
    height: 30px;
    margin-right: 10px;
}


.responsive-calendar .controls {
    text-align: center;
}

.responsive-calendar .controls a {
    cursor: pointer;
}

.responsive-calendar .controls h4 {
    display: inline;
}

.responsive-calendar .day-headers,
.responsive-calendar .days {
    font-size: 0;
}

.responsive-calendar .day {
    display: inline-block;
    position: relative;
    font-size: 24px;
    color: #666;
    width: 14.285714285714286%;
    text-align: center;
}

.zona-reserva-primero.zona-reserva-calendario {
    height: auto !important;
    display: block !important;
}

.responsive-calendar .day a {
    background-color: rgba(0, 0, 0, 0.05);
    border-right: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    color: #666;
    display: block;
    cursor: pointer;
    padding: 20% 0 20% 0;
    background-color: #f5f5f5;
}

.responsive-calendar .day a:hover {
    background-color: #eee;
    text-decoration: none;
}

.responsive-calendar .day.header {
    border-bottom: 1px gray solid;
    background-color: #e4e4e4;
}

.responsive-calendar .day.active a {
    background-color: #536fac;
    color: #ffffff;
}

.responsive-calendar .day.active a:hover {
    background-color: #536fac;
}

.responsive-calendar .day.active .not-current {
    background-color: #8fcaef;
    color: #ffffff;
}

.responsive-calendar .day.active .not-current:hover {
    background-color: #bcdff5;
}

.responsive-calendar .day.not-current a {
    color: #ddd;
}

.responsive-calendar .day .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    z-index: 1;
    background-color: #ffde00;
}

.btn-primary {
    color: #fff;
    background-color: var(--primario);
    border-color: var(--primario);
    width: 100px;
}

.btn-primary:hover {
    color: var(--primario);
    background-color: #fff;
    border-color: var(--primario);
}

.responsive-calendar .day.not-current a {
    display: none;
}

.responsive-calendar .day.past {
    pointer-events: none;
    opacity: 0.2;
}


.boton_alargado img,
.boton_reservar img,
.boton_alargado svg,
.boton_reservar svg {
    height: 30px;
    margin-right: 10px;
}

.btn.btn-default.btn-contacto svg {
    height: 30px;
    margin-right: 10px;
    fill: #fff;
}

.boton_alargado svg *,
.boton_reservar svg * {
    fill: #FFFFFF;
}

.boton_reservar svg * {
    fill: #fff;
}

.datos-info {
    padding: 35px;
    background-color: var(--transparencia);
    width: 100%;
    height: 100%;
    max-height: calc(100% - 90px);
}


.datos-info>div>ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin-bottom: 0px;
}

.zona-mapa-apart {
    height: 300px;
}

.zona-mapa-apart iframe {
    height: 100%;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.zona-mapa-mitad iframe {
    position: absolute;
    right: -35px;
    top: -35px;
    height: 500px;
    width: 100%;
}

/* Instalaciones */

.etiqueta {
    font-family: var(--titulo);
    color: #FFF;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 6px 14px;
    z-index: 1;
    top: 10px;
    right: 10px;
}

div.etiqueta-personas {
    background-color: var(--primario);
    width: 50px;
    height: 30px;
    border-radius: 10px;
    z-index: 1;
    bottom: 10px;
    left: 10px;
    color: #FFF;
    padding: 2px 9px;
    justify-content: space-evenly;
}


.img-container-global {
    display: block;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    width: 100%;
    /* aspect-ratio: 1/1; */
}

.img-container-global img {
    object-fit: cover;
}

.img-container-global:hover img {
    transform: scale(1.05);
}

.etiqueta span {
    font-weight: 600;
}

.titulo_villa {
    font-size: 20px;
}

.marco {
    width: calc(100% - 10px);
    /* width: calc(100% - 4px); */
    height: calc(100% - 10px);
    /* height: calc(100% - 4px); */
    border: 1px solid #FFF;
    border-radius: 12px;
}

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

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

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

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


.instalaciones {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.instalaciones>div {
    background-color: #78787817;
    border-radius: 5px;
    margin-right: 5px;
    margin-top: 5px;
    padding: 10px 10px;
    color: #131313;
    font-weight: 400;
    font-size: 14px;
}

.titulo-descripcion {
    color: var(--primario);
    font-size: 18px;
}

.caracteristicas {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    background-color: var(--primario);
    flex-wrap: wrap;
    padding: 14px 0px;
    color: var(--light__e);
}

.caracteristica {
    padding: 10px;
}

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

.caracteristica img {
    height: 50px;
    filter: brightness(10);
}

.div-caracteristicas {
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.div-caracteristicas>div {
    box-sizing: border-box;
    min-width: 0;
}

.boton_reservar .btn {
    padding: 0;
    height: 80px;
    width: 100%;
    color: #FFFFFF;
    font-size: 25px;
    font-weight: 200;
    border: 0;
    border-radius: 10px;
    background-color: var(--primario);
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
}

.boton_reservar .btn:hover {
    background-color: #00ca2f;
}

.boton_alargado img,
.boton_reservar img {
    height: 30px;
    margin-right: 10px;
    filter: brightness(10);
}

.datos-info {
    padding: 35px;
    background-color: var(--primario);
    color: var(--light__e);
    /* width: 100%; */
    width: 33.3333333333%
}

.datos-info h4:first-child {
    margin-top: 0;
}

.datos-info h4 {
    font-weight: 800;
    color: var(--color_titulo);
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 0px;
}

.proyecto-foto>video {
    border-radius: 10px;
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    height: 100%;
    object-fit: cover;
}

.proyecto-foto {
    /* height: 607px; */
    /* height: 45vw; */
    aspect-ratio: 16/9;
}

.galeria .padre_imagen .imagen {
    height: 100%;
    width: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.galeria .padre_imagen {
    height: 340px;
    width: 100%;
    overflow: hidden;
}

.interiores .padre_imagen .imagen {
    content: '';
    padding-top: 100%;
    display: block;
    border-radius: 5px;
}

.galeria .padre_imagen .imagen {
    height: 100%;
    width: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.datos-info ul {
    padding: 0px;
}

.datos-info li {
    list-style-type: none;
    padding: 15px 0px;
    font-family: 'Poppins', sans-serif !important;
    font-size: 18px;
}

.datos-info li img {
    height: 30px;
    margin-right: 10px;
}

.datos-info ul a {
    transition: all 0.3s ease;
}

.datos-info ul a:hover {
    text-shadow: 0 0 1px;
}

/************/
/*galeria*/
/************/

.galeria {
    max-height: 880px;
}

.galeria .grid {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 350px 350px;
    gap: 10px;
    margin: 0 30px;
    /* max-width: calc(100% - 180px); */
    max-width: calc(100% - 20px);
    margin: 0 auto;
}

.galeria .grid>div:nth-child(1) {
    grid-row: 1/3;
    grid-column: 1/3;
}

.galeria .grid>div:nth-child(2) {
    grid-row: 1/2;
    grid-column: 3/4;
}

.galeria .grid>div:nth-child(3) {
    grid-row: 1/2;
    grid-column: 4/5;
}

.galeria .grid>div:nth-child(4) {
    grid-row: 2/3;
    grid-column: 3/4;
}

.galeria .grid>div:nth-child(5) {
    grid-row: 2/3;
    grid-column: 4/5;
}

.galeria .grid>div {
    overflow: hidden;
    border-radius: 5px;
}

.galeria .grid>div>img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
}

.galeria .grid>div:hover>img {
    transform: rotate(4deg) scale(1.1);
}

.galeria h3 {
    font-size: 45px;
    letter-spacing: 14px;
    color: var(--secundario);
    font-weight: 250;
    font-style: italic;
    font-family: "Barlow";
    margin: 40px 20px 30px;
}

.galeria .grid img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.proyecto-foto .imagen:after {
    content: '';
    padding-top: 60%;
    display: block
}

.proyecto-foto .padre_imagen .imagen {
    border-radius: 30px;
    width: 100%;
    background-position: center center;
    background-size: cover;
}

/* SERVICIOS VILLA */
.caja_servicios {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: repeat(4, 45px);
    width: 100%;
}

.caja_servicios svg {
    width: 25px;
    height: 25px;
}

.caja_servicios .interior_servicio_villa {
    display: flex;
    justify-content: flex-start;
    /* align-items: center; */
    gap: 10px
}

/* PRIMERA COLUMNA */
.caja_servicios>div:nth-child(1) {
    grid-row: 1/2;
    grid-column: 1/2;
}

.caja_servicios>div:nth-child(2) {
    grid-row: 2/3;
    grid-column: 1/2;
}

.caja_servicios>div:nth-child(3) {
    grid-row: 3/4;
    grid-column: 1/2;
}

.caja_servicios>div:nth-child(4) {
    grid-row: 4/5;
    grid-column: 1/2;
}

/* SEGUNDA COLUMNA */
.caja_servicios>div:nth-child(5) {
    grid-row: 1/2;
    grid-column: 2/3;
}

.caja_servicios>div:nth-child(6) {
    grid-row: 2/3;
    grid-column: 2/3;
}

.caja_servicios>div:nth-child(7) {
    grid-row: 3/4;
    grid-column: 2/3;
}

.caja_servicios>div:nth-child(8) {
    grid-row: 4/5;
    grid-column: 2/3;
}

/* TERCERA COLUMNA */
.caja_servicios>div:nth-child(9) {
    grid-row: 1/2;
    grid-column: 3/4;
}

.caja_servicios>div:nth-child(10) {
    grid-row: 2/3;
    grid-column: 3/4;
}

.caja_servicios>div:nth-child(11) {
    grid-row: 3/4;
    grid-column: 3/4;
}

.caja_servicios>div:nth-child(12) {
    grid-row: 4/5;
    grid-column: 3/4;
}

/* CUARTA COLUMNA */
.caja_servicios>div:nth-child(13) {
    grid-row: 1/2;
    grid-column: 4/5;
}

.caja_servicios>div:nth-child(14) {
    grid-row: 2/3;
    grid-column: 4/5;
}

.caja_servicios>div:nth-child(15) {
    grid-row: 3/4;
    grid-column: 4/5;
}

.caja_servicios>div:nth-child(16) {
    grid-row: 4/5;
    grid-column: 4/5;
}

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

/* EXTRAS */
.ug-thumb-wrapper {
    border-radius: 5px;
}

/*********************************
*        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%;
}

/* menu doble */

.el-menu {
    height: 140px;
    transition: all .2s ease-in-out;
}

.barra_reducida .el-menu {
    height: 110px;
}

.el-menu {
    position: relative;
}

.primera-menu,
.segunda-menu {
    display: flex;
    position: absolute;
    width: calc(50vw - (90px + 35px));
    height: 100%;
}

.primera-menu {
    right: 155px;
    justify-content: flex-end;
}

.segunda-menu {
    left: 155px;
}

.navbar-nav .logo {
    position: absolute;
}

.navbar-nav .logo {
    position: absolute;
    left: -160px;
    height: 100%;
}

.navbar-nav .logo>a {
    padding: 0;
    height: inherit;
}

.navbar-nav .logo img {
    height: 100%;
    object-fit: contain;
    object-position: center;
    width: 180px;
    z-index: 2;
}

/* -- 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: -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%);
}

/* ESTILOS CKEDITOR */

/*
 * Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
 */

.textaco {
    & .image {
        display: table;
        clear: both;
        text-align: center;

        /* Make sure there is some space between the content and the image. Center image by default. */
        /* The first value should be equal to --ck-spacing-large variable if used in the editor context
	 	to avoid the content jumping (See https://github.com/ckeditor/ckeditor5/issues/9825). */
        margin: 0.9em auto;

        /* Make sure the caption will be displayed properly (See: https://github.com/ckeditor/ckeditor5/issues/1870). */
        min-width: 50px;

        & img {
            /* Prevent unnecessary margins caused by line-height (see #44). */
            display: block;

            /* Center the image if its width is smaller than the content's width. */
            margin: 0 auto;

            /* Make sure the image never exceeds the size of the parent container (ckeditor/ckeditor5-ui#67). */
            max-width: 100%;

            /* Make sure the image is never smaller than the parent container (See: https://github.com/ckeditor/ckeditor5/issues/9300). */
            min-width: 100%;

            /* Keep proportions of the block image if the height is set and the image is wider than the editor width.
			See https://github.com/ckeditor/ckeditor5/issues/14542. */
            height: auto;
        }
    }

    & .image-inline {
        /*
		 * Normally, the .image-inline would have "display: inline-block" and "img { width: 100% }" (to follow the wrapper while resizing).
		 * Unfortunately, together with "srcset", it gets automatically stretched up to the width of the editing root.
		 * This strange behavior does not happen with inline-flex.
		 */
        display: inline-flex;

        /* While being resized, don't allow the image to exceed the width of the editing root. */
        max-width: 100%;

        /* This is required by Safari to resize images in a sensible way. Without this, the browser breaks the ratio. */
        align-items: flex-start;

        /* When the picture is present it must act as a flex container to let the img resize properly */
        & picture {
            display: flex;
        }

        /* When the picture is present, it must act like a resizable img. */
        & picture,
        & img {
            /* This is necessary for the img to span the entire .image-inline wrapper and to resize properly. */
            flex-grow: 1;
            flex-shrink: 1;

            /* Prevents overflowing the editing root boundaries when an inline image is very wide. */
            max-width: 100%;
        }
    }
}

.ck.ck-editor__editable {

    /*
	 * Inhertit the content styles padding of the <figcaption> in case the integration overrides `text-align: center`
	 * of `.image` (e.g. to the left/right). This ensures the placeholder stays at the padding just like the native
	 * caret does, and not at the edge of <figcaption>.
	 */
    & .image>figcaption.ck-placeholder::before {
        padding-left: inherit;
        padding-right: inherit;

        /*
		 * Make sure the image caption placeholder doesn't overflow the placeholder area.
		 * See https://github.com/ckeditor/ckeditor5/issues/9162.
		 */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /*
	 * See https://github.com/ckeditor/ckeditor5/issues/15115.
	 */
    & .image {
        z-index: 1;

        /*
		 * Make sure the selected image always stays on top of its siblings.
		 * See https://github.com/ckeditor/ckeditor5/issues/9108.
		 */
        &.ck-widget_selected {
            z-index: 2;
        }
    }

    /*
	 * See https://github.com/ckeditor/ckeditor5/issues/15115.
	 */
    & .image-inline {
        z-index: 1;

        /*
		 * Make sure the selected inline image always stays on top of its siblings.
		 * See https://github.com/ckeditor/ckeditor5/issues/9108.
		 */
        &.ck-widget_selected {
            z-index: 2;

            /*
			 * Make sure the native browser selection style is not displayed.
			 * Inline image widgets have their own styles for the selected state and
			 * leaving this up to the browser is asking for a visual collision.
			 */
            & ::selection {
                display: none;
            }
        }
    }

    /* Keep proportions of the inline image if the height is set and the image is wider than the editor width.
	See https://github.com/ckeditor/ckeditor5/issues/14542. */
    & .image-inline img {
        height: auto;
    }

    /* The inline image nested in the table should have its original size if not resized.
	See https://github.com/ckeditor/ckeditor5/issues/9117. */
    & td,
    & th {
        & .image-inline img {
            max-width: none;
        }
    }
}

@import "@ckeditor/ckeditor5-ui/theme/mixins/_mediacolors.css";

:root {
    --ck-color-image-caption-background: hsl(0, 0%, 97%);
    --ck-color-image-caption-text: hsl(0, 0%, 20%);
    --ck-color-image-caption-highlighted-background: hsl(52deg 100% 50%);
}

/* Content styles */
.textaco .image>figcaption {
    display: table-caption;
    caption-side: bottom;
    word-break: break-word;
    color: var(--ck-color-image-caption-text);
    background-color: var(--ck-color-image-caption-background);
    padding: .6em;
    font-size: .75em;
    outline-offset: -1px;

    /* Improve placeholder rendering in high-constrast mode (https://github.com/ckeditor/ckeditor5/issues/14907). */
    @media (forced-colors: active) {
        background-color: unset;
        color: unset;
    }
}

/* Editing styles */
.ck.ck-editor__editable .image>figcaption.image__caption_highlighted {
    @mixin ck-media-default-colors {
        animation: ck-image-caption-highlight .6s ease-out;
    }

    @media (prefers-reduced-motion: reduce) {
        animation: none;
    }
}

@keyframes ck-image-caption-highlight {
    0% {
        background-color: var(--ck-color-image-caption-highlighted-background);
    }

    100% {
        background-color: var(--ck-color-image-caption-background);
    }
}

.ck.ck-image-insert-url {
    width: 400px;
    padding: var(--ck-spacing-large) var(--ck-spacing-large) 0;

    & .ck-image-insert-url__action-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

.ck.ck-editor__editable {
    & img.image_placeholder {
        background-size: 100% 100%;
    }
}

/* Preserve aspect ratio of the resized image after introducing image height attribute. */
.textaco img.image_resized {
    height: auto;
}

.textaco .image.image_resized {
    max-width: 100%;
    /*
	The `<figure>` element for resized images must not use `display:table` as browsers do not support `max-width` for it well.
	See https://stackoverflow.com/questions/4019604/chrome-safari-ignoring-max-width-in-table/14420691#14420691 for more.
	Fortunately, since we control the width, there is no risk that the image will look bad.
	*/
    display: block;
    box-sizing: border-box;

    & img {
        /* For resized images it is the `<figure>` element that determines the image width. */
        width: 100%;
    }

    &>figcaption {
        /* The `<figure>` element uses `display:block`, so `<figcaption>` also has to. */
        display: block;
    }
}

.ck.ck-editor__editable {

    /* The resized inline image nested in the table should respect its parent size.
	See https://github.com/ckeditor/ckeditor5/issues/9117. */
    & td,
    & th {
        & .image-inline.image_resized img {
            max-width: 100%;
        }
    }
}

[dir="ltr"] .ck.ck-button.ck-button_with-text.ck-resize-image-button .ck-button__icon {
    margin-right: var(--ck-spacing-standard);
}

[dir="rtl"] .ck.ck-button.ck-button_with-text.ck-resize-image-button .ck-button__icon {
    margin-left: var(--ck-spacing-standard);
}

.ck.ck-dropdown .ck-button.ck-resize-image-button .ck-button__label {
    width: 4em;
}

:root {
    --ck-image-style-spacing: 1.5em;
    --ck-inline-image-style-spacing: calc(var(--ck-image-style-spacing) / 2);
}

.textaco {

    /* See: https://github.com/ckeditor/ckeditor5/issues/16317 */
    & .image {

        /* Provides a minimal side margin for the left and right aligned images, so that the user has a visual feedback
		confirming successful application of the style if image width exceeds the editor's size.
		See https://github.com/ckeditor/ckeditor5/issues/9342 */
        &.image-style-block-align-left,
        &.image-style-block-align-right {
            max-width: calc(100% - var(--ck-image-style-spacing));
        }

        /* Allows displaying multiple floating images in the same line.
		See https://github.com/ckeditor/ckeditor5/issues/9183#issuecomment-804988132 */
        &.image-style-align-left,
        &.image-style-align-right {
            clear: none;
        }

        &.image-style-side {
            float: right;
            margin-left: var(--ck-image-style-spacing);
            max-width: 50%;
        }

        &.image-style-align-left {
            float: left;
            margin-right: var(--ck-image-style-spacing);
        }

        &.image-style-align-right {
            float: right;
            margin-left: var(--ck-image-style-spacing);
        }

        &.image-style-block-align-right {
            margin-right: 0;
            margin-left: auto;
        }

        &.image-style-block-align-left {
            margin-left: 0;
            margin-right: auto;
        }
    }

    & .image-style-align-center {
        margin-left: auto;
        margin-right: auto;
    }

    & .image-style-align-left {
        float: left;
        margin-right: var(--ck-image-style-spacing);
    }

    & .image-style-align-right {
        float: right;
        margin-left: var(--ck-image-style-spacing);
    }

    /* Simulates margin collapsing with the preceding paragraph, which does not work for the floating elements. */
    & p+.image.image-style-align-left,
    & p+.image.image-style-align-right,
    & p+.image.image-style-side {
        margin-top: 0;
    }

    & .image-inline {

        &.image-style-align-left,
        &.image-style-align-right {
            margin-top: var(--ck-inline-image-style-spacing);
            margin-bottom: var(--ck-inline-image-style-spacing);
        }

        &.image-style-align-left {
            margin-right: var(--ck-inline-image-style-spacing);
        }

        &.image-style-align-right {
            margin-left: var(--ck-inline-image-style-spacing);
        }
    }
}

.ck.ck-splitbutton {

    /* The button should display as a regular drop-down if the action button
	is forced to fire the same action as the arrow button. */
    &.ck-splitbutton_flatten {

        &:hover,
        &.ck-splitbutton_open {

            &>.ck-splitbutton__action:not(.ck-disabled),
            &>.ck-splitbutton__arrow:not(.ck-disabled),
            &>.ck-splitbutton__arrow:not(.ck-disabled):not(:hover) {
                background-color: var(--ck-color-button-on-background);

                &::after {
                    display: none;
                }
            }
        }

        &.ck-splitbutton_open:hover {

            &>.ck-splitbutton__action:not(.ck-disabled),
            &>.ck-splitbutton__arrow:not(.ck-disabled),
            &>.ck-splitbutton__arrow:not(.ck-disabled):not(:hover) {
                background-color: var(--ck-color-button-on-hover-background);
            }
        }
    }
}

.textaco figure.media iframe.youtube {
    width: 100% !important;
    aspect-ratio: 16/9;
    height: auto;
}

@media (max-width: 767px) {
    .textaco figure.image {
        width: 100% !important;
    }

    .textaco .image_resized,
    .textaco img {
        height: auto;
        max-width: 100%;
    }
}

/*FIN ESTILOS CKEDITOR*/

#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 .15s ease-in-out;
    -moz-transition: color .15s ease-in-out;
    transition: color .15s ease-in-out;

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

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

.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 {
    color: var(--primario);
    font-weight: 500;
    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: 34px;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 4px;
}

.botones_carro .btn-tam {
    height: 52px;
    width: 100%;
}

.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: 5px;
    background-color: var(--primario);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.btn-corporativo::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid #515151;
    border-radius: 3px;
    pointer-events: none;
}

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

/*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 {
    background-color: #5c5b5b;
    color: #fff
}

.btn-corporativo2:hover,
.btn-corporativo2:focus,
.btn-corporativo2:active {
    background-color: #5c5b5b;
    color: #fff
}

.btn-corporativo3:hover,
.btn-corporativo3:focus,
.btn-corporativo3:active {
    background-color: #5c5b5b;
    color: #fff
}

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

.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: 400;
    color: var(--primario);
    font-size: 24px;
    margin-top: 0px
}

h3.categoria {
    font-size: 18px;
    text-transform: uppercase;
    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
}

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


/************************************
*  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;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.bloque_cabecera .bloque_interior {
    background-color: #1e1e1e12;
    padding: 30px 15px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.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%;
    border-radius: 5px;
}

.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;
    border-radius: 5px;
}

.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;
    border-radius: 5px;
}

.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: #1e1e1e12;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 5px;
}

.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%;
    border-radius: 5px;
}

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

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

#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: #1e1e1e12;
    padding: 20px;
    border-radius: 5px;
}

.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: #dededed6;
}

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

.zona-mapa iframe {
    height: 100%;
    width: 100%;
    border-radius: 5px;
}

.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;
}
*/
.acceso a p {
    color: var(--primario);
    font-weight: 600;
    margin: 0;
}

.noestavisibleparapersonas {
    display: none;
}

.banner_interior>.cabecera {
    z-index: 1;
}

.banner_interior .cabecera .caja h1 {
    font-size: 55px !important;
    line-height: 60px !important;
    font-weight: 300 !important;
    color: #fff !important;
    margin-top: 0;
    font-family: var(--familia_fuente);
    margin-bottom: 30px;
}

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

    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.banner-interiores .linea_blanca {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #ffffff4f;
    top: -8px;
    z-index: 1;
}

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

.banner-interiores::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--transparencia);
    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: 112px;
    background-color: var(--transparencia);
    border-bottom: 1px solid #e8e8e8;
    margin: 0;
    padding: 0;
}

.producto-detalle .filtros {
    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, .3);
    background-color: #fff !important
}

.cerrar_input_buscador {
    border-right: 0;
    border-right: 1px #ccc solid;
    color: rgba(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 .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 .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: .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 .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 .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 .2s ease-in-out;
}

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

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

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

.boton_reserva_whatsapp {
    width: 20px;
    height: 20px
}

/* RESPONSIVE */
@media (max-width: 1500px) {

    /* Cabecera */
    .navbar-nav {
        column-gap: 0;
    }

    .nav-buttons {
        right: 20px;
    }

    .custom-button-cabecera {
        width: 210px;
    }

    .servicios2 .splide__arrow--next {
        right: -80px;
    }

    .servicios2 .splide__arrow--prev {
        left: -80px;
    }
}

@media (max-width: 1200px) {

    .banner_interior .cabecera .caja h1 {
        margin-bottom: 20px;
    }

    .bloqueTexto h1,
    .bloqueTexto .antetitulo2 {
        text-align: center !important;
    }

    /* #menu-lateral.toggled .barra_ampliada .forma_logo,
    #menu-lateral.toggled .barra_ampliada .forma_logo,
    #menu-lateral.toggled .navbar-brand>img {
        display: none;
    } */

    #menu-lateral.toggled .barra_ampliada .forma_logo,
    #menu-lateral.toggled .barra_ampliada .forma_logo,
    #menu-lateral.toggled .navbar-brand>img {
        opacity: 0;
        /* transform: scale(0.9); */
        translateX: (-20px);
        pointer-events: none;
    }


    /* cabecera */
    .navbar-toggle .icon-bar+.icon-bar {
        color: #fff;
    }

    .navbar-fixed-top .gradient {
        background-color: #040114bd;
    }

    .barra_ampliada .forma_logo {
        position: absolute;
        top: -254px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        height: 350px;
    }

    .barra_ampliada .navbar-brand,
    .barra_reducida .navbar-brand {
        width: 230px;
        height: 80px;
        top: 5px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
    }

    /* BLOQUE TEXTO */
    .bloqueTexto .row-align-center {
        flex-direction: column;
        gap: 10px;
    }

    /* SERVICIOS */
    .servicios .splide__arrow--prev {
        display: none;
    }

    .servicios .splide__arrow--next {
        display: none;
    }

    /* BLOQUE INFORMACIÓN */
    .bloqueTexto2 .row-align-center {
        flex-direction: column-reverse;
    }

    /* FOOTER */
    .footer-contactos {
        flex-direction: column;
        gap: 20px;
    }

    /* INTERIOR VILLA */
    .servicios2 .splide__arrow {
        display: none;
    }

    /* TAMAÑOS MÓVIL */
    .titulo {
        font-size: 45px;
    }

    .titulo2 {
        font-size: 40px;
    }

    .bloqueTexto2 h2,
    .bloqueTexto2 .antetitulo {
        text-align: center !important;
    }

    .antetitulo {
        font-size: 20px;
    }

    .rombo_informacion {
        width: 250px;
        height: 250px;
    }

    .columnaB img {
        width: 315px;
        height: 315px;
    }

    .servicios .degradado-left {
        background: linear-gradient(90deg, rgb(255 255 255 / 99%) 0%, rgba(255, 255, 255, 0) 15%);
    }

    .servicios .degradado-right {
        background: linear-gradient(-90deg, rgb(255 255 255 / 99%) 0%, rgba(255, 255, 255, 0) 15%);
    }

    .bloqueTexto2 .parrafo,
    .bloqueTexto .parrafo {
        text-align: center;
    }

    .rombo_informacion2 {
        width: 375px;
        height: 355px;
    }

    .columnaB2 .img-wrapper {
        width: 348px;
        height: 328px;
    }

    .parallax {
        height: 651px;
    }

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

    .barra_ampliada {
        z-index: 5;
    }

    .div_logo_menu_movil {
        height: 200px;
        pointer-events: none;
        margin-bottom: 20px;
        background: linear-gradient(180deg, rgba(5, 2, 20, 1) 5%, rgba(5, 2, 20, 0) 100%);
        z-index: 9;
    }

    .div_logo_menu_movil .forma_logo_menu_movil {
        width: auto;
        height: 400px;
        position: absolute;
        z-index: 1;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

    .div_logo_menu_movil .logo_menu_movil {
        width: 150px;
        height: 150px;
        position: absolute;
        z-index: 2;
        top: 110px;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .navbar-fixed-top {
        z-index: 5;
        border-bottom: 1px solid transparent;
    }
}

@media(max-width: 992px) {

    .boton_reservar .btn {
        font-size: 25px;
    }

    .servicios .splide__slide:hover .caja_servicio::before {
        transform: none
    }

    .boton_reserva_whatsapp {
        width: 27px;
        height: 27px
    }

    .banner_interior .cabecera .caja h1 {
        font-size: 35px !important;
    }

    .datos-info,
    .boton_reservar {
        width: 100% !important;
    }

    .galeria {
        max-height: 910px;
    }

    .zona-reserva-primero {
        flex-direction: column;
        margin-top: 50px;
        height: 180px;
        margin-bottom: 70px;
    }

    .boton_reservar {
        width: 100%;
    }

    /* Bloque servicios */
    .serviciosAg .row {
        display: flex;
        flex-flow: wrap;
        justify-content: center;
        max-width: 550px;
        margin: 0 auto;
    }

    #banner-slider {
        top: 45%;
    }

    .serviciosAg .row>div {
        margin-bottom: 30px;
    }

    /* FOOTER */
    .footer-info {
        gap: 10px 35px;
        flex-direction: column;
    }

    /* INTERIOR VILLA */
    .div-caracteristicas {
        flex-direction: column;
    }

    .div-caracteristicas>div {
        flex: 0 0 auto;
        width: 100%;
        padding: 20px 0;
        border-right: none;
        border-bottom: 1px solid #d6d6d6;
    }

    .div-caracteristicas>div:last-child {
        border-bottom: none;
    }

    .div-caracteristicas>div:not(:last-child) {
        border-right: 1px solid transparent;
    }

    .servicios h3 {
        width: 90%;
        font-size: 23px;
        font-weight: 400;
    }

    /* GALERÍA INTERIOR VILLA */
    .galeria .grid {
        grid-template-columns: repeat(2, 49.5%);
        grid-template-rows: repeat(3, 220px);
    }

    .galeria .grid>div:nth-child(1) {
        grid-row: 1/2;
        grid-column: 1/2;
    }

    .galeria .grid>div:nth-child(2) {
        grid-row: 1/2;
        grid-column: 2/3;
    }

    .galeria .grid>div:nth-child(3) {
        grid-row: 2/3;
        grid-column: 1/2;
    }

    .galeria .grid>div:nth-child(4) {
        grid-row: 2/3;
        grid-column: 2/3;
    }

    .galeria .grid>div:nth-child(5) {
        grid-row: 3/4;
        grid-column: 1/2;
    }

    .galeria .grid>div:nth-child(6) {
        grid-row: 3/4;
        grid-column: 2/3;
    }

    /* BOTÓN RESERVAR */
    .boton_reservar {
        width: 100%;
        position: fixed;
        bottom: 0;
        display: flex;
        z-index: 2;
        justify-content: center;
        left: 0;
    }

    .boton_reservar>a {
        width: 100%;
    }

    .boton_reservar .btn {
        border-radius: 0;
        gap: 5px;
    }

    /* SERVICIOS VILLA */
    .caja_servicios {
        grid-template-columns: repeat(2, 40%);
        grid-template-rows: repeat(8, 45px);
    }

    .caja_servicios>div:nth-child(5) {
        grid-row: 5/6;
        grid-column: 1/2;
    }

    .caja_servicios>div:nth-child(6) {
        grid-row: 6/7;
        grid-column: 1/2;
    }

    .caja_servicios>div:nth-child(7) {
        grid-row: 7/8;
        grid-column: 1/2;
    }

    .caja_servicios>div:nth-child(8) {
        grid-row: 8/9;
        grid-column: 1/2;
    }

    .caja_servicios>div:nth-child(9) {
        grid-row: 1/2;
        grid-column: 2/3;
    }

    .caja_servicios>div:nth-child(10) {
        grid-row: 2/3;
        grid-column: 2/3;
    }

    .caja_servicios>div:nth-child(11) {
        grid-row: 3/4;
        grid-column: 2/3;
    }

    .caja_servicios>div:nth-child(12) {
        grid-row: 4/5;
        grid-column: 2/3;
    }

    .caja_servicios>div:nth-child(13) {
        grid-row: 5/6;
        grid-column: 2/3;
    }

    .caja_servicios>div:nth-child(14) {
        grid-row: 6/7;
        grid-column: 2/3;
    }

    .caja_servicios>div:nth-child(15) {
        grid-row: 7/8;
        grid-column: 2/3;
    }

    .caja_servicios>div:nth-child(16) {
        grid-row: 8/9;
        grid-column: 2/3;
    }
}

@media (max-width: 767px) {

    .servicios .splide {
        height: 650px;
    }

    .banner_interior .cabecera .caja h1 {
        font-size: 24px !important;
        line-height: 30px !important;
    }


    .servicios .splide__slide .caja_servicio,
    .caja_wrapper {
        aspect-ratio: 11/15;
    }

    .caja_wrapper {
        position: relative;
        top: unset !important;
        left: unset !important;
        transform: unset;
        margin: 20px auto;
        height: 91%;
    }

    /* Cabecera */
    .telefono_cabecera {
        color: #fff;
        font-size: 16px;
    }

    #banner-slider {
        top: 36%;
        max-width: calc(100% - 100px);
        height: 70vw;
    }

    .banner .custom-container.titulo_banner .titulo {
        font-size: 50px;
    }

    .telefono_cabecera:hover {
        color: #fff;
    }

    .telefono_cabecera>span {
        margin-right: 10px;
    }

    /* banner */
    .banner .botones-banner {
        flex-direction: column;
    }

    .banner-video,
    #banner-slider {
        max-width: calc(100% - 60px);
    }

    /* Bloque servicios */
    .tituloPrincipalAb .adorno {
        width: 80px;
    }

    .tituloPrincipalAb h2.titulo {
        font-size: 30px;
        line-height: 32px;
        text-align: center;
    }

    .serviciosAg .card .img {
        max-width: 350px;
        height: auto;
        width: 100%;
    }

    /* footer {
        bottom: 70px;
    } */
}

@media(max-width: 600px) {

    #banner-slider {
        top: 42%;
        max-width: calc(100% - 100px);
        /* height: 70vw; */
        height: 550px;
    }

    .banner .custom-container.titulo_banner {
        padding: 0 20px;
        top: -320px;
    }

    .banner .custom-container.titulo_banner .titulo {
        font-size: 35px;
    }

    .banner {
        /* height: calc(100vh - 250px); */
        height:110svh;
    }

    .banner_absolute {
        top: 60%;
        /* top: 65%; */

    }

    .banner a {
        top: 87%;
    }

}

@media(max-width: 500px) {

    .galeria .grid {
        grid-template-columns: repeat(2, 48.6%);
    }

    .servicios .splide {
        height: 450px;
    }

    /* Bloque servicios */
    .serviciosAg .row {
        display: flex;
        flex-flow: wrap;
        justify-content: center;
        max-width: 550px;
        margin: 0 auto;
    }

    .serviciosAg .card .img {
        height: auto;
        width: 100%;
    }
}

@media(max-height: 890px) {
    #banner-slider {
        height: 400px;
    }

    .banner .custom-container.titulo_banner {
        top: -325px;
    }
}

/*//ESTILOS GENERALES//*/
@media (max-width: 1200px) {
    .dropdown-submenu>a:after {
        display: none;
    }

    .superior {
        display: none;
    }

    .barra_ampliada .navbar-fixed-top,
    .barra_reducida .navbar-fixed-top {
        height: 52px;
        background-color: #040114;
    }

    .toggled .navbar-fixed-top {
        display: none;
    }

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

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

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

    .navbar-toggle {
        display: block;
    }

    .navbar-header {
        float: left;
    }

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

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

@media (min-width: 993px) {

    /* móviles */
    .desfijar {
        position: absolute !important;
        width: 100%;
    }
}

@media (max-width: 992px) {
    /* 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;
        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: 25px;
        transition: all .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.30);
        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;
    }
}

@media (max-width: 767px) {

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

    .filtros {
        height: 260px;
    }

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

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