:root {
    --lt-dark: #1c1c1c;
    --lt-gold: #c5a073;
    --lt-bg: #faf3ea;
    --lt-muted: #6b6459;
    --lt-border: #e8e0d3;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--lt-bg);
    color: var(--lt-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
    position: relative;
    overflow-x: hidden;
}

.lt-bg-seta {
    position: absolute;
    top: -140px;
    left: -160px;
    width: 480px;
    height: 480px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}
.lt-bg-seta svg { width: 100%; height: 100%; fill: #f0e2cc; }

.lt-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.lt-logo { height: 46px; margin-bottom: 18px; }

.lt-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--lt-dark);
    margin: 0 0 36px;
}

.lt-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lt-link {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid var(--lt-border);
    border-radius: 12px;
    padding: 16px 18px;
    text-decoration: none;
    color: var(--lt-dark);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.lt-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(28,28,28,0.10);
    border-color: var(--lt-gold);
}

.lt-link-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(197,160,115,0.14);
    color: var(--lt-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lt-link-texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 1px;
    min-width: 0;
}

.lt-link-texto strong { font-size: 14px; font-weight: 700; }
.lt-link-texto span {
    font-size: 12px;
    color: var(--lt-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lt-link-seta {
    flex-shrink: 0;
    color: var(--lt-gold);
    opacity: 0.7;
}

.lt-footer {
    margin-top: 40px;
    font-size: 11px;
    color: var(--lt-muted);
}

@media (max-width: 420px) {
    .lt-tagline { font-size: 15px; }
    .lt-link { padding: 14px; }
}
