﻿:root {
    --brand: #8f1b1b;
    --brand-dark: #6f1515;
    --text-muted-2: rgba(255, 255, 255, .86);
}

/* Reset base */
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: #fff;
}

/* Painéis */
.left-panel,
.right-panel {
    min-height: 100dvh;
}

/* ESQUERDA */
.left-panel {
    color: #fff;
    position: relative;
    padding: clamp(18px, 3vw, 42px);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, .08) 0 0), linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .30) 100%), repeating-linear-gradient(135deg, rgba(255, 255, 255, .06) 0 18px, rgba(255, 255, 255, 0) 18px 48px), linear-gradient(135deg, #6f1515 0%, #a02020 60%, #7a1616 100%);
}

.brand-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: clamp(18px, 3vw, 44px);
}

.logo-pill {
    width: 110px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.logo-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.brand-title {
    line-height: 1.1;
}

    .brand-title .sigla {
        font-weight: 900;
        font-size: 1.55rem;
    }

    .brand-title .sub {
        font-size: .78rem;
        opacity: .92;
        text-transform: uppercase;
    }

.welcome {
    margin-top: 10px;
    font-size: clamp(1.55rem, 2.4vw, 2.3rem);
    font-weight: 300;
    line-height: 1.05;
    max-width: 42rem;
}

    .welcome strong {
        display: block;
        font-weight: 900;
    }

.left-desc {
    margin-top: 16px;
    max-width: 42rem;
    color: var(--text-muted-2);
    font-size: clamp(.98rem, 1.15vw, 1.05rem);
    line-height: 1.45;
}

    .left-desc ul {
        padding-left: 18px;
    }

    .left-desc li {
        margin-bottom: 16px;
        line-height: 1.7;
    }

.lgpd-bar {
    position: absolute;
    left: clamp(18px, 3vw, 42px);
    right: clamp(18px, 3vw, 42px);
    bottom: clamp(18px, 3vw, 34px);
    padding: 10px 14px;
    background: rgba(0, 0, 0, .28);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lgpd-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    font-weight: 700;
}

/* DIREITA */
.right-panel {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(18px, 3vw, 52px);
}

.right-card {
    width: min(520px, 100%);
    text-align: center;
    border: 0;
}

.hero-icon {
    width: 120px;
    height: 120px;
    border-radius: 26px;
    margin: 0 auto 18px;
    background: #f7f7f8;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
}

/* Botões */
.btn-brand {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    box-shadow: 0 10px 22px rgba(143, 27, 27, .22);
    padding: 14px 16px;
    font-weight: 800;
    border-radius: 10px;
}

    .btn-brand:hover {
        background: var(--brand-dark);
        border-color: var(--brand-dark);
        color: #fff;
    }

    .btn-brand i {
        color: #fff;
    }

.btn-outline-brand {
    border-color: rgba(143, 27, 27, .55);
    color: var(--brand);
    padding: 14px 16px;
    font-weight: 800;
    border-radius: 10px;
}

    .btn-outline-brand:hover {
        background: rgba(143, 27, 27, .06);
        border-color: rgba(143, 27, 27, .8);
        color: var(--brand-dark);
    }

.small-link {
    display: inline-block;
    margin-top: 14px;
    color: #777;
    text-decoration: none;
    font-size: .95rem;
}

    .small-link:hover {
        text-decoration: underline;
    }

/* MOBILE */
@media (max-width: 991.98px) {
    .left-panel,
    .right-panel {
        min-height: auto;
    }

    .lgpd-bar {
        position: static;
        margin-top: 18px;
    }
}