/* Extraído de views/pages/contrato.php
   Script: scripts/extract-inline-css.py — 2026-04-08
*/

        body {
            font-family: 'Inter', sans-serif;
            background: #f8f9fa;
        }

        .contrato-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 0 40px;
        }

        .contrato-hero h1 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: .5rem;
        }

        .contrato-hero p {
            font-size: 1.05rem;
            opacity: .9;
        }

        .contrato-wrapper {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
            overflow: hidden;
            margin: 32px 0 48px;
        }

        .contrato-toolbar {
            background: #f1f3f5;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #dee2e6;
        }

        .contrato-iframe {
            width: 100%;
            height: 900px;
            border: none;
            display: block;
        }

        @media (max-width: 768px) {
            .contrato-iframe {
                height: 70vh;
            }
        }
    