:root {
    --azul-oscuro: #00316b;
    --azul-medio: #006996;
    --azul-claro: #009fdf;
    --verde: #7cb828;
    --azul-aqua: #36b9cb;
    --metal: #bdbdbd;

    /* Estilos de PymeGo */

    --amarillo: #fcdb1c;
    --color-azul: #18ace3;
    --color-verde: #009640;
    --color-morado: #ab4191;
    --color-blanco: #FFFFFF;
    --color-azul-claro: #EEEFFF;
    --guayaba: #FD6C69;
    --montana: #1B3834;
    --mantequilla: #F8F3DE;
    --verde-claro: #D6FBB5;
    --verde-limoncito: #55bf3b;
    --cielo: #A6DDF0;
    --guayacan: #F9DA59;
    --azul-acopi: #00316b;
    --metal: #bdbdbd;
    --cian: #21a9ff;
    --gris-claro: #f5f5f5;
}

.bg-white {
    background-color: white !important;
}

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

.bg-metal {
    background-color: var(--metal) !important;
}

.text-aqua {
    color: var(--azul-aqua);
}

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

.bg-gradiente-azul-claro {
    background: #55B7A8;
    background: linear-gradient(180deg, rgba(85, 183, 168, 1) 0%, rgba(38, 173, 227, 1) 55%);
}

body {
    display: grid;
    min-height: 100vh;
    grid-template-rows: auto 1fr auto;
}


.btn-acopi{
    background-color: var(--azul-acopi);
    padding: 10px;
    border-radius: 10px;
    color:white;
}
.btn-acopi:hover {
    background-color: #004b7f; /* Un azul más profundo que el medio */
    box-shadow: 0 4px 8px rgba(0, 49, 107, 0.4);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.btn-delete {
    background-color: #dc3545; /* Rojo de advertencia estándar */
    padding: 10px;
    border-radius: 10px;
    color: white;
    /* Para que combine con los otros botones, le puedes dar un estilo similar */
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.2);
}
.btn-delete:hover {
    background-color: #c82333; /* Un tono más oscuro en el hover */
    box-shadow: 0 6px 12px rgba(220, 53, 69, 0.4);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}
.div-spiner-loading {
    background: linear-gradient(180deg, rgba(85, 183, 168, 1) 0%, rgba(38, 173, 227, 1) 55%);
    padding: 10px;
    border-radius: 10px;
    color:white;
}

.div-spiner-loading-delete {
    background-color: #c82333; /* Un tono más oscuro en el hover */
    padding: 5px;
    border-radius: 10px;
    color:white;
}

.btn-acopi-close{
    background-color: var(--metal);
    padding: 10px;
    border-radius: 10px;
    color:black;
}

.btn-acopi-close:hover {
    background-color: #a0a0a0; /* Un gris un poco más oscuro que `var(--metal)` */
    box-shadow: 0 4px 8px rgba(189, 189, 189, 0.4);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}
.bg-danger {
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.zoom-boton {
    transition: all 1s ease 0.1s;
}

.zoom-boton:hover {
    transform: scale(1.1);
}

.slick-arrow {
    background-color: white !important;
    border: solid 2px var(--azul-medio);
}

.text-white th {
    color: white;
}

.text-white {
    color: white !important;
}

.bg-primary th {
    background-color: rgb(0, 105, 150) !important;

}

.bg-acopi th {
    background-color: var(--azul-acopi) !important;
    color: white;
}

.text-azul-oscuro {
    color: var(--azul-oscuro);
}

.bg-azul-oscuro {
    background-color: var(--azul-oscuro) !important;
}

.bg-azul-acopi {
    background-color: var(--azul-oscuro) !important;
}

.bg-azul-medio {
    background-color: var(--azul-medio) !important;
}

.text-azul-claro {
    color: var(--azul-claro);
}

.bg-azul-claro {
    background-color: var(--azul-claro) !important;
}

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

.titulo-header {
    border-bottom: solid 2px var(--azul-oscuro);
    /* background-color: #21e3f03d; */
    /* border-radius: 10px; */
}

.text-azul-medio {
    color: var(--azul-medio);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

td {
    vertical-align: middle;
}

/* BARRA NAVEGACIÓN */

.nav-inicio {
    width: 100%;
    z-index: 999;
}

.content-logos {
    display: none;
}

.nav-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .nav-inicio {
        background-color: #00417E;
    }
}

@media (min-width: 991px) {
    .nav-mobile {
        display: none !important;
    }

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


}

.empresa-card {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.empresa-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.1);
}

.logo-container {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}


a {
    text-decoration: none;
}

.item-inicio {
    border-bottom: solid 5px #3eb9ca;
}

.item-categorias {
    border-bottom: solid 5px #E91E63;
}

.item-comunidad {
    border-bottom: solid 5px #ffdb08;
}

.item-tienda {
    border-bottom: solid 5px #e00f21;
}

.item-ruedas {
    border-bottom: solid 5px rgb(245, 130, 32);
}

.item-financiamiento {
    border-bottom: solid 5px #55ad3b;
}

.item-plazas {
    border-bottom: solid 5px #1976D2;
}

.item-ferias {
    border-bottom: solid 5px #1B5E20;
}

.item-eventos {
    border-bottom: solid 5px #757575;
}

.item-vender {
    border-bottom: solid 5px #001F3F;
}

.item-comprar {
    border-bottom: solid 5px #0D47A1;
}

.item-networking {
    border-bottom: solid 5px #822580;
}

.item-publicaciones {
    border-bottom: solid 5px #D32F2F;
}

.item-tiendas {
    border-bottom: solid 5px #cd9f33;
}

.item-empleos {
    border-bottom: solid 5px #17daac;
}

.item-contacto {
    border-bottom: solid 5px #afee1c;
}

.item-coworking{
    border-bottom: solid 5px #2600fd;
}

.item-mi-tienda {
    border-bottom: solid 5px #650031;
}

.item-my-appoiment {
    border-bottom: solid 5px #f20ba9;
}
.item-mi-cuenta {
    border-bottom: solid 5px #3fb8f1;
}


