:root {
    --brand: #9D162E;
    --brand-dark: #7a1024;
    --bg: #f8fafc;
    --border: #e2e8f0;
}

body, html {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    background: var(--bg);
    color: #1e293b;
}

.tw-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1.5rem;
    background: var(--brand);
    color: white;
}

.tw-header-title {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.tw-main {
    min-height: calc(100vh - 4rem - 5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.tw-proximamente {
    max-width: 34rem;
    text-align: center;
}

.tw-proximamente h1 {
    color: var(--brand);
    font-size: 1.6rem;
    margin: 0 0 1rem;
}

.tw-proximamente p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.tw-footer {
    text-align: center;
    padding: 0.6rem;
    font-size: 0.7rem;
    color: #94a3b8;
    border-top: 1px solid var(--border);
    background: white;
}

.tw-footer p {
    margin: 0.1rem 0;
}
