/* ================================================
   LAYOUT.CSS – Welcome Page & Estruturas de Layout
   ================================================ */

/* ---- Welcome Screen ---- */
#screen-welcome {
    background:
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 65%),
        linear-gradient(180deg, #141414 0%, #0e0e0e 100%);
}

.welcome-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 52px 28px 36px;
    text-align: center;
}

/* ---- Logo ---- */
.logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeUp 0.7s ease both;
}

.logo-icon {
    font-size: 2rem;
    color: var(--gold);
    animation: pulse-gold 3s ease infinite;
    line-height: 1;
}

@keyframes pulse-gold {
    0%, 100% { text-shadow: 0 0 8px rgba(201,168,76,0.4); }
    50%       { text-shadow: 0 0 24px rgba(201,168,76,0.9); }
}

.brand-title {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 0.12em;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
}

/* ---- Decorative line under logo ---- */
.logo-area::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin-top: 6px;
}

/* ---- Info Card ---- */
.info-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    width: 100%;
    animation: fadeUp 0.7s 0.15s ease both;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.83rem;
    color: var(--text-secondary);
    padding: 7px 0;
}

.info-item + .info-item {
    border-top: 1px solid var(--border);
}

.info-icon {
    color: var(--gold);
    font-size: 0.6rem;
    flex-shrink: 0;
}

/* ---- Welcome btn area ---- */
#screen-welcome .btn-main {
    animation: fadeUp 0.7s 0.28s ease both;
}

/* ---- Animações gerais ---- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0);    }
}

/* ---- Success screen bg ---- */
#screen-success {
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(82,196,122,0.06) 0%, transparent 60%),
        var(--bg-app);
}