.item-mi-vinculacion {
    border-bottom: solid 5px #ffc400;
    color: black;
    width: 165px;
    margin-left: 10px;
    text-align: center;
    margin: 5px;
}

.item-mi-vinculacion>i {
    color: #ffc400;
    float: left;
}

.item-como-comprar {
    border-bottom: solid 5px #11939d;
    color: black;
    width: 180px;
    margin-left: 10px;
    text-align: center;
    margin: 5px;
}

.item-como-vender {
    border-bottom: solid 5px #a3238e;
    color: black;
    width: 180px;
    margin-left: 10px;
    text-align: center;
    margin: 5px;
}

.item-agenda-academica {
    border-bottom: solid 5px #fdb913;
    /* color: black;
    width: 200px;
    margin-left: 10px;
    text-align: center;
    margin: 5px; */
}

/* .item-networking {
    border-bottom: solid 5px #E3715F;
    color: black;
    width: 200px;
    margin-left: 10px;
    text-align: center;
    margin: 5px;
} */

.item-mi-empresa {
    border-bottom: solid 5px #11939d;
    color: black;
    width: 130px;
    margin-left: 10px;
    text-align: center;
    margin: 5px;
}

.item-ingresar {
    border-bottom: solid 5px rgb(0, 105, 150);
    color: black;
    width: 120px;
    margin-left: 10px;
    text-align: center;
    margin: 5px;
}

.item-registrarse {
    border-bottom: solid 5px rgb(245, 130, 32);
    color: black;
    width: 200px;
    margin-left: 10px;
    text-align: center;
    margin: 5px;
}

.item-visitas {
    border-bottom: solid 5px rgb(42, 180, 146);
    color: black;
    width: 130px;
    margin-left: 10px;
    text-align: center;
    margin: 5px;
}

/* ------------------------------------------------------------------------------------ */

/* Encabezado para todos los Ejes */

