
        body {
            font-family: Inter, sans-serif;
            margin: 0;
            background: radial-gradient(circle, #f0f7ff, #0776e4);
            padding: 20px;
        }

        .logo{
            display: block;
            margin-top: 2%;
            margin-left: 30%;
            margin-bottom: 4%;
            width: 40%;
        }

        .box {
            background: #fff;
            padding: 32px 28px 28px 28px; /* Mais espaçamento interno */
            border-radius: 10px;
            margin-bottom: 16px;
        }

        h3 {
            margin: 0 0 10px;
        }

        .options {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        button.option {
            padding: 10px 14px;
            border-radius: 8px;
            border: 1px solid #ccc;
            background: #fafafa;
            cursor: pointer;
            transition: .2s;
        }

        button.option.active {
            background: #111;
            color: #fff;
            border-color: #111;
        }

        button[type="submit"] {
            padding: 12px 18px;
            border-radius: 10px;
            border: none;
            background: #111;
            color: #fff;
            cursor: pointer;
        }

        input,
        textarea {
            width: 100%;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid #ddd;
            margin-top: 10px;
        }

        .modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .6);
            justify-content: center;
            align-items: center;
            z-index: 999;
        }

        .modal-content {
            background: #fff;
            width: 92%;
            max-width: 520px;
            padding: 18px;
            border-radius: 12px;
        }

        .modal-actions {
            display: flex;
            gap: 10px;
            justify-content: flex-end;
            margin-top: 12px;
        }

        .btn-secondary {
            background: #eee;
            color: #111;
            border: none;
            padding: 10px 14px;
            border-radius: 10px;
            cursor: pointer;
        }

        .btn-primary {
            background: #111;
            color: #fff;
            border: none;
            padding: 10px 14px;
            border-radius: 10px;
            cursor: pointer;
        }
