/* ===== Reset básico ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Base ===== */
body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background-color: #f5f7fa;
    color: #2c2c2c;
    line-height: 1.7;
}

/* ===== Container ===== */
.terms-container {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* ===== Header ===== */
.terms-header {
    text-align: center;
    margin-bottom: 40px;
}

.terms-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1d2103;
}

.terms-subtitle {
    font-size: 14px;
    color: #777;
    margin-top: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== Conteúdo ===== */
.terms-content article {
    margin-bottom: 28px;
}

.terms-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1d2103;
}

.terms-content p {
    font-size: 15px;
    color: #444;
}

.terms-content ul {
    padding-left: 20px;
}

.terms-content li {
    font-size: 15px;
    color: #444;
    margin-bottom: 6px;
}

/* ===== Destaque de alerta ===== */
.terms-alert {
    margin-top: 12px;
    padding: 14px 16px;
    background-color: #fff8e1;
    border-left: 4px solid #f0b429;
    border-radius: 6px;
    font-size: 14px;
}

/* ===== Footer ===== */
.terms-footer {
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: #888;
}

/* ===== Responsivo ===== */
@media (max-width: 600px) {
    .terms-container {
        padding: 30px 20px;
        margin: 20px;
    }

    .terms-header h1 {
        font-size: 26px;
    }

    .terms-content h2 {
        font-size: 18px;
    }
}
