@import '_content/Investment.Components/Investment.Components.a3taoarpz7.bundle.scp.css';

/* /Components/Common/NavBarMenuComponent.razor.rz.scp.css */
.navbar-custom[b-i4ovpx3b1c] {
    background: var(--bs-emphasis-color);
    padding-top: 40px;
    padding-bottom: 0px;
}

.navbar-custom .navbar-brand[b-i4ovpx3b1c],
.navbar-custom .nav-link[b-i4ovpx3b1c] {
    color: white;
}

.navbar-custom .nav-link:hover[b-i4ovpx3b1c] {
    color: var(--portal-gold-color);
}

/* Estilo para agregar la línea roja bajo los enlaces al pasar el cursor */
.navbar-custom .nav-link[b-i4ovpx3b1c] {
    position: relative;
}

.navbar-custom .nav-link[b-i4ovpx3b1c]::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: var(--portal-gold-color);
    /* Color dorado */
    transition: width 0.3s ease, right 0.3s ease;
}

.navbar-custom .nav-link:hover[b-i4ovpx3b1c]::after {
    width: 100%;
    right: 0;
}

.navbar-custom .dropdown-toggle[b-i4ovpx3b1c]::after {
    display: none;
}

.navbar-custom .navbar-toggler[b-i4ovpx3b1c] {
    float: left;
    border-color: rgba(0, 123, 255, 0.1);
}

.navbar-custom .navbar-toggler-icon[b-i4ovpx3b1c] {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba%28255, 255, 255, 1%29" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}

.navbar .navbar-nav>li>a[b-i4ovpx3b1c],
.navbar a.navbar-brand.navbar-link[b-i4ovpx3b1c] {
    line-height: 20px !important;
}

.img_logo[b-i4ovpx3b1c] {
    width: 250px;
}

.navbar_collapse_content[b-i4ovpx3b1c] {
    background-color: transparent;
    z-index: 99999;
}

/*== MEDIA QUERYS ==*/
/* Mobile */
@media only screen and (max-width: 600px) {

    .img_logo[b-i4ovpx3b1c] {
        width: 80%;
    }

    .navbar_collapse_content[b-i4ovpx3b1c] {
        background-color: #293277;
        z-index: 99999;
    }

    .navbar-custom[b-i4ovpx3b1c] {
        padding-top: 10px;
    }

    .navbar-custom .navbar-toggler[b-i4ovpx3b1c] {
        display: none;
    }

    #navbarNavDropdown[b-i4ovpx3b1c] {
        display: none;
    }
}

@media screen and (min-width: 601px) and (max-width:850px) {
    .navbar-custom[b-i4ovpx3b1c] {
        padding-top: 5px;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-b118sl9a1c],
.components-reconnect-repeated-attempt-visible[b-b118sl9a1c],
.components-reconnect-failed-visible[b-b118sl9a1c],
.components-pause-visible[b-b118sl9a1c],
.components-resume-failed-visible[b-b118sl9a1c],
.components-rejoining-animation[b-b118sl9a1c] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-b118sl9a1c],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-b118sl9a1c],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-b118sl9a1c],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-b118sl9a1c],
#components-reconnect-modal.components-reconnect-retrying[b-b118sl9a1c],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-b118sl9a1c],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-b118sl9a1c],
#components-reconnect-modal.components-reconnect-failed[b-b118sl9a1c],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-b118sl9a1c] {
    display: block;
}


#components-reconnect-modal[b-b118sl9a1c] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-b118sl9a1c 0.5s both;

    &[open] {
        animation: components-reconnect-modal-slideUp-b-b118sl9a1c 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-b118sl9a1c 0.5s ease-in-out 0.3s;
        animation-fill-mode: both;
    }

}

#components-reconnect-modal[b-b118sl9a1c]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-b118sl9a1c 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-b118sl9a1c {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-b118sl9a1c {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-b118sl9a1c {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-b118sl9a1c] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-b118sl9a1c] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-b118sl9a1c] {
    border: 0;
    background-color: #03173d;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

#components-reconnect-modal button:hover[b-b118sl9a1c] {
    background-color: #052a6e;
}

#components-reconnect-modal button:active[b-b118sl9a1c] {
    background-color: #03173d;
}

.components-rejoining-animation[b-b118sl9a1c] {
    position: relative;
    width: 80px;
    height: 80px;
}