.hero-section {
    background: url('/img/plazas/Plaza-Mercado-La-Minorista-Medellin.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 20px 20px;
    position: relative;
    width: 100%;
}

.background-overlay {
    background-color: #001f7799;
    opacity: 0.9;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    inset: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

/* ---------------------------------------- */


.content-personalizado {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.container-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    /* justify-content: flex-end; */
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-image: linear-gradient(to right,
            var(--azul-oscuro),
            var(--azul-claro));
    border-image-slice: 1;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}

.container-header {
    display: flex;
    -ms-flex-align: start;
    /* align-items: flex-start; */
    -ms-flex-pack: justify;
    /* justify-content: space-between; */
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-image: linear-gradient(to right,
            var(--azul-claro),
            var(--azul-oscuro));
    border-image-slice: 1;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.card-personalizada {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
}

.img-logo {
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    height: 100px;
}

.img-header {
    height: 80px;
}

.vaya-fondo {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    object-fit: cover;
    opacity: 0.5;
}

.borde-header {
    border-bottom: 4px solid white;
}

/* [type="checkbox"] {
    width: 1.8em;
    height: 1.8em !important;
}

:checked[type="checkbox"] {
    background-color: var(--bs-primary);
} */

/* modales */

.modal {
    background-color: #7b9fae9e;
}

.modal-backdrop.show {
    opacity: 0;
    z-index: -1;
}

/* borders personalizados */

/* .modal-content {
    border-radius: 3px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 0px;
} */

/* .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 5px solid var(--color-azul);
     border-radius: 20px;
    outline: 0;
    overflow: hidden;

    border: 3px solid transparent;
    border-image: linear-gradient(to bottom, var(--color-verde) 0%, var(--color-azul) 100%) 1;
    border-image: linear-gradient(to bottom, #7cb828 0%, #006996 100%) 1;
} */

.modal-dialog {
    border: 0px !important;
}

/* ----------------------------------------------------------------------------- */

/* MENU - BARRA NAVEGACIÓN */

.menu-colores {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* .menu-colores>ul {
    list-style-type: square !important;
    list-style: square !important;
} */

.menu-colores>ul>li {
    display: flex !important;
}

.menu-colores>ul>li {
    padding: 5px 0px !important;
    text-align: center;
    display: flex !important;
    align-items: center;
    margin: 5px 0px;
}

.menu-colores>ul>li:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-bottom: solid 5px var(--azul-claro);
    color: var(--azul-claro);
}

/* Links blancos navbar */
/* .navbar .nav-link {
    color: white;
} */

.navbar .nav-link.active {
    color: black;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.1) !important;
    /* border-bottom: solid 2px var(--bs-white); */
}

.navbar .nav-link {
    color: black;
}

.sidebar-menu__active li {
    display: none;
}

.sidebar-menu__active li.menu-title {
    display: block;
}

@media (width < 992px) {
    .navbar__active {
        display: none;
    }

    .sidebar-menu__active li {
        display: block;
    }
}

.sidebar.menu-translate-left {
    transform: translate(-100%);
}

.sidebar .menu {
    padding: 0;
    display: none;
    visibility: hidden;
}

.sidebar .menu-title {
    padding: 0.8rem 1rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.sidebar li {
    padding: 0;
}

.sidebar .submenu {
    padding-left: 0;
    overflow: hidden;
}

.sidebar .submenu.compressed {
    height: 0;
    opacity: 0;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s cubic-bezier(0.4, 0, 0.6, 1);
}

.sidebar .submenu:not(.compressed) {
    height: auto;
    opacity: 1;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s cubic-bezier(0.4, 0, 0.6, 1);
}

.sidebar .submenu:not(.compressed)+* .compressed-btn {
    display: none;
}

.item-menu,
.compressed-btn,
.expanded-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
    text-transform: capitalize;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.item-menu:hover,
.compressed-btn:hover,
.expanded-btn:hover {
    background-color: rgba(128, 128, 128, 0.3);
}

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

.item-menu.menu-back-button {
    justify-content: start;
    gap: 10px;
    border-bottom: 1px solid #d5dbdb;
    font-weight: 600;
}

.compressed-btn,
.expanded-btn {
    gap: 10px;
    justify-content: start;
}

.sidebar .submenu.compressed+* .expanded-btn {
    display: none;
}

.menu.menu-translate-right {
    transform: translateX(100%);
}

.menu-container.menu-visibility,
.menu.menu-visibility {
    visibility: visible;
    display: block;
}

/* -------------------------------------------------------------------------------------- */

/* FOOTER - REDES SOCIALES */

.borde-footer {
    border-top: 4px solid var(--azul-claro);
}

.social-container {
    /* width: 400px; */
    /* margin: 40vh auto; */
    text-align: center;
}

.social-icons {
    padding: 0;
    list-style: none;
    /* margin: 1em */
}

.social-icons li {
    display: inline-block;
    margin: 0.15em;
    position: relative;
    font-size: 1.2em;
}

.social-icons i {
    color: var(--bs-primary);
    position: absolute;
    top: 16px;
    left: 16px;
    transition: all 265ms ease-out;
}

.social-icons a {
    display: inline-block;
}

.social-icons a:before {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    content: " ";
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: block;
    /* background: linear-gradient(45deg, #00B5F5, #002A8F); */

    background: var(--bs-white);
    transition: all 265ms ease-out;
}

.social-icons a:hover:before {
    transform: scale(0);
    transition: all 265ms ease-in;
}

.social-icons a:hover i {
    transform: scale(2.2);
    -ms-transform: scale(2.2);
    -webkit-transform: scale(2.2);
    color: var(--bs-info);
    /* background: -webkit-linear-gradient(45deg, #00B5F5, #002A8F); */
    background: var(--bs-white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 265ms ease-in;
}

.list-mapa li {
    list-style: circle;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Toggle 🔻 centered*/
.dropdown-toggle {
    display: flex;
}

.dropdown-toggle::after {
    margin: auto 0.25em;
}

/* ----------------------------------------------------------------------------------------------------------------------- */

/* HOME TIENDAAAAAS */

.content-banners {
    position: relative;
}

.img-landing-banner {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.img-landing-logo {
    margin: auto;
    object-fit: cover;
    position: absolute !important;
    top: 69% !important;
    left: 19vh !important;
    transform: translate(-43%, -50%) !important;
}

@media (max-width: 768px) {
    .img-landing-logo {
        margin: auto;
        object-fit: cover;
        position: absolute !important;
        top: 68% !important;
        left: 50% !important;
        transform: translate(-43%, -50%) !important;
    }
}

.img-landing-logo img {
    width: 250px;
    height: 250px;
}

.btn__container {
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn__container a {
    margin: 4px;
}

.btn-i {
    min-width: 110px;
    background-color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    color: #c71e7e;
    display: flex;
    transition: all 0.2s ease-in-out;
}

.btn-i i {
    color: #df3796;
    font-size: 20px;
    padding-right: 10px;
    transition: all 0.3s ease-in-out;
}

.btn-i span {
    font-family: Roboto, sans-serif;
    align-self: center;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    transition: all 0.1s ease-in-out;
    opacity: 1;
}

.btn-i:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    background: linear-gradient(to right, #ff3019 0, #c90477 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-i:hover i {
    -webkit-transform: translateX(45px);
    transform: translateX(45px);
    padding-right: 0;
    color: #fff;
}

.btn-i:hover span {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
}

.btn-i:active {
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-f {
    min-width: 110px;
    background-color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    color: #286ed6;
    display: flex;
    transition: all 0.2s ease-in-out;
}

.btn-f i {
    color: #286ed6;
    font-size: 20px;
    padding-right: 10px;
    transition: all 0.3s ease-in-out;
}

.btn-f span {
    font-family: Roboto, sans-serif;
    align-self: center;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    transition: all 0.1s ease-in-out;
    opacity: 1;
}

.btn-f:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    background-color: #286ed6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-f:hover i {
    -webkit-transform: translateX(45px);
    transform: translateX(45px);
    padding-right: 0;
    color: #fff;
}

.btn-f:hover span {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
}

.btn-f:active {
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-y {
    min-width: 110px;
    background-color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    color: red;
    display: flex;
    transition: all 0.2s ease-in-out;
}

.btn-y i {
    color: red;
    font-size: 20px;
    padding-right: 10px;
    transition: all 0.3s ease-in-out;
}

.btn-y span {
    font-family: Roboto, sans-serif;
    align-self: center;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    transition: all 0.1s ease-in-out;
    opacity: 1;
}

.btn-y:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    background-color: red;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-y:hover i {
    -webkit-transform: translateX(45px);
    transform: translateX(45px);
    padding-right: 0;
    color: #fff;
}

.btn-y:hover span {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
}

.btn-y:active {
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ---------------------------------------------------------------------------------------------------------------------- */

/* DISEÑO DE LA VISTA PRODUCTOS */
.container-products {
    display: flex;
    /* justify-content: center; */
    flex-wrap: wrap;
    gap: 0.5rem;
}

.card-product {
    background-color: #fff;
    flex: 1 0 calc(25% - 0.5rem);
    max-width: calc(25% - 0.5rem);
    overflow: hidden;
    transition: all 0.4s ease-out;
}

.card-product-body {
    flex: 1 1 auto;
    padding: 0.5rem 0.5rem;
}

.card-product.card-product__list {
    display: flex;
    flex: 1 1 100%;
    flex-flow: row wrap;
    max-width: 100%;
}

.card-product:hover {
    transform: translateY(-10px);
    box-shadow: 2px 8px 16px 0px rgb(50 50 50 / 45%);
}

@media (width <=1024px) {
    .card-product {
        flex: 1 0 calc(33.33% - 0.5rem);
        max-width: calc(33.33% - 0.5rem);
    }
}

@media (width < 768px) {
    .card-product {
        flex: 1 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }
}

.card-product__carousel {
    flex: 1;
    display: flex;
}

.card-product,
.card-product.slick-slide {
    display: flex;
}

.content-img-product {
    height: 150px;
    overflow: hidden;
    position: relative;
}

@media (425px < width < 1440px) {
    .card-product__list .content-img-product {
        height: 200px;
    }
}

@media (1440px <=width) {
    .card-product__list .content-img-product {
        height: 250px;
    }
}

.card-product__list .content-img-product {
    flex: 1 1 40%;
    padding: 0.3rem;
}

.card-product__list .card-product-body {
    flex: 1 1 60%;
}

.card-product .add-cart span,
.card-product .btn-details span {
    display: none;
}

.card-product__list .add-cart span,
.card-product__list .btn-details span {
    display: inline-block;
}

.card-product-footer {
    justify-content: center;
}

.card-product__list .card-product-footer {
    flex: 1 1 100%;
}

.img-product {
    height: 100%;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: all 2s ease-out;
}

.card-product:hover .img-product {
    transform: rotate(-5deg) scale(1.15);
}

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

.titulo-product {
    display: -webkit-box;
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    /* Limita el texto a 2 líneas */
    -webkit-box-orient: vertical;
}

.search-product {
    display: flex;
    justify-content: center;
    flex: 2;
}

@media (768px >=width) {
    .search-product {
        display: none;
    }
}

.filters-movil {
    align-items: center;
    display: flex;
    flex: 1;
    justify-content: center;
}

@media (768px < width) {
    .filters-movil {
        display: none;
    }
}

.btn-filters,
.btn.btn-filters:active,
.btn-filters:hover {
    color: var(--azul-claro);
    border: none;
}

/* --------------------------------------------------------------------------------------------------------------------- */

/* Estilos SCROLL para motores Webkit y blink (Chrome, Safari, Opera... )*/

::-webkit-scrollbar {
    -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
    width: 15px;
}

::-webkit-scrollbar-button:increment {
    display: none;
}

::-webkit-scrollbar:horizontal {
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--bs-primary);
    border-radius: 20px;
    border: 2px solid #f1f2f3;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

/* ------------------------------------------------------------------------------------------------------------ */

/* Estilos productos en especifico - vista product.product  - producto.show */

.product-item-like {
    right: 10px;
    top: 10px;
    background: #c8d7e5;
    border: none;
    padding: 5px;
    border-radius: 5px;
    z-index: 2;
}

.product-item-like:hover {
    background: #b6c8d8;
}

.img-zoom {
    width: 375px;
}

@media only screen and (max-width: 600px) {
    .img-zoom {
        display: grid;
    }
}

.slick-list.draggable {
    padding: 10px 50px !important;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #fff; */

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

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

.swiper {
    width: 100%;
    /* height: 300px; */
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

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

.img-product-show-plus {
    cursor: pointer;
}

.img-product-show:hover {
    cursor: move;
}

/* --------------------------------------------------------------------------------- */

/* Estilos para motores Webkit y blink (Chrome, Safari, Opera... )*/

::-webkit-scrollbar {
    -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
    width: 15px;
}

::-webkit-scrollbar-button:increment {
    display: none;
}

::-webkit-scrollbar:horizontal {
    height: 10px;
}

::-webkit-scrollbar-thumb {
    /* background-color: #662681; */
    /*  background: rgb(0, 43, 233); */
    background: linear-gradient(180deg, #131a42 0%, #27a2b7 100%);
    border-radius: 20px;
    border: 2px solid #f1f2f3;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

/* ------------------------------------------------------------------------------------------------------------- */

/* Flechas Carousel */

.slick-track {
    display: flex;
    gap: 1rem;
}

.slick-slide {
    height: auto;
}

.slick-arrow {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    height: 30px;
    width: 30px;
    z-index: 1000;
}

.slick-arrow::before {
    display: inline-block;
    color: var(--azul-claro);
    font: var(--fa-font-solid);
    font-size: 24px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.slick-arrow:hover {
    -webkit-box-shadow: 3px 10px 29px -19px rgba(0, 0, 0, 0.69);
    -moz-box-shadow: 3px 10px 29px -19px rgba(0, 0, 0, 0.69);
    box-shadow: 3px 10px 29px -19px rgba(0, 0, 0, 0.69);
}

.slick-next {
    right: 0px;
}

.slick-prev {
    left: 0px;
}

.slick-next:hover,
.slick-prev:hover {
    background: white;
}

.slick-next::before {
    content: "\f054";
}

.slick-prev::before {
    content: "\f053";
}

/* Tabs Shop */

.nav-tabs-shop {
    border: none;
}

.nav-tabs-shop #nav-product-card-tab,
.nav-tabs-shop #nav-product-fila-tab {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 0.3rem 1rem;
    border: none;
}

.nav-tabs-shop #nav-product-card-tab {
    border-bottom-left-radius: 25px;
    border-top-left-radius: 25px;
}

.nav-tabs-shop #nav-product-fila-tab {
    border-bottom-right-radius: 25px;
    border-top-right-radius: 25px;
}

.nav-tabs-shop #nav-product-card-tab.active,
.nav-tabs-shop #nav-product-fila-tab.active {
    border: 1px solid #27a2b7;
}

.input-search-shop input,
.input-search-shop span {
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 25px;
}

.input-search-shop input:focus {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Rango de precio */

#texto-precio {
    grid-template-rows: -webkit-max-content 1em;
    grid-template-rows: max-content 1em;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    width: 100%;
}

#barra-precio {
    display: grid;
    grid-template-rows: -webkit-max-content 1em;
    grid-template-rows: max-content 1em;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    width: 100%;
    background: linear-gradient(0deg, #ccc 1em, transparent 0);
}

input[type="range"] {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    background: none;
    /* get rid of white Chrome background */
    color: #000;
    font: inherit;
    /* fix too small font-size in both Chrome & Firefox */
    pointer-events: none;
}

input[type="range"]::-webkit-slider-runnable-track,
input[type="range"]::-webkit-slider-thumb,
input[type="range"] {
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 100%;
    background: none;
}

input[type="range"]::-moz-range-track {
    width: 100%;
    height: 100%;
    background: none;
}

input[type="range"]::-webkit-slider-thumb {
    border: none;
    /* get rid of Firefox thumb border */
    width: 1em;
    height: 1em;
    border-radius: 0;
    /* get rid of Firefox corner rounding */
    background: currentcolor;
    pointer-events: auto;
}

input[type="range"]::-moz-range-thumb {
    border: none;
    /* get rid of Firefox thumb border */
    width: 1em;
    height: 1em;
    border-radius: 0;
    /* get rid of Firefox corner rounding */
    background: currentcolor;
    pointer-events: auto;
}

.filters-shop {
    flex: 0 0 auto;
    width: 30%;
}

.container-shop {
    flex: 0 0 auto;
    width: calc(100% - 30%);
}

@media (768px >=width) {
    .filters-shop {
        display: none;
    }

    .container-shop {
        width: 100%;
    }
}

/* Botón de WhatsApp */
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 15px;
    right: 20px;
    background: linear-gradient(115deg, #1c707d, #04191e);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    box-shadow: 0px 0px 25px 10px rgba(15, 67, 75, 0.5);
    border: 1px solid white;
}

.float:hover {
    text-decoration: none;
    color: #66868b;
    background: linear-gradient(135deg, #072025, #0f434b);
}

.my-float {
    margin-top: 14px;
}

/* Cards personalizadas */

.caja-evento-home {
    width: 300px;
    margin: 20px;
    /* border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.caja-evento {
    width: 300px;
    /* Mismo ancho que la imagen */
    margin: 20px;
    /* Añade un pequeño margen entre las cards */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.caja-evento img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.evento-content {
    padding: 15px;
}

.caja-evento:hover {
    transform: translateY(-5px);
    transition: 0.3s;
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.252);
}

.container-eventos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    /* Espacio entre las cards */
}

.evento-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #bc1919;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: bold;
}

.evento-content {
    background: linear-gradient(to bottom, #f0f0f0, #ffffff);
    padding: 15px;
}

.evento-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
}

/* .evento-info {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
} */

.evento-info i {
    margin-right: 5px;
    color: #0056b3;
}

/* QUitar subrayado de los textos*/
a {
    text-decoration: none;
}

/* ESTILOS RUEDAS DE NEGOCIOS */

.no-citas-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    text-align: center;
    color: #333;
    background-color: #f8f9fa;
}

.no-citas-box {
    padding: 20px;
    border: 2px solid #28a745;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.no-citas-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.no-citas-body {
    font-size: 18px;
    margin-bottom: 20px;
}

.no-citas-actions a {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #28a745;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.no-citas-actions a:hover {
    background-color: #218838;
}

/* Auditorios - Conferencia */

.no-conferencias-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    text-align: center;
    color: #333;
    background-color: #f8f9fa;
}

.no-conferencias-box {
    padding: 20px;
    border: 2px solid #dc3545;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.no-conferencias-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.no-conferencias-body {
    font-size: 18px;
    margin-bottom: 20px;
}

.no-conferencias-actions a {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #dc3545;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.no-conferencias-actions a:hover {
    background-color: #c82333;
}

/* ---------------------------------------------------------------------------------------------------------------------- */

/* TIENDAS */

.caja-tienda {
    background: white;
    transition: all 0.4s ease-out;
    /* border-radius: 21px; */
    padding: 0px;
    width: 250px;
    margin: 1% 1%;
    border: solid 1px lightgray;
    text-decoration: none;
    overflow: hidden;
}

.caja-tienda:hover {
    transform: translateY(-5px);
    box-shadow: 2px 8px 16px 0px rgb(50 50 50 / 45%);
    padding: 0px;
}

/* .img-tienda {
    width: 100%;
    max-width: 100%;
    height: 240px;
    border-radius: 20px 20px 0px 0px;
    object-fit: cover;
} */

/* -------------------------------------------------------------------------------------------------------------- */

/* Footer Mapa de sitio*/

/* Estilos generales para los enlaces del footer */
.footer-link {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

/* Efecto hover: cambio de color y subrayado animado */
.footer-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #00ffff;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #00ffff;
}

.footer-link:hover::after {
    width: 100%;
}

/* Efecto de clic: destello */
.footer-link:active {
    animation: pulse 0.3s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* -------------------------------------------------------------------------------------------------------------- */
/* Estilo base para los elementos del menú */
.custom-nav-item .custom-nav-link {
    position: relative;
    transition: color 0.3s ease;
}

/* Efecto de subrayado en hover */
.custom-nav-item .custom-nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.custom-nav-item .custom-nav-link:hover::after {
    width: 100%;
}

/* Estilo para el elemento activo */
.custom-nav-item .custom-nav-link.custom-active {
    color: #00ffff;
}

.custom-nav-item .custom-nav-link.custom-active::after {
    width: 100%;
}

/* Efecto para los iconos */
.custom-nav-item .custom-nav-link .custom-icon {
    transition: transform 0.3s ease;
}

.custom-nav-item .custom-nav-link:hover .custom-icon {
    transform: translateY(-2px);
}

/* Estilos para el menú desplegable */
.custom-dropdown-menu .custom-dropdown-item {
    transition: background-color 0.3s ease;
}

.custom-dropdown-menu .custom-dropdown-item:hover {
    background-color: #f8f9fa;
}

/* -------------------------------------------------------------------------------------------------------------- */
/* Estilo para colores en popover*/
.custom-popover .popover-header {
    /* Cambiar el color de fondo */
    background-color: #ebebeb;
    /* Cambiar el color del texto */
    color: #1b7483;
    /* Opcional: Hacer el título en negrita */
    font-weight: bold;
}



/* plazas */

/* Descripcion Plazas */


.market-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background-color: #f9f9f9;
}

.market-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.market-card h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.market-card .description {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
}

.market-card ul {
    list-style: none;
    padding: 0;
    font-size: 0.95rem;
}

.market-card li {
    margin-bottom: 0.5rem;
    color: #333;
}

.market-card a {
    color: #007bff;
    text-decoration: none;
}

.market-card a:hover {
    text-decoration: underline;
}

/* ---------------------------------------------------------------------------------------------- */



/* Sectores en la tienda */

.sectores-collage {
    padding: 40px 20px;
    background-color: #f5f7fa;
    text-align: center;
}

.sectores-collage h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
    border-bottom: 3px solid #00a7c5;
    display: inline-block;
    padding-bottom: 8px;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.sector-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    width: 250px;
    min-height: 220px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-card::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(0px);
    transition: backdrop-filter 0.4s ease;
    z-index: 1;
}

.sector-card:hover::before {
    backdrop-filter: blur(3px);
}

.sector-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.sector-card .overlay {
    position: absolute;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.4s ease, transform 0.4s ease;
    text-align: center;
    z-index: 2;
}

.sector-card:hover .overlay {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-5px);
}

@media (max-width: 600px) {
    .sectores-collage h2 {
        font-size: 1.5rem;
    }

    .sector-card {
        min-height: 180px;
    }

    .sector-card .overlay {
        font-size: 1rem;
        padding: 15px;
        align-items: center;
        justify-content: center;
        transform: translateY(-10px);
        /* efecto más arriba en móvil */
    }

    .sector-card:hover .overlay {
        transform: translateY(-15px);
    }
}

/* -------------------------------------------------------------------------- */



/* PAGINA INICIO */

.card-conectamos {
    border-radius: 30px;
    margin: 25px;
}

/* Ruedas de negocio */
#ruedas-negocio .card-title {
    color: #00587a;
}

#ruedas-negocio .card:hover {
    transform: scale(1.02);
    transition: all 0.3s ease-in-out;
}

#ruedas-negocio .btn-outline-primary:hover {
    background-color: #00587a;
    color: #fff;
}

/* ------------------------------------------------------------------------------ */

/* Ferias */
#ferias-virtuales .card:hover {
    transform: scale(1.02);
    transition: 0.3s ease-in-out;
}

#ferias-virtuales .card-title {
    color: #00587a;
}

