/* Tapume com tema advocacia - cores sóbrias e layout centralizado */
:root {
    --primary: #034188;
    --primary-dark: #022a5a;
    --primary-light: #0559b8;
    --secondary: #6c757d;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --light: #f8f9fa;
    --dark: #343a40;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.tapume {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--light);
    padding: 2rem;
    text-align: center;
    background-image:
        linear-gradient(135deg, rgba(2, 42, 90, .9) 0%, rgba(3, 65, 136, .9) 100%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0 12px, transparent 12px 24px),
        url("../assets/bg.png");
    background-size: auto, auto, cover;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center center, center center, center center;
}

.content {
    max-width: 820px;
    padding: 2rem;
    border-radius: 10px
}

.logo {
    max-width: 320px;
    height: auto;
    margin: 0 auto 1.25rem;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .6));
}

.status {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    margin: 0 0 0.5rem;
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--light);
}

.subtitle {
    opacity: 0.9;
    margin-bottom: 1rem
}

.contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center
}

.btn {
    display: inline-block;
    padding: 0.9rem 1.2rem;
    background: var(--primary);
    color: var(--light);
    border-radius: 9px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(2, 42, 90, 0.35);
    transition: transform .15s ease, background-color .15s ease;
}

.btn:hover {
    transform: translateY(-3px);
    background: var(--primary-light);
}

.phone {
    color: var(--light);
    text-decoration: none;
    font-weight: 700;
    margin-top: 6px;
}

.contact {
    color: var(--light);
    text-decoration: none;
    font-weight: 700;
    margin-top: 6px;
    max-width: 480px;
    text-align: center;
    word-break: break-word;
}

footer.legality {
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    font-size: 0.85rem
}


.content {
    position: relative;
    z-index: 1
}

@media (max-width:520px) {
    .logo {
        max-width: 220px;
    }

    .status {
        font-size: 1.4rem;
    }

    .btn {
        padding: 0.8rem 1rem;
    }
}