/* Variables básicas inspiradas en efact-app-theme */
:root {
    --efact-primary: #09aeb8;
    --efact-heading-color: #3a3a3a;
    --efact-body-color: #4b4f58;
}

/* Reset mínimo */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body.efact-go-body {
    font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: var(--efact-body-color);
    display: flex;
    flex-direction: column;
}

/* Contenedor principal */
.efact-go-landing {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Centro absoluto del logo + texto */
.efact-go-landing__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
}

.efact-go-landing__logo {
    max-width: 260px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

.efact-go-landing__text {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.8rem;
    line-height: 1.4;
    color: #3a3a3a;
}

/* Footer igual que en efact-app-theme */
.efact-footer {
    background-color: var(--efact-primary);
    text-align: center;
    margin-top: auto;
}

.efact-footer-content {
    padding: 1rem;
    color: #ffffff;
    font-weight: 600;
}

/* Ajustes responsive básicos */
@media (max-width: 480px) {
    .efact-go-landing__text {
        font-size: 1.4rem;
    }

    .efact-go-landing__logo {
        max-width: 200px;
    }
}