.components-rejoining-animation div[b-b118sl9a1c] {
    position: absolute;
    border: 3px solid #03173d;
    opacity: 1;
    border-radius: 50%;
    animation: components-rejoining-animation-b-b118sl9a1c 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.components-rejoining-animation div:nth-child(2)[b-b118sl9a1c] {
    animation-delay: -0.5s;
}

@keyframes components-rejoining-animation-b-b118sl9a1c {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
*[b-qwd9270orr] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-title[b-qwd9270orr] {
    font-family: 'Georgia', 'Montserrat', 'Roboto', 'Helvetica New', 'Helvetica';
    margin: 4.5rem auto 3.5rem;
    text-align: center;
    font-weight: 600;
    font-size: xx-large;
    color: var(--kendo-color-primary, #293277);
}

.main-title-warning[b-qwd9270orr] {
    font-family: 'Georgia', 'Montserrat', 'Roboto', 'Helvetica New', 'Helvetica';
    margin: 4.5rem auto 3.5rem;
    text-align: center;
    font-weight: 600;
    font-size: xx-large;
    color: var(--portal-gold-color, #ad8411) !important;
}

[b-qwd9270orr] .home-carousel {
    width: 100%;
    position: relative;
}

#app-title[b-qwd9270orr] {
    color: rgba(255, 255, 255, .8);
    margin-top: 20%;
    left: 0;
    right: 0;
    text-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
    width: 100%;
    font-family: 'Georgia';
    white-space: normal;

    /* Word wrapping */
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;

    /* Centered Layout */
    text-align: center;
    padding: 0 0.75rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.carousel-section[b-qwd9270orr] {
    position: relative;
    width: 100%;
}

.carousel-background[b-qwd9270orr] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-image[b-qwd9270orr] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay[b-qwd9270orr] {
    position: absolute;
    vertical-align: middle;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.4) 100%);
}

.carousel-section[b-qwd9270orr] {
    position: relative;
    width: 100%;
}

.carousel-item[b-qwd9270orr] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.carousel-overlay .menu-top-settings[b-qwd9270orr] {
    position: absolute;
    top: 1.0rem;
    right: 1.2rem;
    z-index: 10;
    margin: 0.5rem;
}

.carousel-overlay .menu-top[b-qwd9270orr] {
    position: absolute;
    top: 2rem;
    left: 1.6rem;
    z-index: 9;
    color: rgba(255, 255, 255, .8);
    margin: 0;
    /* font-family: 'Georgia'; */
    font-size: medium;
    text-align: center;
}

.carousel-content[b-qwd9270orr] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.carousel-content .message[b-qwd9270orr] {
    font-weight: 400;
    color: rgba(255, 255, 255, .8);
    font-family: 'Poppins';
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    white-space: normal;

    /* Responsive size with clamp */
    font-size: clamp(0.9rem, 1vw, 1.5rem);
    line-height: clamp(1.2, 2.5vw, 1.6);

    /* Word wrapping */
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;

    /* Centered Layout */
    text-align: center;
    padding: 0 0.5rem;
    width: auto;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.search-component[b-qwd9270orr] {
    text-align: center;
    padding: 0 0.75rem;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

[b-qwd9270orr] .text-white {
    color: var(--portal-gold-color) !important;
}

.more-info[b-qwd9270orr] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.more-info-btn[b-qwd9270orr] {
    display: inline-block;
    padding: 12px 30px;
    background: var(--portal-gold-color);
    color: var(--kendo-color-primary);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.more-info-btn:hover[b-qwd9270orr] {
    transform: translateY(-3px);
    background: var(--portal-gold-color);
    color: #FFF;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

#areas[b-qwd9270orr],
#frecuent[b-qwd9270orr] {
    margin-bottom: 100px;
}

#size[b-qwd9270orr] {
    margin-bottom: 50px;
}

#sectors[b-qwd9270orr],
#statistics[b-qwd9270orr] {
    background-color: #F8F9FA;
    padding-top: 20px;
}

/*== MEDIA QUERYS ==*/

/* Extra small devices (portrait phones, less or equal than 375px) */
@media (max-width: 375px) {

    .carousel-content[b-qwd9270orr] {
        padding: 0.5rem 1rem;
    }

    .carousel-content .message[b-qwd9270orr] {
        font-size: clamp(0.7rem, 3.8vw, 0.95rem);
        padding: 0 0.25rem;
        line-height: 1.2;
    }
}

/* Mobile */
@media (max-width: 600px) {

    /* Reposicionar el GridLayout para centrar verticalmente el search-component */
    .carousel-overlay[b-qwd9270orr]  .k-grid-layout {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    /* Search component centrado verticalmente */
    .search-component[b-qwd9270orr] {
        width: 100%;
        max-width: 100%;
        padding: 0 3.5rem;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
    }

    /* Contenido de carrusel (texto informativo) debajo del search */
    .carousel-content[b-qwd9270orr] {
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 2;
    }

    .carousel-content .message[b-qwd9270orr] {
        font-size: clamp(0.85rem, 3.8vw, 0.95rem);
        padding: 0 0.5rem;
        max-width: 100%;
        line-height: 1.3;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    /* Botón en la parte inferior con 5% de padding y estilo transparente */
    .more-info[b-qwd9270orr] {
        position: absolute;
        bottom: 5vh;
        left: 50%;
        transform: translateX(-50%);
        z-index: 4;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-bottom: 5vh;
    }

    /* Estilo del botón: transparente con borde rojo */
    .more-info[b-qwd9270orr]  .k-button {
        background-color: transparent !important;
        border: 2px solid #fd4239 !important;
        color: white !important;
    }

    .more-info[b-qwd9270orr]  .k-button:hover {
        background-color: rgba(253, 66, 57, 0.1) !important;
        border-color: #fd4239 !important;
    }

    /* Ocultar el título en móvil */
    #app-title[b-qwd9270orr] {
        display: none;
    }
}

/* Tablet */
@media (min-width: 601px) and (max-width: 1000px) {
    .carousel-item[b-qwd9270orr] {
        padding: 15px;
    }

    .carousel-content .message[b-qwd9270orr] {
        font-size: clamp(0.8rem, 1.8vw, 1.5rem);
        max-width: 95%;
    }

    .more-info[b-qwd9270orr] {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }
}

/* Large desktops */
@media (min-width: 1201px) {
    .carousel-content .message[b-qwd9270orr] {
        font-size: clamp(1.2rem, 1.5vw, 1.8rem);
        max-width: 70%;
        line-height: 1.6;
    }

    .more-info[b-qwd9270orr] {
        margin-top: 40px;
    }
}