#ferias-virtuales .btn-outline-primary:hover {
    background-color: #00587a;
    color: #fff;
}

/* --------------------------------------------------------------------------------- */

/* Networking */

#networking-mipyme ul li {
    margin-bottom: 0.5rem;
}

/* ---------------------------------------------------------------- */

/* Plazas */
#plazas-mipyme h2 {
    font-size: 2rem;
}

#plazas-mipyme img {
    border-radius: 1rem;
}

/* ----------------------------------------------------------------------------- */

/* Bolsa de empleo */

.bolsa-empleo h2 {
    font-size: 2.5rem;
}

.bolsa-empleo .card-title {
    font-weight: bold;
}

.bolsa-empleo .card {
    transition: transform 0.2s ease-in-out;
}

.bolsa-empleo .card:hover {
    transform: scale(1.03);
}

.bolsa-empleo .badge {
    font-size: 0.85rem;
}

/* -------------------------------------------------------- */


/* Auditorios */

#auditorios .card-title {
    font-size: 1.1rem;
}

#auditorios .badge {
    font-size: 0.8rem;
    padding: 0.4em 0.6em;
}

/* --------------------------------------------------------------- */


/* Sectores */

.sectores {
    /* padding: 2rem 2rem; */
    background-color: #f0f2f5;
    text-align: center;
}

