        :root {
            --primary-color: #e81e29;
            --secundary-color: #444444;
            --text-dark: #1e293b;
            --text-muted: #64748b;
            --bg-light: #f8fafc;
            --card-bg: #ffffff;
            --gray-light: #e9ecef;
            --border-color: #e2e8f0;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "Montserrat";
            line-height: 1.6;
            color: var(--secundary-color);
            background-color: var(--bg-light);
        }

        .content {
            padding: 32px 24px;
        }

        .section {
            margin-bottom: 28px;
        }

        .title-terms {
            color: var(--primary-color);
        }

        .section-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            border-bottom: 2px solid var(--bg-light);
            padding-bottom: 6px;
        }

        .section-title span {
            background-color: var(--primary-color);
            color: #fff;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            margin-right: 10px;
        }

        p {
            margin-bottom: 12px;
            color: var(--text-dark);
            font-size: 0.95rem;
        }

        ul, ol {
            margin-left: 20px;
            margin-bottom: 12px;
        }

        li {
            margin-bottom: 6px;
            font-size: 0.95rem;
        }

        .highlight-box {
            background-color: var(--gray-light);
            border-left: 4px solid var(--secondary-color);
            padding: 16px;
            border-radius: 4px;
            margin: 16px 0;
        }

        .highlight-box p {
            margin-bottom: 6px;
        }

        .highlight-box p:last-child {
            margin-bottom: 0;
        }

        .badge {
            display: inline-block;
            background-color: #fef2f2;
            color: var(--accent-color);
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.85rem;
            border: 1px solid #fecaca;
        }

        @media (max-width: 600px) {
            header h1 {
                font-size: 1.4rem;
            }
            .content {
                padding: 20px 16px;
            }

            ul, ol {
                margin-left: 0px;
                margin-bottom: 12px;
            }
        }