        .area-page {
            padding-top: calc(var(--header-height) + 20px);
            min-height: 70vh;
            background: var(--background);
        }

        .area-page-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .area-page-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.75rem;
        }

        .area-page-icon i {
            font-size: 1.5rem;
            color: var(--text-dark);
        }

        .area-page-header h1 {
            font-size: 1.8rem;
            color: var(--text-dark);
            margin-bottom: 0.25rem;
        }

        .area-page-subtitle {
            font-size: 1rem;
            color: var(--text-light);
        }

        /* Seção Teste Você Mesmo */
        .try-demo-section {
            margin-top: 1rem;
            padding: 2rem;
            background: var(--background-alt);
            border-radius: 16px;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .try-demo-section h2 {
            font-size: 1.6rem;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
            text-align: center;
        }

        .try-demo-description {
            text-align: center;
            color: var(--text-light);
            max-width: 900px;
            margin: 0 auto 1.5rem;
            line-height: 1.4;
            font-size: 0.88rem;
        }

        .try-demo-container {
            max-width: 100%;
            margin: 0 auto;
        }

        /* Seletor de Snippet */
        .snippet-selector {
            margin-bottom: 1rem;
        }

        .snippet-instruction {
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
            font-size: 0.9rem;
        }

        .snippet-options {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .snippet-option {
            width: 180px;
            height: 100px;
            padding: 0.75rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            background: white;
            cursor: pointer;
            font-size: 0.82rem;
            transition: all 0.2s ease;
            font-family: var(--font-family);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            line-height: 1.4;
        }

        .snippet-option:hover {
            border-color: var(--primary);
        }

        .snippet-option.active {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--text-dark);
            font-weight: 500;
        }

        /* Instrução do Atalho */
        .shortcut-instruction {
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
        }

        .shortcut-instruction code {
            background: var(--primary-light);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
            color: var(--text-dark);
            font-family: 'Courier New', monospace;
            font-size: 0.85rem;
        }

        /* Campo de Input */
        .demo-input-container {
            border: 2px solid var(--primary);
            border-radius: 12px;
            overflow: hidden;
            background: white;
        }

        .demo-input {
            width: 100%;
            min-height: 320px;
            padding: 1.25rem;
            border: none;
            font-size: 0.9rem;
            font-family: var(--font-family);
            line-height: 1.6;
            resize: none;
            outline: none;
            background: transparent;
        }

        .demo-input:focus {
            background: #fafafa;
        }

        .demo-input::placeholder {
            color: #aaa;
            font-size: 0.9rem;
        }

        /* CTA Button */
        .try-demo-cta {
            text-align: center;
            margin-top: 1.5rem;
        }

        /* ====== Simulador MS-Word ====== */
        .word-simulator {
            border: 1px solid #888;
            border-radius: 6px;
            overflow: hidden;
            background: #f0f0f0;
            box-shadow: 0 4px 16px rgba(0,0,0,0.2);
        }

        .word-simulator.hidden {
            display: none;
        }

        .demo-input-container.hidden {
            display: none;
        }

        /* Barra de título do Word */
        .word-titlebar {
            background: linear-gradient(180deg, #185abd 0%, #103c7e 100%);
            color: white;
            padding: 6px 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
        }

        .word-titlebar-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .word-icon {
            background: #2b579a;
            padding: 2px 6px;
            border-radius: 2px;
            font-weight: bold;
            font-size: 11px;
        }

        .word-filename {
            font-size: 12px;
        }

        .word-buttons {
            display: flex;
            gap: 2px;
        }

        .word-btn {
            width: 30px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 2px;
            font-size: 14px;
            transition: background 0.15s;
        }

        .word-btn:hover {
            background: rgba(255,255,255,0.15);
        }

        .word-btn.close:hover {
            background: #e81123;
        }

        /* Ribbon do Word */
        .word-ribbon {
            background: #f3f3f3;
            border-bottom: 1px solid #d1d1d1;
            padding: 4px 8px 0;
        }

        .word-tabs {
            display: flex;
            gap: 0;
        }

        .word-tab {
            padding: 6px 14px;
            font-size: 12px;
            cursor: pointer;
            border-radius: 3px 3px 0 0;
            color: #444;
            transition: background 0.15s;
        }

        .word-tab:hover {
            background: rgba(0,0,0,0.05);
        }

        .word-tab.active {
            background: white;
            border: 1px solid #d1d1d1;
            border-bottom: 1px solid white;
            margin-bottom: -1px;
            font-weight: 500;
            color: #185abd;
        }

        /* Área do documento */
        .word-document-area {
            background: #e8e8e8;
            padding: 20px;
            min-height: 380px;
            display: flex;
            justify-content: center;
            overflow-y: auto;
        }

        .word-page {
            background: white;
            width: 100%;
            max-width: 650px;
            min-height: 340px;
            padding: 50px 60px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            font-family: 'Times New Roman', Times, serif;
            font-size: 12pt;
            line-height: 1.5;
            outline: none;
            color: #000;
        }

        .word-page:focus {
            box-shadow: 0 2px 8px rgba(0,0,0,0.15), 0 0 0 2px rgba(24, 90, 189, 0.3);
        }

        .word-placeholder {
            color: #999;
            font-style: italic;
            text-align: center;
            margin-top: 100px;
        }

        .word-placeholder strong {
            color: #666;
            font-style: normal;
        }

        /* Barra de status */
        .word-statusbar {
            background: #f3f3f3;
            padding: 4px 12px;
            font-size: 11px;
            color: #666;
            display: flex;
            gap: 24px;
            border-top: 1px solid #d1d1d1;
        }

        /* Estilos para conteúdo do documento */
        .word-page p {
            margin: 0 0 0.8em 0;
        }

        .word-page hr {
            margin: 1.5em 0 0.8em 0;
            border: none;
            border-top: 1px solid #000;
        }

        .word-page sup {
            font-size: 0.7em;
            color: #185abd;
        }

        /* Texto inicial do documento */
        .word-text-inicial {
            text-align: justify;
            text-indent: 1.25cm;
            margin-bottom: 1em !important;
            font-size: 12pt;
            line-height: 1.5;
        }

        /* Citação direta longa - ABNT (recuo 4cm, fonte 10pt, espaço simples) */
        .citacao-abnt {
            margin-left: 4cm;
            margin-right: 0;
            margin-top: 1em;
            margin-bottom: 1em;
            font-size: 10pt;
            line-height: 1.0;
            text-align: justify;
        }

        .citacao-abnt p {
            margin: 0 0 0.6em 0;
            text-indent: 0;
        }

        .citacao-abnt .ementa-titulo {
            font-weight: bold;
            margin-bottom: 0.4em;
        }

        .citacao-abnt .ementa-referencia {
            text-align: right;
            margin-top: 0.8em;
            font-size: 10pt;
        }

        /* Nota de rodapé - ABNT */
        .nota-rodape {
            margin-top: 3em;
            padding-top: 0.5em;
            position: relative;
        }

        .nota-rodape::before {
            content: '';
            display: block;
            width: 3cm;
            border-top: 1px solid #000;
            position: absolute;
            top: 0;
            left: 0;
        }

        .nota-rodape p {
            font-size: 10pt;
            line-height: 1.2;
            text-indent: 0;
            margin: 0;
            text-align: justify;
        }
    </style>
