html,
body {
    position: relative;
    height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    background: var(--maia-navy);
    color: var(--color-accent-soft);
    line-height: 1.5;
    font-family: -apple-system, system-ui, var(--font-heading);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100vw;
}

main {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

img {
    max-width: 1000% !important;
    display: block;
}

#logo-central {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 75%;
    max-height: 80%;
    width: 250px;
    height: 400px;
    background-color: var(--color-bg);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenido-logo {
    width: 85%;
    height: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-top: 6px solid var(--color-primary);
    border-bottom: 6px solid var(--color-primary);
}

.titulo-proyecto {
    font-family: -apple-system, system-ui, var(--font-heading);
    letter-spacing: 2px;
    color: var(--color-primary);
    font-size: 1.4rem;
    padding: 0.8rem;
    text-align: center;
}

.contenido-logo>img {
    width: 80%;
    aspect-ratio: 1 / 1;
    object-fit: contain;

}




.swiper {
    width: 100%;
    height: 100%;
    --swiper-theme-color: #fff;
}

.demo-slide-title {
    font-weight: bold;
    font-size: 58px;
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 10%;
    z-index: 100;
    transform: translate3d(0, 0, 0);
}

.back-image {
    object-fit: contain;
    background-size: cover;
}

#app {
    width: 100% !important;
    min-height: calc(var(--app-vh, 1vh) * 100) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fondo-color {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-primary);
    opacity: 0.4;
}

.login-card {
    background-color: #ffffffc0;
}

@media (max-width: 767.98px) {
    main {
        min-height: calc(var(--app-vh, 1vh) * 100);
    }
}