.sectores-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.sectores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.sector-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sector-card img {
    width: 100%;
    /* height: 180px; */
    object-fit: cover;
}

.sector-info {
    padding: 1rem;
}

.sector-info h3 {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 0.5rem;
}

.sector-info p {
    font-size: 0.95rem;
    color: #666;
}


/* ----------------------------------------------------------------------------- */




/* required  */
.label.required::after {
    content: " *";
    color: red;
    font-weight: bold;
}


/* Estilos pra Cards de registro y validacion de empresas */

/* Contenedor principal */
.registro-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
}

/* Estilos generales de la tarjeta */
.registro-card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    width: 400px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

/* Icono */
.registro-icono img {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
}

/* Hover con animación */
.registro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Título */
.registro-card h3 {
    /* margin: 0.5rem 0; */
    font-size: 1.3rem;
    color: #333;
}

/* Descripción */
.registro-card p {
    font-size: 0.95rem;
    color: #666;
    /* margin-bottom: 1.5rem; */
}

/* Botón */
.registro-btn {
    display: inline-block;
    background: linear-gradient(to right, #007bff, #0056b3);
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.registro-btn:hover {
    background: linear-gradient(to right, #0056b3, #003c82);
}

/* Color por tipo */
/* .registro-card.vendedor {
    border-top: 5px solid #007bff;
}

.registro-card.comprador {
    border-top: 5px solid #28a745;
} */

/* ----------------------------------------------------------------------------------------------- */







/* Logo Profile */

/* Logo?profile.css de pymego */

.logo__profile {
    width: 176px;
    height: 176px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    margin-right: 16px;
}

.logo__profile__default {
    position: absolute;
    bottom: -110px;
    left: 25px;
}

.logo__profile__img {
    width: 40px;
    height: 40px;
}

.logo__profile__afiliado {
    width: 100%;
    min-width: 100%;
    height: 200px;
    border-radius: 10px 10px 0% 0%;
    overflow: hidden;
    transition: all 2s ease 0.2s;
}

.logo__profile__afiliado:hover {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    filter: saturate(180%);
}

.logo__profile__btn {
    position: absolute;
    font-size: 25px;
    top: 180%;
    background-color: var(--200);
    padding: 0.1rem 0.5rem;
    border-radius: 25px;
    transform: translate(300%, 1%);
}

@media (width < 1024px) {

    .logo__profile__btn {
        transform: translate(100%, 60%);
    }
}

@media (width <=768px) {
    .logo__profile__default {
        display: flex;
        justify-content: center;
        left: 50%;
        transform: translateX(-50%);
    }
}



/* Perfil del sector  / Profile.css pymego */
.profile__container {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    padding: .5rem;
    margin-bottom: .5rem;
    position: relative;
}

.profile__banner {
    width: 100%;
    position: relative;
    z-index: 200;
}

.profile__banner__img {
    width: 100%;
    max-height: 40vh;
    min-height: 20vh;
    object-fit: cover;
    border-bottom-left-radius: .5rem;
    border-bottom-right-radius: .5rem;
}

.profile__name {
    text-align: center;
    padding: 1rem;
    font-size: 2rem;
    font-weight: 600;
}

.profile__count__aliados {
    font-size: 1rem;
    color: var(--600);
    margin: 0;
}

.profile__separate__logo {
    width: 176px;
    margin-right: 16px;
}

.profile__content__solitions {
    display: flex;
    margin-top: .5rem;
    margin-right: 1rem;
    flex-wrap: wrap;
    gap: .8rem;
    justify-content: center;
}

.profile__nav {
    /* max-width: 1218px; */
    margin: auto;
    border-top: 1px solid #ced0d4;
}

.profile__nav .nav-link {
    padding: 1.1rem 1rem;
}

.profile__nav .nav-link.active {
    background-color: #fff;
    color: var(--azul-acopi);
    font-weight: 600;
    border-bottom: 3px solid;
    border-radius: 0;
}

.profile__details {
    margin: 16px auto;
    max-width: 1218px;
}

.profile__details__title {
    font-size: 1.25rem;
    font-weight: 600;
}

.profile__foto__content {
    flex: 1 0 30%;
    box-sizing: border-box;
    padding: 0;
}

.profile__foto__content .profile__foto_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(width < 1024px) {
    .profile__container {
        justify-content: center;
        margin-top: 6rem;
    }

    .profile__content__solitions {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media(width> 768px) {
    .profile__container {
        margin-top: 0;
    }

    .profile__name {
        text-align: start;
        margin-left: 201px;
    }
}

@media(width >=1024px) {
    .profile__container {
        flex-direction: row;
    }

    .profile__name {
        flex: 1 0 25%;
    }
}


.perfil-inactivo {
    position: absolute;
}


@media (max-width: 768px) {
    .camara-banner {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: aliceblue;
        border-radius: 50%;
    }
}

@media (min-width: 768px) {
    .camara-banner {
        position: absolute;
        top: 10px;
        right: 10px;
        background: aliceblue;
        border-radius: 50%;
    }
}


.boton-redes {
    position: absolute;
    top: -7px;
    right: -7px;
}


body {
    background-color: #f4f6f9;
}

.forum-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 15px;
    padding: 20px;
    transition: all 0.2s ease-in-out;
}

.forum-card:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.forum-title {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: bold;
}

.forum-meta {
    font-size: 0.9rem;
    color: #6c757d;
}

.btn-create {
    background-color: #007bff;
    color: white;
}

.btn-create:hover {
    background-color: #0056b3;
}

/* Estilos para foros */

/* Contenedor general */
/* .foro-container {
    max-width: 800px;
    margin: auto;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', sans-serif;
} */

/* Encabezado con botón */
.foro-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.foro-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #00395c;
}

.crear-foro-btn {
    background-color: #0076a8;
    color: white;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

.crear-foro-btn:hover {
    background-color: #005b87;
}

/* Tarjetas individuales */
.foro-card {
    background-color: #ffffff;
    border: 1px solid #d9e2ec;
    border-left: 4px solid #0076a8;
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s;
}

.foro-card:hover {
    transform: translateY(-3px);
}

.foro-titulo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00395c;
    margin-bottom: 0.4rem;
}

.foro-meta {
    font-size: 0.9rem;
    color: #6c757d;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
}

.foro-detalles {
    font-size: 0.9rem;
    color: #495057;
    margin-bottom: 0.8rem;
}

.foro-info-btn {
    display: inline-block;
    color: #0076a8;
    font-weight: 500;
    text-decoration: none;
}

.foro-info-btn:hover {
    text-decoration: underline;
}

/* Estilos solo para Blogs */


body {
    background-color: #f4f6f9;
}

.forum-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 15px;
    padding: 20px;
    transition: all 0.2s ease-in-out;
}

.forum-card:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.forum-title {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: bold;
}

.forum-meta {
    font-size: 0.9rem;
    color: #6c757d;
}

.btn-create {
    background-color: #007bff;
    color: white;
}

.btn-create:hover {
    background-color: #0056b3;
}


.caja-blog {
    width: 20rem;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease-out;
}

/*  secction card of edit delete and report of posts blogs forums */
.tooltip-social {
    color: #2d3748;
    font-size: 14px;
    max-width: 240px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    position: absolute;
    z-index: 50;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    min-width: 180px;
    animation: fadeIn 0.2s ease-in-out;
}

.tooltip-social .list-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.tooltip-social .card_option_btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
    color: #1a202c;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.tooltip-social .card_option_btn:hover {
    background-color: #f1f5f9;
}

.tooltip-social .card_option_btn i {
    width: 16px;
    text-align: center;
}





/* POST  */


.post__time {
    font-size: .8rem;
}

.post__comments__count {
    color: var(--600);
    cursor: pointer;
}

.post__comments__count:hover {
    text-decoration: underline;
}

.post__buttons {
    margin-top: 1rem;
    display: flex;
    width: 100%;
    justify-content: space-around;
    padding: .5rem;
    border-bottom: 1px solid var(--400);
    border-top: 1px solid var(--400);
}

.post__btn {
    color: var(--600);
    display: flex;
    gap: .5rem;
    align-items: center;
    margin: 0;
    font-weight: 500 !important;
}

.post__btn:hover {
    background-color: var(--200);
}

.post__btn:focus {
    box-shadow: none;
}

.post__reactions {
    display: flex;
    justify-content: end;
    margin-top: .5rem;
    padding: 0 .5rem;
}

.post__container.fullscreen {
    display: grid;
    grid-template-columns: 3fr 1fr;
    overflow-y: hidden;
}


.post__container.fullscreen .content__scrolleable {
    max-height: 100vh;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    will-change: transform, scroll-position;
}

.post__img img {
    width: 100%;
}

.post__container.fullscreen .content__img {
    background-color: black;
    display: flex;
    height: 100vh;
    padding: 0 !important;
    width: 100%;
}

.post__container.fullscreen .post__img {
    margin-top: 0 !important;
    display: flex;
    height: 100%;
    flex-grow: 1;
}

.post__container.fullscreen .post__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.btn__gallery {
    background-color: rgba(255, 255, 255, 0.616);
    border-radius: 50%;
    color: var(--600);
}

.btn__gallery:hover {
    background-color: white;
}

@media (width <= 768px) {
    .post__container.fullscreen {
        display: flex;
        flex-direction: column;
    }

    .post__container.fullscreen .content__img {
        max-height: 40vh;
    }
    .post__container.fullscreen .content__scrolleable {
        max-height: 60vh;
    }
}

.reactions button {
    width: 60px;
}

.reaction__icon {
    width: 30px;
}

.reaction__icon-small {
    width: 18px;
}

.heart {
    background-color: red;
    border-radius: 50%;
    padding: 5px;
}


/* Post - img */



@media (width >= 768px) {
    .logo-post {
        width:400px !important;
        height:400px;
        transform: translateY(-35%);
    }
}

@media (width <= 768px) {
    .logo-post {
        width:200px !important;
        height:200px;
        margin: -101px auto  20px !important;
    }
}


/* CAR EMPRESA  */

 /* Card principal mejorada */
.card-empresa {
    width: 310px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Contenedor del logo mejorado */
.logo-container {
    padding: 25px 25px 20px 25px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    position: relative;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    pointer-events: none;
}

/* Logo responsive */
.logo-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

/* Footer de la card */
.card-empresa-footer {
    padding: 10px;
    background: white;
}

/* Botones de acción mejorados */
.action-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 15px; */
}

/* Botón Ver mejorado */
.view-profile {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    letter-spacing: 0.5px;
}

.view-profile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

/* Información de contacto mejorada */
/* .contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
} */

/* Teléfono con WhatsApp mejorado */
.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
    background: rgba(37, 211, 102, 0.08);
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.phone:hover {
    background: rgba(37, 211, 102, 0.12);
    color: #475569;
}

/* Icono de WhatsApp mejorado */
.whatsapp-icon {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #25D366 0%, #20b358 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.3);
}

/* Iconos sociales mejorados */
.social-icons {
    display: flex;
    gap: 6px;
}

.social-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover {
    transform: translateY(-2px) scale(1.05);
}

/* Iconos específicos */
.heart-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.plus-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Hover effect para toda la card */
.card-empresa:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.card-empresa:hover .logo-img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 480px) {
    .card-empresa {
        width: 100%;
        max-width: 290px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

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

/* Utilidades de Bootstrap que podrías necesitar */
.m-3 {
    margin: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}


/* Encabezado empresa */

.stand-header {
    background-color: #f4f4f4;
    /* Fondo neutro gris claro */
    color: #333;
    /* Texto oscuro para contraste */
    border-radius: 8px 8px 0 0;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.stand-header h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #222;
}

.stand-header small {
    font-size: 0.85rem;
    color: #666;
}

.stand-header .stand-logo {
    /* width: 48px; */
    height: 48px;
    object-fit: contain;
    margin-right: 15px;
}

.stand-header .stand-metrics {
    font-size: 0.9rem;
    color: #444;
}

.stand-header .stand-metrics strong {
    font-weight: 600;
    color: #000;
}

.stand-header .btn-info-empresa {
    background-color: #007bff;
    color: #fff;
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 5px;
    border: none;
    transition: background-color 0.3s ease;
}

.stand-header .btn-info-empresa:hover {
    background-color: #0056b3;
}

.stand-header .stand-social-icons a {
    color: #444;
    font-size: 1.1rem;
    margin-left: 12px;
    transition: color 0.2s ease;
}

.stand-header .stand-social-icons a:hover {
    color: #007bff;
}


/* Header optimizado para estar encima del stand */
.company-header {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    padding: 10px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    /* overflow: hidden; */
    /* backdrop-filter: blur(8px); */
    margin-bottom: 8px;
}

/* Barra de estado superior */
.header-status-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #10b981 50%, #f59e0b 100%);
    border-radius: 16px 16px 0 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Sección izquierda: Logo + Info */
.company-identity {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.company-info {
    flex: 1;
}

.company-name {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
    letter-spacing: -0.025em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-description {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 8px;
}

/* Métricas en línea horizontal */
.company-metrics {
    display: flex;
    align-items: center;
    gap: 16px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
}


.metric-item:hover {
    background: rgba(59, 130, 246, 0.12);
    transform: translateY(-1px);
}

.allay-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(59, 246, 137, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.allay-item:hover{
    background: rgba(87, 250, 155, 0.08);
    transform: translateY(-1px);
}

.metric-icon {
    width: 14px;
    height: 14px;
    color: #3b82f6;
}

.metric-text {
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
}

.rating-container {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-radius: 8px;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.rating-container:hover{
    background: rgba(248, 195, 61, 0.2);
    transform: translateY(-1px);
}

.rating-stars {
    color: #fbbf24;
    font-size: 12px;
    margin-right: 2px;
}

.rating-text {
    font-weight: 700;
    color: #1e293b;
    font-size: 12px;
}

.rating-total {
    font-size: 11px;
    color: #64748b;
}

/* Sección derecha: Acciones principales */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Redes sociales compactas */
.social-links {
    display: flex;
    gap: 6px;
    /* padding: 8px; */
    background: rgba(248, 250, 252, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    transform: translateY(-2px) scale(1.05);
}

.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.25);
}

.instagram {
    background: linear-gradient(135deg, #e4405f 0%, #fd5949 50%, #fccc63 100%);
    box-shadow: 0 4px 12px rgba(228, 64, 95, 0.25);
}

/* Botones de acción principales */
.primary-actions {
    display: flex;
    gap: 8px;
}

.btn-encabezado {
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-encabezado::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-encabezado:hover::before {
    left: 100%;
}

.btn-encabezado-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.btn-encabezado-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.btn-encabezado-secondary {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(100, 116, 139, 0.3);
}

.btn-encabezado-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(100, 116, 139, 0.4);
}

.btn-encabezado-third{
    background: linear-gradient(135deg, rgb(6, 136, 49) 0%, #0c9c0c 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(54, 238, 124, 0.3);
}

.btn-encabezado-third:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(100, 116, 139, 0.4);
}

.star-flex {
    display: flex;
    margin-bottom: 0rem
}


/* Responsive optimizado */
@media (max-width: 768px) {
    .company-header {
        padding: 18px;
    }

    .header-content {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .company-identity {
        justify-content: center;
        text-align: center;
    }

    .company-metrics {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .header-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .primary-actions {
        width: 100%;
        justify-content: center;
    }

    .btn-encabezado {
        flex: 1;
        justify-content: center;
        min-width: 120px;
    }
}

/* Animación de entrada */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.company-header {
    animation: slideInDown 0.6s ease-out;
}

.truncate-text {
    display: inline-block;
    max-width: 550px;
    /* O el valor deseado */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncate-text-file {
    display: inline-block;
    max-width: 155px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*  style navedadores en ruedas */


