.acesso-page .acesso-main {
    max-width: 560px;
    margin: 0 auto;
    padding: clamp(2rem, 6vh, 3.5rem) 1.25rem 3rem;
    text-align: center;
}

.acesso-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 7vw, 3.25rem);
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 1rem;
}

.acesso-lead {
    color: var(--cream-dim);
    line-height: 1.55;
    margin: 0 auto 1.75rem;
    max-width: 28rem;
}

.acesso-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem 1.15rem 1.35rem;
    margin-bottom: 1.75rem;
}

.qr-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: #ffffff;
    border-radius: 12px;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.qr-frame img,
#site-qr-img {
    display: block;
    width: min(260px, 72vw);
    height: auto;
    aspect-ratio: 1 / 1;
    background: #ffffff;
}

.copy-label {
    display: block;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.copy-hint {
    text-align: left;
    font-size: 0.78rem;
    color: var(--cream-dim);
    margin: -0.55rem 0 1.05rem;
}

.copy-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
}

.copy-row input {
    flex: 1;
    min-width: 0;
    padding: 0.8rem 0.9rem;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.28);
    color: var(--cream);
    font-size: 0.9rem;
    font-family: inherit;
    user-select: all;
    -webkit-user-select: all;
    cursor: text;
}

.copy-row input:focus {
    outline: none;
    border-color: var(--gold);
}

.btn-copy {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 48px;
    padding: 0 1rem;
    border: none;
    border-radius: 4px;
    background: var(--gold);
    color: #1c1210;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
}

.btn-copy.copied {
    background: #3d8b6a;
    color: #fff;
}

.acesso-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.acesso-actions .btn-ir,
.acesso-actions .btn-entrar {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    cursor: pointer;
    border-radius: 4px;
}

.acesso-steps {
    text-align: left;
    color: var(--cream-dim);
    line-height: 1.55;
    padding-left: 1.2rem;
    font-size: 0.92rem;
}

.acesso-steps li { margin-bottom: 0.75rem; }
.acesso-steps strong { color: var(--cream); }

.acesso-home-wrap {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    animation: none;
    transition: opacity 0.45s ease, transform 0.45s ease, max-height 0.45s ease, margin 0.45s ease, padding 0.45s ease;
}

.acesso-home-wrap.is-visible {
    max-height: 520px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    padding-bottom: 3rem;
}

.acesso-home {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.15rem;
    align-items: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.15rem;
    margin: 0 0 2rem;
    text-align: left;
}

.acesso-home .qr-frame {
    margin: 0;
    padding: 10px;
}

.acesso-home .qr-frame img {
    width: 132px;
    max-width: 132px;
    height: auto;
    aspect-ratio: 1 / 1;
}

.acesso-home .copy-row {
    margin-bottom: 0.75rem;
}

.acesso-home .copy-row input {
    font-size: 0.8rem;
}

.acesso-home h2 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.acesso-home p {
    color: var(--cream-dim);
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
}

.acesso-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.acesso-home-actions .btn-ir,
.acesso-home-actions .btn-entrar {
    min-height: 44px;
    cursor: pointer;
}

@media (max-width: 640px) {
    .acesso-home {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .copy-row {
        flex-direction: column;
    }

    .btn-copy { width: 100%; }

    .acesso-home-actions {
        justify-content: center;
        width: 100%;
    }

    .acesso-home-actions .btn-ir,
    .acesso-home-actions .btn-entrar {
        width: 100%;
        justify-content: center;
    }
}
